/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --creme:        #F5EFE6;
  --creme-licht:  #FBF7F2;
  --creme-donker: #EDE3D5;
  --zand:         #C8A882;
  --zand-licht:   #E8D5B7;
  --zand-donker:  #A8895E;
  --bruin:        #8B6F47;
  --bruin-donker: #5C3D1E;
  --tekst:        #3D2B1F;
  --tekst-licht:  #7A5C42;
  --groen:        #6B8C6E;
  --groen-licht:  #C8DBC9;
  --goud:         #C89A0A;
  --goud-hover:   #A87D08;
  --sur-rood:     #B5262B;
  --sur-groen:    #377A3E;
  --wit:          #FFFDF9;
  --border:       #DDD0BC;
  --shadow:       0 4px 24px rgba(90, 60, 20, 0.09);
  --shadow-lg:    0 12px 40px rgba(90, 60, 20, 0.13);
  --radius-sm:    12px;
  --radius:       20px;
  --radius-lg:    32px;
  --font-heading: 'DM Sans', 'Lato', sans-serif;
  --font-body:    'DM Sans', 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--creme);
  color: var(--tekst);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === ANNOUNCEMENT BAR === */
@keyframes ann-flicker {
  0%,  100% { opacity: 1; }
  8%         { opacity: 0.55; }
  10%        { opacity: 1; }
  13%        { opacity: 0.7; }
  15%        { opacity: 1; }
}

.announcement-bar {
  background: var(--bruin-donker);
  color: #fff;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
  animation: ann-flicker 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.ann-btn {
  display: inline-block;
  background: #fff;
  color: #15803d;
  padding: 0.45rem 1.4rem;
  border-radius: 100px;
  font-weight: 800;
  font-family: var(--font-body);
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.ann-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: #14532d;
}

/* === HEADER === */
header {
  background: var(--wit);
  padding: 0 2.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
}

.logo-link { flex-shrink: 0; }
.logo-link img { height: 120px; width: auto; max-width: 200px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--tekst-licht);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--zand);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--bruin); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--bruin); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-bestel {
  background: #F97316;
  color: #fff;
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 0 14px 4px rgba(249,115,22,0.5);
}
.nav-bestel:hover {
  background: #EA6A0A;
  transform: scale(1.05);
  box-shadow: 0 0 24px 8px rgba(249,115,22,0.65);
}

.lang-toggle {
  background: transparent;
  color: var(--tekst-licht);
  border: 1.5px solid var(--border);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

.lang-toggle:hover {
  border-color: var(--zand);
  color: var(--bruin);
  background: var(--creme-licht);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--tekst);
  transition: transform 0.2s;
}

/* === HERO === */
.hero {
  background: var(--creme-donker);
  position: relative;
  overflow: hidden;
  padding: 3rem 2.5rem;
  min-height: 320px;
  display: flex;
  align-items: center;
}

/* Organic blob decorations */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--zand-licht);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  top: -150px;
  right: -150px;
  opacity: 0.45;
}

.hero::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: var(--creme);
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  bottom: -100px;
  left: -80px;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--zand-donker);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--bruin-donker);
  margin-bottom: 1.3rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--zand-donker);
}

.hero p {
  font-size: 1.05rem;
  color: var(--tekst-licht);
  margin-bottom: 1.2rem;
  max-width: 440px;
  line-height: 1.8;
}

.hero .hero-sub-bold {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--zand-donker);
  margin-bottom: 0.8rem;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: #F97316;
  color: #fff;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-block;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 24px rgba(249,115,22,0.5), 0 2px 8px rgba(0,0,0,0.15);
  animation: pulse-oranje 2s ease-in-out infinite;
}

.btn-primary:hover {
  background: #EA6A0A;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(249,115,22,0.65), 0 4px 12px rgba(0,0,0,0.2);
  animation: none;
}

@keyframes pulse-oranje {
  0%, 100% { box-shadow: 0 6px 24px rgba(249,115,22,0.5), 0 2px 8px rgba(0,0,0,0.15); transform: scale(1); }
  50%       { box-shadow: 0 8px 36px rgba(249,115,22,0.75), 0 4px 12px rgba(0,0,0,0.2); transform: scale(1.03); }
}

.btn-secondary {
  background: transparent;
  color: var(--bruin-donker);
  border: 1.5px solid var(--bruin-donker);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--creme-donker);
  transform: translateY(-2px);
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero-img {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  max-width: 340px;
  border-radius: 40% 60% 55% 45% / 45% 50% 55% 50%;
  object-fit: cover;
  aspect-ratio: 1;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(92, 61, 30, 0.35);
  filter: brightness(1.06) contrast(1.08) saturate(1.15) sepia(0.08);
}

