
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; background: #fff; font-family: 'Barlow Condensed', sans-serif; }
body.es-checkout-page { background: #f7f7f5; }
body.es-tracking-page { background: #f7f7f5; }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 260;
  height: 36px;
  overflow: hidden;
  background: #111111;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
}
.announce-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.announce-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.announce-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.6s ease;
}
.announce-item.active {
  transform: translateX(0);
  opacity: 1;
}
.announce-item.exit {
  transform: translateX(-100%);
  opacity: 0;
}
.announce-item.enter {
  transform: translateX(100%);
  opacity: 0;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  left: 0; right: 0;
  z-index: 255;
  top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 58px;
  transition: background 0.4s ease, border-color 0.4s ease, top 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.navbar.transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}
.navbar.solid {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  top: 0;
}
.navbar.hidden {
  transform: translateY(-100%);
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 12px; }
svg {
  width: 20px; height: 20px;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  cursor: pointer;
  transition: stroke 0.4s ease;
}
.navbar.transparent svg { stroke: #ffffff; }
.navbar.solid svg { stroke: #0a0a0a; }
/* Winkelwagen icoon iets kleiner zodat badge beter opvalt */
/* Individuele icoon groottes — pas per icoon aan naar wens */
.icon-menu   { width: 28px; height: 28px; }
.icon-heart  { width: 19px; height: 19px; }
.icon-search { width: 19px; height: 19px; }
.icon-cart   { width: 19px; height: 19px; }
.logo-name {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.4s ease;
  text-decoration: none;
  position: relative;
  top: 2px;
}
.navbar.transparent .logo-name { color: #ffffff; }
.navbar.solid .logo-name { color: #0a0a0a; }
.cart-wrap { position: relative; }
.badge {
  position: absolute;
  top: -6px; right: -8px;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  transition: background 0.4s, color 0.4s;
  z-index: 1;
}
.navbar.transparent .badge { background: #fff; color: #0a0a0a; }
.navbar.solid .badge { background: #0a0a0a; color: #fff; }

/* ── DRAWER ── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.overlay.open { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 80vw;
  max-width: 320px;
  background: #ffffff;
  z-index: 400;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; overflow: hidden;
}
.drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}
.close-btn {
  cursor: pointer; display: flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #aaa;
  transition: color 0.2s;
}
.close-btn:hover { color: #0a0a0a; }
.close-btn svg { width: 14px; height: 14px; stroke: #aaa; transition: stroke 0.2s; }
.close-btn:hover svg { stroke: #0a0a0a; }
.nav-primary { flex: 1; overflow-y: auto; padding-top: 0px; }
.nav-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 20px; cursor: pointer; transition: background 0.15s;
}
.nav-item:hover { background: #fafafa; }
.nav-item-label {
  font-weight: 400; font-size: 16px; letter-spacing: 4px;
  text-transform: uppercase; color: #0a0a0a;
}
.nav-item-label.sale { color: #8B2635; }
.nav-item svg { width: 13px; height: 13px; stroke: #888; }
.nav-divider { height: 1px; background: #f0f0f0; margin: 8px 0; }
.nav-item-secondary { display: flex; flex-direction: column; padding: 8px 20px; cursor: pointer; }
.nav-item-secondary:hover { background: #fafafa; }
.nav-item-secondary-label { font-weight: 400; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: #777; }
.nav-item-secondary-sub { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #bbb; margin-top: 2px; }
.submenu {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 80vw; max-width: 320px;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; z-index: 401;
  pointer-events: none;
}
.submenu.open { transform: translateX(0); pointer-events: auto; }
.submenu-header {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 24px; border-bottom: 1px solid #f0f0f0; cursor: pointer;
}
.submenu-header svg { width: 13px; height: 13px; stroke: #aaa; }
.submenu-back { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #aaa; }
.submenu-title { font-weight: 400; font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: #0a0a0a; margin-left: auto; }
.submenu-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 20px; cursor: pointer; transition: background 0.15s;
}
.submenu-item:hover { background: #fafafa; }
.submenu-item-label { font-weight: 400; font-size: 16px; letter-spacing: 3px; text-transform: uppercase; color: #0a0a0a; }
.submenu-item svg { width: 12px; height: 12px; stroke: #888; }

/* Submenu foto sectie */
.submenu-photo {
  margin: auto 20px 120px;
  position: relative;
  height: 180px;
  background: url('SANTO_LIDO_STORE_WEB_2.webp') center/cover no-repeat;
  overflow: hidden;
  flex-shrink: 0;
}
.submenu-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 16px 24px;
  gap: 10px;
}
.submenu-photo-title {
  font-family: 'Cinzel', serif;
  font-size: 13px; letter-spacing: 5px;
  text-transform: uppercase; color: #fff;
}
.submenu-photo-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 8px 20px; background: transparent;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.submenu-photo-btn:hover { background: #fff; color: #0a0a0a; }

.drawer-footer {
  padding: 12px 20px 18px; border-top: 1px solid #f0f0f0;
  display: flex; flex-direction: column; gap: 11px;
  position: relative; z-index: 20;
  background: #fff;
}
.footer-item { display: flex; align-items: center; gap: 11px; cursor: pointer; }
.footer-item svg { width: 14px; height: 14px; stroke: #999; }
.footer-item-label { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: #555; }
.lang-badge { margin-left: auto; font-size: 11px; letter-spacing: 2px; color: #aaa; }

/* Drawer taal dropdown */
.drawer-lang {
  display: flex; align-items: center; gap: 11px;
  cursor: pointer; position: relative;
}
.drawer-lang-text {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #555;
}
.drawer-lang svg.globe { width: 14px; height: 14px; stroke: #999; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.drawer-lang svg.arrow { width: 10px; height: 10px; stroke: #aaa; fill: none; stroke-width: 2; stroke-linecap: round; }
.drawer-lang-dropdown {
  display: none;
  position: absolute;
  bottom: 28px; left: 0;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
  min-width: 150px;
  z-index: 10;
}
.drawer-lang-dropdown.open { display: block; }
.drawer-lang-option {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; cursor: pointer;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: #777; transition: color 0.2s, background 0.2s;
}
.drawer-lang-option:hover { color: #0a0a0a; background: #fafafa; }
.drawer-lang-option.active { color: #0a0a0a; }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.52);
}
.hero-gradient-top {
  position: absolute; top: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
  z-index: 1;
}
.hero-gradient-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: absolute; bottom: 120px; left: 0; right: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 0 20px;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-weight: 400; font-size: 24px; letter-spacing: 10px;
  text-transform: uppercase; color: #fff; text-align: center; line-height: 1.3;
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; }
.hero-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500; font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
  padding: 13px 30px; cursor: pointer; background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.hero-btn:hover { background: #ffffff; color: #0a0a0a; }

/* ── NEW ARRIVALS ── */
.section-arrivals {
  background: #fff;
  padding: 56px 0 0;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.section-header { text-align: center; display: flex; flex-direction: column; gap: 8px; padding: 0 24px; }
.section-label {
  font-size: 10px; letter-spacing: 6px; text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500; font-size: 18px; letter-spacing: 5px;
  text-transform: uppercase; color: #0a0a0a;
}

/* Peek slider */
.arrivals-track-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 10%;
}
.arrivals-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  flex-wrap: nowrap;
}
.arrival-card {
  flex: 0 0 80%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #f0ede8;
}
.arrival-card-inner {
  aspect-ratio: 8/9;
  position: relative;
  overflow: hidden;
}
.arrival-card-img {
  width: 100%; height: 100%;
  background: #e8e5e0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.arrival-card:hover .arrival-card-img { transform: scale(1.04); }
.arrival-card-img-placeholder {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(0,0,0,0.2);
}
.arrival-card-info {
  padding: 12px 14px 16px;
  background: #fff;
}
.arrival-card-brand {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: #aaa; margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.arrival-card-name {
  font-size: 13px; letter-spacing: 0.5px; color: #0a0a0a; margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.arrival-card-price {
  font-size: 13px; letter-spacing: 1px; color: #0a0a0a;
}

/* Arrivals nav — dots only */
.arrivals-nav {
  display: flex; align-items: center; justify-content: center;
  padding-bottom: 0px;
}
.arrivals-track-nav {
  position: relative;
  width: 80px;
  height: 1px;
  background: #e0e0e0;
  border-radius: 2px;
}
.arrivals-indicator {
  position: absolute;
  top: 0; bottom: 0;
  background: #0a0a0a;
  border-radius: 2px;
  transition: left 0.38s cubic-bezier(0.4,0,0.2,1);
}

/* ── BESTSELLERS ── */
.section-bestsellers {
  background: #fff;
  padding: 0 0 56px;
}
.bestsellers-header {
  padding: 80px 24px 48px;
  display: flex; align-items: flex-end; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
}
.bestsellers-header-left { display: flex; flex-direction: column; gap: 8px; }
.bestsellers-view-all {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: #0a0a0a; text-decoration: none; border-bottom: 1px solid #0a0a0a;
  padding-bottom: 2px; cursor: pointer;
  transition: opacity 0.2s;
}
.bestsellers-view-all:hover { opacity: 0.5; }

/* Numbered list style */
.bestsellers-list {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: #f0f0f0;
}
.bestseller-item {
  background: #fff;
  display: flex; align-items: center; gap: 24px;
  padding: 24px 28px; cursor: pointer;
  transition: background 0.2s;
}
.bestseller-item:hover { background: #fafafa; }
.bestseller-num {
  font-family: 'Cinzel', serif;
  font-size: 28px; font-weight: 400; color: #f0ede8;
  min-width: 40px; line-height: 1;
  user-select: none;
}
.bestseller-img {
  width: 64px; height: 64px;
  background: #f0ede8; border-radius: 2px;
  flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.bestseller-info { flex: 1; }
.bestseller-brand { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #bbb; margin-bottom: 4px; }
.bestseller-name { font-size: 14px; letter-spacing: 0.5px; color: #0a0a0a; margin-bottom: 4px; }
.bestseller-price { font-size: 13px; letter-spacing: 1px; color: #555; }
.bestseller-arrow { font-size: 16px; color: #e0e0e0; transition: color 0.2s, transform 0.2s; }
.bestseller-item:hover .bestseller-arrow { color: #0a0a0a; transform: translateX(3px); }


/* ── FOOTER ── */
.footer {
  background: #0a0a0a;
  padding: 72px 24px 0;
}

/* Subscribe */
.footer-subscribe {
  max-width: 480px; margin: 0 auto 24px;
  text-align: left;
}
.footer-subscribe-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; letter-spacing: 4px; font-weight: 500;
  text-transform: uppercase; color: #fff; margin-bottom: 10px;
}
.footer-subscribe-sub {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.footer-form {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
}
.footer-input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 13px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px;
  color: #fff;
}
.footer-input::placeholder {
  color: rgba(255,255,255,0.25);
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 500;
}
.footer-submit {
  background: #fff; border: none; outline: none;
  padding: 13px 20px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: #0a0a0a; transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.footer-submit:hover { background: #f0f0f0; }

/* Footer divider */
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 32px; }

/* Footer grid */
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; max-width: 900px; margin: 0 auto 24px;
}
.footer-col-title {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 20px;
}
.footer-link {
  display: block; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 12px; cursor: pointer;
  transition: color 0.2s; text-decoration: none;
}
.footer-link:hover { color: #fff; }

/* Social icons */
.footer-social { display: flex; gap: 16px; }
.social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.social-icon:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.social-icon svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.5); fill: none; transition: stroke 0.2s; }
.social-icon:hover svg { stroke: #fff; }
.social-icon-img { width: 14px; height: 14px; object-fit: contain; opacity: 0.5; transition: opacity 0.2s; filter: brightness(0) invert(1); }
.social-icon:hover .social-icon-img { opacity: 1; }

/* Footer bottom */
.footer-payment-wrap {
  display: flex; align-items: center; gap: 10px;
  padding: 24px 0;
  max-width: 900px; margin: 0 auto;
}
.payment-icon {
  height: 24px; width: auto;
  border-radius: 3px;
  opacity: 1;
}
.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  max-width: 900px; margin: 0 auto;
}
.footer-copy {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.footer-lang {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  position: relative;
}
.footer-lang-text {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.25); transition: color 0.2s;
}
.footer-lang:hover .footer-lang-text { color: rgba(255,255,255,0.55); }
.footer-lang svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.25); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.lang-dropdown {
  display: none;
  position: absolute;
  bottom: 28px; right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 160px;
  z-index: 10;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; cursor: pointer;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); transition: color 0.2s, background 0.2s;
}
.lang-option:hover { color: #fff; background: rgba(255,255,255,0.05); }
.lang-option.active { color: #fff; }

/* ── MOBILE ── */
@media (max-width: 600px) {

  /* Hero */
  .hero-title {
    font-size: 28px;
    letter-spacing: 5px;
  }
  .hero-buttons {
    align-items: center;
    gap: 10px;
  }
  .hero-btn {
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 3px;
    white-space: nowrap;
  }

  /* New Arrivals — peek slider */
  .arrival-card {
    flex: 0 0 65%;
  }
  .arrivals-track-wrap {
    padding: 0 11%;
  }
  .section-arrivals {
    padding: 42px 0 0;
  }

  /* Bestsellers — 1 kolom */
  .bestsellers-list {
    grid-template-columns: 1fr;
  }
  .bestseller-num {
    font-size: 20px;
    min-width: 28px;
  }
  .bestseller-item {
    padding: 18px 20px;
    gap: 16px;
  }
  .bestsellers-header {
    padding: 60px 20px 32px;
  }

  /* Footer grid — gestapeld */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-subscribe {
    margin-bottom: 48px;
  }
  .footer {
    padding: 52px 20px 0;
  }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 20px 0;
  }
}

/* ── SCHERM S (alleen 380px en smaller) ── */
@media (max-width: 340px) {
  .navbar {
    padding: 0 16px;
  }
  .nav-left, .nav-right {
    gap: 8px;
  }
  .icon-menu   { width: 22px; height: 22px; }
  .icon-heart  { width: 16px; height: 16px; }
  .icon-search { width: 16px; height: 16px; }
  .icon-cart   { width: 16px; height: 16px; }
  .logo-name {
    font-size: 13px;
    letter-spacing: 2px;
  }
  .badge {
    top: -5px;
    right: -6px;
    width: 14px;
    height: 14px;
    font-size: 8px;
  }
  .qty-btn {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .qty-num {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
}

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity 0.38s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 88vw;
  max-width: 380px;
  background: #ffffff;
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.cart-header-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #0a0a0a;
}
.cart-close {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  transition: color 0.2s;
}
.cart-close:hover { color: #0a0a0a; }
.cart-close svg {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor;
  stroke-width: 1.5; stroke-linecap: round;
}

/* Items */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid #f7f7f5;
  transition: background 0.15s;
}
.cart-item:hover { background: #fafafa; }
.cart-item-img {
  width: 72px; height: 72px;
  background: #f0ede8;
  border-radius: 2px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-img-placeholder {
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(0,0,0,0.2);
}
.cart-item-details {
  flex: 1;
  display: flex; flex-direction: column; justify-content: space-between;
}
.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.cart-item-brand {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: #999; margin-bottom: 3px;
}
.cart-item-name {
  font-size: 13px; letter-spacing: 0.5px;
  color: #0a0a0a; line-height: 1.3;
}
.cart-item-price {
  font-size: 13px; letter-spacing: 1px;
  color: #0a0a0a; white-space: nowrap;
}
.cart-item-meta {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: 10px;
}
.cart-item-variant {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: #666;
}
.cart-item-actions { display: flex; align-items: center; gap: 12px; }
.qty-wrap {
  display: flex; align-items: center;
  border: 1px solid #e8e8e8;
}
.qty-btn {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: none; border: none;
  font-size: 15px; color: #0a0a0a;
  transition: background 0.15s;
  font-family: 'Barlow Condensed', sans-serif;
}
.qty-btn:hover { background: #f7f7f5; }
.qty-num {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; letter-spacing: 1px;
  border-left: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
}
.cart-item-remove { cursor: pointer; display: flex; align-items: center; }
.cart-item-remove svg {
  width: 13px; height: 13px;
  fill: none; stroke: #ccc; stroke-width: 1.5; stroke-linecap: round;
  transition: stroke 0.2s;
}
.cart-item-remove:hover svg { stroke: #0a0a0a; }

/* Footer */
.cart-footer {
  padding: 18px 22px 24px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0; background: #fff;
}
.cart-subtotal {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 6px;
}
.cart-subtotal-label {
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: #888;
}
.cart-subtotal-price {
  font-size: 16px; letter-spacing: 1px;
  color: #0a0a0a; font-weight: 500;
}
.cart-subtotal-note {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: #666; margin-bottom: 16px;
}
.cart-checkout-btn {
  width: 100%; background: #0a0a0a; color: #fff;
  border: none; padding: 15px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s; margin-bottom: 10px;
}
.cart-checkout-btn:hover { background: #1a1a1a; }
.cart-continue {
  width: 100%; text-align: center;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: #555;
  cursor: pointer; padding: 8px;
  transition: color 0.2s; background: none;
  border: none; font-family: 'Barlow Condensed', sans-serif;
}
.cart-continue:hover { color: #0a0a0a; }

/* Lege cart */
.cart-empty {
  flex: 1; display: none;
  flex-direction: column; align-items: center;
  justify-content: flex-start; gap: 12px;
  padding: 220px 24px 40px; text-align: center;
}
.cart-empty.active { display: flex; }
.cart-empty-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; letter-spacing: 3px;
  text-transform: uppercase; color: #0a0a0a;
}
.cart-empty-sub {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: #666;
}
.cart-empty-btn {
  margin-top: 8px; background: #0a0a0a; color: #fff;
  border: none; padding: 13px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 4px;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s;
  font-weight: 500;
}
.cart-empty-btn:hover { background: #1a1a1a; }
/* ── SEARCH OVERLAY ── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 220;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  height: auto;
  max-height: 60vh;
  bottom: auto;
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 210;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.search-backdrop.open { opacity: 1; pointer-events: all; }

/* Zoekbalk rij direct onder navbar */
.search-input-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  height: 52px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
  /* Pushed down by navbar + announce bar */
  margin-top: calc(58px + 36px);
}
.search-input-row.no-announce {
  margin-top: 58px;
}
.search-header-icon {
  width: 17px; height: 17px;
  fill: none; stroke: #bbb;
  stroke-width: 1.5; stroke-linecap: round;
  flex-shrink: 0;
}
.search-input {
  flex: 1;
  border: none; outline: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; letter-spacing: 2px;
  color: #0a0a0a; background: transparent;
}
.search-input::placeholder { color: #ccc; letter-spacing: 2px; }
.search-close-btn {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: #aaa;
  cursor: pointer; transition: color 0.2s;
  white-space: nowrap;
}
.search-close-btn:hover { color: #0a0a0a; }

.search-content {
  flex: 1; overflow-y: auto;
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; gap: 28px;
}
.search-section-label {
  font-size: 10px; letter-spacing: 5px;
  text-transform: uppercase; color: #bbb; margin-bottom: 14px;
}
.search-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.search-tag {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: #0a0a0a;
  border: 1px solid #e0e0e0; padding: 8px 16px;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.search-tag:hover { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.search-recent-list { display: flex; flex-direction: column; }
.search-recent-item {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid #f7f7f5;
  cursor: pointer; transition: opacity 0.2s;
}
.search-recent-item:hover { opacity: 0.6; }
.search-recent-item:last-child { border-bottom: none; }
.search-recent-left { display: flex; align-items: center; gap: 12px; }
.search-recent-icon {
  width: 14px; height: 14px;
  fill: none; stroke: #ccc;
  stroke-width: 1.5; stroke-linecap: round; flex-shrink: 0;
}
.search-recent-text {
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: #0a0a0a;
}
.search-recent-remove {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: #ccc;
  cursor: pointer; transition: color 0.2s;
}
.search-recent-remove:hover { color: #0a0a0a; }
