:root{
  /* ELYH (Elevate Your Health) - Zwart + Aqua/Turquoise */
  --gc-green:#28d7cf;        /* primary accent */
  --gc-green-2:#12bdb6;      /* deeper accent */
  --gc-gold:#0b0f10;         /* dark surface (was gold) */
  --gc-cream:#eaf7f7;        /* light text */
  --gc-ink:#eaf7f7;          /* main text */
  --gc-bg:#060708;           /* page background */
  --radius:18px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--gc-ink);
  background:
    radial-gradient(800px 500px at 20% 10%, rgba(40,215,207,.18), transparent 60%),
    radial-gradient(700px 500px at 85% 25%, rgba(18,189,182,.14), transparent 62%),
    linear-gradient(180deg, var(--gc-bg), #050607);
}
a{color:inherit;text-decoration:none}
.container{width:min(1100px, calc(100% - 32px)); margin:0 auto}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(6,7,8,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(40,215,207,.16);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px}
.brand{display:flex; align-items:center; gap:12px}
.brand img{height:44px; width:auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,.6));}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  background:rgba(40,215,207,.10);
  border:1px solid rgba(40,215,207,.22);
  font-weight:700; font-size:14px;
  color:rgba(234,247,247,.92);
}

/* HERO */
.hero{padding:46px 0 22px}
.hero-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:22px; align-items:stretch}

.card{
  background:linear-gradient(180deg, rgba(15,20,22,.92), rgba(11,15,16,.92));
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.hero-card{padding:26px}
.h1{font-size:44px; line-height:1.05; margin:0 0 10px; letter-spacing:-.02em;}
.lead{font-size:16px; line-height:1.6; margin:0 0 18px; color:rgba(234,247,247,.78);}

.pills{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  padding:10px 12px; border-radius:999px;
  background:rgba(40,215,207,.10);
  border:1px solid rgba(40,215,207,.22);
  font-weight:700; font-size:14px;
  color:rgba(234,247,247,.92);
}

.hero-title {
  /* color: #0FA9A1; */ /* diepe turquoise */
  color: #28d7cf;
}

.section-title {
  color: #0FA9A1;
}


.hero-side{padding:18px; display:flex; flex-direction:column; gap:12px}
.kpi{
  padding:16px; border-radius:16px;
  background:
    linear-gradient(180deg, rgba(40,215,207,.12), rgba(0,0,0,0)),
    rgba(15,20,22,.85);
  border:1px solid rgba(40,215,207,.18);
}
.kpi strong{display:block; font-size:18px}

/* SECTION */
.section{padding:22px 0 56px}
.section h2{margin:0 0 12px; font-size:24px}

/* GRID */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.group{
  overflow:hidden;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  border:1px solid rgba(255,255,255,.08);
}
.group:hover{transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.55); border-color: rgba(40,215,207,.22);}

.group img{width:100%; height:180px; object-fit:cover; display:block; filter:saturate(1.05) contrast(1.05);}
.group .body{padding:16px}
.group .name{font-weight:900; font-size:18px; margin:0 0 6px}
.group .desc{margin:0; color:rgba(234,247,247,.62); line-height:1.5}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(15,20,22,.85);
  font-weight:900;
  cursor:pointer;
  color:rgba(234,247,247,.92);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 12px 26px rgba(0,0,0,.45); border-color: rgba(40,215,207,.22);}

.btn-primary{
  background:linear-gradient(135deg, var(--gc-green), var(--gc-green-2));
  color:#041012;
  border:0;
  box-shadow: 0 16px 34px rgba(40,215,207,.18);
}

/* FORMS */
.form{padding:18px}
.field{display:flex; flex-direction:column; gap:6px; margin-bottom:12px}
.field label{font-weight:800; font-size:13px; color:rgba(234,247,247,.75)}
.field input,.field textarea, .field select{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  outline:none;
  background:rgba(6,7,8,.55);
  color:rgba(234,247,247,.92);
}
.field input:focus,.field textarea:focus, .field select:focus{
  border-color: rgba(40,215,207,.38);
  box-shadow: 0 0 0 4px rgba(40,215,207,.12);
}

.row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.price{font-weight:900}
.small{font-size:13px; color:rgba(234,247,247,.62)}
.footer{padding:26px 0; border-top:1px solid rgba(255,255,255,.08); color:rgba(234,247,247,.70)}

@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .h1{font-size:36px}
  .row{grid-template-columns:1fr}
}

/* Quantity input */
.gcQty{
  width:110px;min-width:90px;padding:10px 12px;font-size:16px;border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(6,7,8,.55);
  color:rgba(234,247,247,.92);
}
.gcQty:focus{
  border-color: rgba(40,215,207,.38);
  box-shadow: 0 0 0 4px rgba(40,215,207,.12);
}

@media (max-width: 520px){
	.gcQty{width:140px;min-width:120px;padding:12px 14px;font-size:18px;}
}

/* Index productgroep kaart: cover-link */
.card.group .cover{display:block;}
.card.group .cover img{display:block;width:100%;height:auto;}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* FORCE mobiel onder elkaar */
@media (max-width: 768px) {
  .auth-grid {
    grid-template-columns: 1fr !important;
  }
}

.discount-action-card{
  margin-top:20px;
  padding:25px;
  background:#ffffff;
  border-radius:18px;
  border:1px solid #e5e5e5;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
}

.discount-action-card h4{
  margin-bottom:18px;
  font-weight:900;
}

.action-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:15px;
  align-items:flex-end;
}

.action-row input,
.action-row select{
  padding:10px 12px;
  border-radius:10px;
  border:1px solid #ccc;
  min-width:180px;
}

.date-row input{
  min-width:220px;
}

.checkbox-inline{
  display:flex;
  align-items:center;
  gap:6px;
}