/* === WAVE DIVIDER === */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* === ORGANIC SECTION DIVIDER === */
.section-wave {
  background: var(--creme-licht);
  position: relative;
  padding-top: 3rem;
}

.section-wave::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--creme-licht);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* === SECTIONS === */
.section {
  padding: 5.5rem 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--zand-donker);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--bruin-donker);
  line-height: 1.2;
}

.section-title em { font-style: italic; color: var(--zand-donker); }

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--sur-groen), #fff 30%, var(--sur-rood) 50%, #FFD700 70%, var(--sur-groen));
  margin: 1rem auto 1.2rem;
  border-radius: 2px;
  opacity: 0.85;
}

.section-subtitle {
  color: var(--tekst-licht);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* === PRODUCT CARDS === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--wit);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(200,168,130,0.2);
}

.product-card--featured {
  border: 7px solid var(--goud);
  box-shadow: 0 16px 60px rgba(200,154,10,0.8), 0 0 30px rgba(200,154,10,0.4), 0 4px 16px rgba(0,0,0,0.2);
  position: relative;
}

.product-featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--goud);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.45rem 1.5rem;
  border-radius: 0 0 14px 14px;
  letter-spacing: 0.5px;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(200,154,10,0.45), 0 2px 8px rgba(0,0,0,0.15);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img { transform: scale(1.04); }

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}

.product-img-placeholder.naturel {
  background: linear-gradient(135deg, #F5EAD0, #E8C87A);
}

.product-img-placeholder.kaneel {
  background: linear-gradient(135deg, #E8D0A8, #C49060);
}

.product-body { padding: 1.8rem; }

.product-badge {
  display: inline-block;
  background: var(--creme-donker);
  color: var(--zand-donker);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--bruin-donker);
  margin-bottom: 0.6rem;
}

.product-desc {
  color: var(--tekst-licht);
  font-size: 0.93rem;
  margin-bottom: 1.4rem;
  line-height: 1.7;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--bruin);
}

.btn-product {
  display: block;
  text-align: center;
  margin-top: 1.2rem;
  width: 100%;
}

/* === USP STRIP === */
.usp-section {
  background: var(--bruin-donker);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.usp-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(200,168,130,0.08);
  border-radius: 50% 50% 40% 60% / 50%;
  top: -150px;
  left: -100px;
}

.usp-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.usp-item { text-align: center; }
.usp-icon { margin-bottom: 0.9rem; display: flex; justify-content: center; color: var(--zand-licht); }
.usp-icon svg { width: 36px; height: 36px; }
.usp-title { font-weight: 700; color: var(--zand-licht); font-size: 0.95rem; margin-bottom: 0.3rem; }
.usp-desc { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* === ORDER FORM === */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.order-form-box {
  background: var(--wit);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,168,130,0.2);
}

.order-form-box h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--bruin-donker);
  margin-bottom: 0.5rem;
}

.order-form-box .form-subtitle {
  color: var(--tekst-licht);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group.full-width { grid-column: 1 / -1; }

label {
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--bruin);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

input, select, textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--tekst);
  background: var(--creme-licht);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--zand);
  background: var(--wit);
}

textarea { resize: vertical; min-height: 90px; }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: #4CAF50;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 1.2rem;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 28px rgba(76,175,80,0.5), 0 0 0 0 rgba(76,175,80,0.4);
  animation: pulse-green 2.2s infinite;
}

.btn-submit:hover {
  background: #43A047;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 36px rgba(76,175,80,0.65);
  animation: none;
}

@keyframes pulse-green {
  0%   { box-shadow: 0 6px 28px rgba(76,175,80,0.5), 0 0 0 0 rgba(76,175,80,0.4); }
  60%  { box-shadow: 0 6px 28px rgba(76,175,80,0.5), 0 0 0 10px rgba(76,175,80,0); }
  100% { box-shadow: 0 6px 28px rgba(76,175,80,0.5), 0 0 0 0 rgba(76,175,80,0); }
}

/* Order sidebar */
.order-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-card {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,168,130,0.2);
  position: relative;
  overflow: hidden;
}

.sidebar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--zand);
  border-radius: 4px 0 0 4px;
}

.sidebar-card h3 {
  font-family: var(--font-heading);
  color: var(--bruin-donker);
  margin-bottom: 0.9rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.sidebar-card p, .sidebar-card li {
  color: var(--tekst-licht);
  font-size: 0.91rem;
  line-height: 1.8;
}

.sidebar-card ul { list-style: none; padding: 0; }

.sidebar-card ul li {
  padding-left: 1.4rem;
  position: relative;
}

.sidebar-card ul li::before {
  content: '○';
  position: absolute;
  left: 0;
  color: var(--zand);
  font-size: 0.7rem;
  top: 0.35rem;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--creme-donker);
  color: var(--zand-donker);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  margin-left: 0.5rem;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Alert */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: none;
  font-size: 0.95rem;
}

.alert-success { background: #E8F4EC; color: #2D6A3F; border: 1px solid #C3E0CC; }
.alert-error { background: #F9ECEA; color: #8B2E2E; border: 1px solid #EEC9C5; }

/* === ABOUT PAGE === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: var(--zand-licht);
  border-radius: 50% 40% 60% 45% / 45% 55% 40% 60%;
  z-index: 0;
  opacity: 0.5;
}

.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 40% 55% 45% 60% / 50% 40% 60% 45%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--creme-donker);
  border-radius: 40% 55% 45% 60% / 50% 40% 60% 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--tekst-licht);
  font-size: 0.85rem;
}

.about-img-placeholder span:first-child { font-size: 4rem; }

.about-text { padding-left: 1rem; }

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--bruin-donker);
  margin-bottom: 1.4rem;
  line-height: 1.25;
}

.about-text p {
  color: var(--tekst-licht);
  margin-bottom: 1.1rem;
  line-height: 1.9;
  font-size: 1rem;
}

.about-highlight {
  background: var(--creme-donker);
  border-radius: var(--radius);
  padding: 1.3rem 1.6rem;
  margin: 1.8rem 0;
  font-style: italic;
  color: var(--bruin);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.6;
  position: relative;
}

.about-highlight::before {
  content: '"';
  font-size: 4rem;
  color: var(--zand);
  position: absolute;
  top: -10px;
  left: 12px;
  font-family: var(--font-heading);
  line-height: 1;
  opacity: 0.5;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--wit);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,168,130,0.2);
  transition: transform 0.25s;
}

.contact-card:hover { transform: translateY(-3px); }

.contact-card h3 {
  font-family: var(--font-heading);
  color: var(--bruin-donker);
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.contact-card p { color: var(--tekst-licht); line-height: 1.9; font-size: 0.96rem; }
.contact-icon { width: 40px; height: 40px; margin-bottom: 0.9rem; display: flex; color: var(--zand-donker); }
.contact-icon svg { width: 40px; height: 40px; }

.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--creme-donker);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--tekst-licht);
  font-size: 0.95rem;
  border: 1px solid var(--border);
}

.map-pin { font-size: 2.5rem; }

.map-link {
  background: var(--bruin-donker);
  color: var(--creme-licht);
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.87rem;
  transition: background 0.2s;
}

.map-link:hover { background: var(--bruin); }

/* === FOOTER === */
footer {
  background: var(--bruin-donker);
  color: rgba(255,255,255,0.75);
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(200,168,130,0.06);
  border-radius: 50% 40% 60% 40% / 50%;
  top: -200px;
  right: -100px;
}

.footer-wave {
  background: var(--creme);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand img { height: 60px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

.footer-nav h4, .footer-contact h4 {
  color: var(--zand-licht);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.5rem; }
.footer-nav a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--zand-licht); }

.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 2; }

.footer-bottom {
  background: var(--creme-licht);
  border-top: none;
  text-align: center;
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 1;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 0.2rem;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
}
.footer-legal-links a {
  color: var(--bruin);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--bruin-donker); }
.footer-sep { color: var(--zand-donker); font-size: 0.82rem; }
.footer-company-info {
  font-size: 0.75rem;
  color: var(--tekst-licht);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.footer-company-info em { font-style: italic; }
.footer-copyright {
  font-size: 0.75rem;
  color: var(--tekst-licht);
}

/* === STICKY BESTEL BALK === */
.sticky-bestel-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bruin-donker);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.sticky-bestel-bar .sticky-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.sticky-bestel-bar .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  animation: pulse-oranje 2s ease-in-out infinite;
}

body {
  padding-bottom: 70px;
}

/* === STEPS / HOE WERKT HET === */
.steps-section {
  background: var(--creme-licht);
  padding: 5rem 2.5rem;
}

.steps-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--zand-licht), var(--goud), var(--zand-licht));
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--goud);
  color: var(--bruin-donker);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1.3rem;
  box-shadow: 0 4px 14px rgba(200,154,10,0.3);
}

.step-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bruin-donker);
  margin-bottom: 0.6rem;
}

.step-item p {
  color: var(--tekst-licht);
  font-size: 0.91rem;
  line-height: 1.75;
}

.steps-cta {
  text-align: center;
  margin-top: 3rem;
}

/* === RESPONSIVE === */
@media (max-width: 1000px) {
  .hero-img { display: none; }
  .hero-content { max-width: 100%; }
  .order-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  header { padding: 0 1.5rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 140px;
    left: 0;
    right: 0;
    background: var(--wit);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(90,60,20,0.08);
  }

  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
  header { position: relative; }

  .hero { padding: 4rem 1.5rem; }
  .section { padding: 3.5rem 1.5rem; }
  .steps-section { padding: 3.5rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .about-text { padding-left: 0; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-secondary { text-align: center; }
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: var(--creme-licht);
  padding: 5rem 2.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  max-width: 1140px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--wit);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,168,130,0.2);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--zand-licht);
  position: absolute;
  top: -8px;
  left: 16px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: var(--goud);
  font-size: 1rem;
  margin-bottom: 0.9rem;
  letter-spacing: 3px;
}

.testimonial-card p {
  color: var(--tekst-licht);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 1.3rem;
  padding-top: 0.5rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--bruin);
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  letter-spacing: 0.2px;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
  color: #fff;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* === PRODUCT PRICE CONTEXT === */
.product-price-wrap { display: flex; flex-direction: column; }

.product-price-context {
  font-size: 0.78rem;
  color: var(--tekst-licht);
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 0.15rem;
}

/* === ORDER TOTAL === */
.order-total {
  background: var(--creme-donker);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bruin-donker);
}

.order-total-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--bruin);
}

/* === SCARCITY NOTE === */
.scarcity-note {
  background: #FFF8E1;
  border: 1px solid #FFE082;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.80rem;
  color: #7B5800;
  font-weight: 500;
  margin-top: 1.2rem;
  line-height: 1.5;
}

/* === HERO SOCIAL PROOF === */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.1rem;
  font-size: 0.83rem;
  color: var(--tekst-licht);
  font-weight: 500;
}

.hero-live-dot {
  width: 8px;
  height: 8px;
  background: #DC2626;
  border-radius: 50%;
  flex-shrink: 0;
  animation: livepulse 2s ease-in-out infinite;
}

@keyframes livepulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(107,140,110,0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 5px rgba(107,140,110,0); }
}

/* === CONVERSION BAND === */
.conversion-band {
  background: var(--creme-donker);
  padding: 4.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.conversion-band::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(139,111,71,0.06);
  border-radius: 50%;
  top: -200px;
  left: -100px;
}

.conversion-band::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(139,111,71,0.04);
  border-radius: 50%;
  bottom: -150px;
  right: -80px;
}

.conversion-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.conversion-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--bruin-donker);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.conversion-band h2 em {
  font-style: italic;
  color: var(--zand-donker);
}

.conversion-band p {
  color: var(--tekst-licht);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-large {
  padding: 1.15rem 3rem;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.conversion-guarantee {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--tekst-licht);
}

/* === STICKY MOBILE ORDER BAR === */
.sticky-order-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: var(--bruin-donker);
  padding: 0.9rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.sticky-order-bar a {
  display: block;
  text-align: center;
  background: var(--goud);
  color: var(--bruin-donker);
  padding: 0.9rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.2px;
  transition: background 0.2s;
}

.sticky-order-bar a:hover { background: var(--goud-hover); }

/* === PRODUCT INFO LIST === */
.product-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.9rem 0 0.5rem;
  font-size: 0.82rem;
  color: var(--tekst);
}
.product-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-info-item span {
  font-weight: 500;
}

/* === PRODUCT MORE INFO === */
.product-more-info {
  margin: 0.7rem 0 0.2rem;
  border-top: 1px solid rgba(139,111,71,0.15);
  padding-top: 0.6rem;
}
.product-more-info summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bruin);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  user-select: none;
}
.product-more-info summary::-webkit-details-marker { display: none; }
.product-more-info summary::after {
  content: '▾';
  font-size: 0.7rem;
  transition: transform 0.2s;
  display: inline-block;
  margin-left: auto;
}
.product-more-info[open] summary::after {
  transform: rotate(-180deg);
}
.product-more-info-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--tekst);
}

/* === OCCASIONS TAGS === */
.occasions-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.occasion-tag {
  background: var(--creme-donker);
  color: var(--tekst-licht);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 1rem; border-radius: 50%; bottom: 5.5rem; right: 1.5rem; }
  .testimonials-section { padding: 3.5rem 1.5rem; }
  .sticky-order-bar { display: block; }
  .conversion-band { padding: 3.5rem 1.5rem; }
}
