/** Shopify CDN: Minification failed

Line 451:0 Unexpected "}"

**/
/* ============================================================
   NULE VOIR — Main Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --fg: #000000;
  --fg-muted: #000000;
  --border: #e6e6e6;
  --btn-hover: #383838;
  --font: 'Times New Roman', Times, serif;
  --nav-h: 64px;
}

html { font-size: 12px; }
body { font-family: var(--font); background: var(--bg); color: var(--fg); overflow-x: hidden; line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
main, .section, section { flex: 1; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h); display: flex; align-items: center;
  justify-content: space-between; padding: 0 32px;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s;
}
.nav.scrolled { border-color: var(--border); }
.nav-left { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #000; transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); } .nav-link.active { color: var(--fg); font-weight: 600; }
.nav-logo {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-size: 18px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-right > span { font-size: 11px; letter-spacing: 0.05em; color: #000; }
.nav-icon { width: 20px; height: 20px; cursor: pointer; }
.nav-icon svg { width: 100%; height: 100%; }

/* ===== HERO ===== */
.hero {
  margin-top: var(--nav-h); width: 100%;
  height: calc(100vh - var(--nav-h)); min-height: 600px;
  overflow: hidden; background: #1a1a1a; position: relative;
}
.hero img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #111 0%, #222 50%, #0d0d0d 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.hero-brand { color: rgba(255,255,255,0.55); font-size: 52px; letter-spacing: 0.3em; text-transform: uppercase; }
.hero-hint { color: rgba(255,255,255,0.12); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; max-width: 400px; line-height: 2; }

/* ===== SECTION / PAGE ===== */
.section { padding: 84px 32px 0; }
.section-top { padding-top: calc(var(--nav-h) + 84px); }
.page-title {
  font-size: clamp(48px, 8vw, 120px); font-weight: 400;
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 48px;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); margin-bottom: 40px;
}
.filter-left { display: flex; gap: 24px; }
.filter-btn, .sort-btn {
  background: none; border: none; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; display: flex; align-items: center; gap: 6px;
}
.filter-btn svg, .sort-btn svg { width: 12px; height: 12px; }
.filter-right { display: flex; align-items: center; gap: 20px; }
.count { font-size: 11px; letter-spacing: 0.05em; color: #000; text-transform: uppercase; }
.grid-icons { display: flex; gap: 8px; }
.gi-btn { background: none; border: none; width: 22px; height: 22px; opacity: 0.35; }
.gi-btn.active { opacity: 1; }
.gi-btn svg { width: 100%; height: 100%; }

/* ===== PRODUCT GRID ===== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 46px; margin-bottom: 80px; }
.product-card { cursor: pointer; }
.product-card-img {
  position: relative; aspect-ratio: 2/3; overflow: hidden;
  background: #1a1a1a; margin-bottom: 8px;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.product-card:hover .product-card-img img { transform: scale(1.03); }
.pcard-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #111 0%, #222 100%);
  display: flex; align-items: center; justify-content: center;
}
.pcard-placeholder span { color: rgba(255,255,255,0.08); font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase; }
.sold-out {
  position: absolute; top: 12px; left: 12px;
  background: #000; color: #fff;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 8px; z-index: 2;
}
.card-info { display: flex; flex-direction: column; gap: 2px; padding-top: 6px; }
.card-name { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 400; color: #000; }
.card-price { font-size: 11px; font-weight: 400; color: #000; }

/* ===== PRODUCT DETAIL OVERLAY ===== */
.detail-overlay {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: #fff;
  overflow: hidden;
}
.detail-overlay.active { display: flex; flex-direction: column; }
.close-btn {
  position: absolute; top: 16px; right: 24px; z-index: 10;
  background: none; border: none; cursor: pointer;
  font-size: 22px; line-height: 1; color: #000; padding: 4px;
}
.detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  flex: 1; overflow: hidden; position: relative;
  height: 100%;
}
.detail-gallery {
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  scroll-snap-type: y mandatory;
  display: flex;
  flex-direction: column;
  align-items: center;
  scrollbar-color: #fff #111;
  scrollbar-width: none;
}
.detail-gallery::-webkit-scrollbar { display: none; }
.detail-gallery-img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.detail-info {
  padding: 80px 64px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  scrollbar-width: none;
}
.detail-info::-webkit-scrollbar { display: none; }
.detail-title { font-size: 48px; font-weight: 400; line-height: 1.1; margin-bottom: 16px; }
.detail-price { font-size: 14px; color: #000; margin-bottom: 48px; letter-spacing: 0.05em; }
.size-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.size-opts { display: flex; gap: 8px; margin-bottom: 32px; }
.size-btn {
  width: 44px; height: 44px; border: 1px solid #fff;
  background: white; font-size: 12px; letter-spacing: 0.05em;
  text-transform: uppercase; transition: all 0.2s;
}
.size-btn:hover { border-color: var(--fg); }
.size-btn.sel { background: var(--fg); color: white; border-color: var(--fg); }
.atc-btn {
  width: 100%; height: 56px; background: var(--fg); color: white; border: none;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 32px; transition: background 0.2s;
}
.atc-btn:hover { background: var(--btn-hover); }
.acc-item { border-top: 1px solid #fff; }
.acc-btn {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.acc-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.acc-btn.open svg { transform: rotate(180deg); }
.acc-body { display: none; padding-bottom: 16px; font-size: 12px; line-height: 1.7; color: #000; white-space: pre-line; }
.acc-body.open { display: block; }

/* ===== NEWSLETTER ===== */
.newsletter { padding: 80px 32px; text-align: center; }
.nl-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px; color: #000; }
.nl-form {
  display: flex; align-items: center; max-width: 520px; margin: 0 auto;
  border: 1px solid var(--fg); border-radius: 999px; overflow: hidden; padding: 4px 4px 4px 24px;
}
.nl-input { flex: 1; background: none; border: none; outline: none; font-family: inherit; font-size: 12px; padding: 12px 0; }
.nl-submit {
  background: none; border: none; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s;
}
.nl-submit:hover { background: var(--border); }
.nl-submit svg { width: 18px; height: 18px; }

/* ===== FOOTER ===== */
footer { background: #f2f2f2; padding: 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.footer-main {
  display: grid; grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 40px; padding: 48px 0;
}
.footer-nl-row {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  padding: 40px 0;
  display: flex; justify-content: center; align-items: center;
}
.footer-brand-name {
  font-size: 16px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 20px;
}
.footer-social-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: #000; margin-bottom: 10px; transition: color 0.2s;
}
.footer-social-link:hover { color: var(--fg); }
.footer-social-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-nl-btn {
  display: inline-block; margin: 0;
  border: 1px solid #ccc; background: none; cursor: pointer;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 12px 24px; color: var(--fg); transition: border-color 0.2s; font-family: inherit;
}
.footer-nl-btn:hover { border-color: var(--fg); }
.ft-col-title {
  font-size: 11px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 16px; color: var(--fg);
}
.ft-link {
  display: block; font-size: 12px; color: #000;
  margin-bottom: 10px; transition: color 0.2s; font-weight: 300;
}
.ft-link:hover { color: var(--fg); }
.footer-bottom {
  display: flex; justify-content: center; align-items: center;
  padding: 20px 32px;
  font-size: 11px; color: #000; letter-spacing: 0.03em;
}

/* ===== FOOTER BRAND ===== */
.footer-brand-top { display: none; }
.footer-brand-desktop { display: block; }
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: #000; transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
#mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.35); z-index: 800;
}
#mobile-nav-overlay.active { display: block; }
#mobile-nav {
  position: fixed; top: 0; left: -100%;
  width: min(320px, 85vw); height: 100vh;
  background: #fff; z-index: 900;
  display: flex; flex-direction: column;
  transition: left 0.3s ease;
}
#mobile-nav.active { left: 0; }
.mobile-nav-close {
  align-self: flex-end; background: none; border: none;
  font-size: 20px; cursor: pointer; padding: 20px 24px 0;
}
.mobile-nav-links {
  display: flex; flex-direction: column;
  padding: 32px 32px 0; flex: 1;
}
.mobile-nav-link {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #000; padding: 18px 0;
  border-bottom: 1px solid #f0f0f0; transition: color 0.2s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link.active { font-weight: 600; }
.mobile-nav-bottom {
  padding: 24px 32px 40px;
  display: flex; gap: 8px; flex-wrap: wrap;
  border-top: 1px solid #f0f0f0;
}
.mobile-lang-btn {
  background: none; border: 1px solid #ddd;
  font-family: inherit; font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 12px; cursor: pointer; color: #000;
  transition: border-color 0.2s;
}
.mobile-lang-btn:hover { border-color: #000; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 1024px) {
  /* Nav */
  .nav { padding: 0 16px; }
  .nav-left { display: none; }
  .nav-desktop-only { display: none !important; }
  .nav-right { gap: 14px; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 480px; height: calc(100svh - var(--nav-h)); }
  .hero-brand { font-size: 28px; letter-spacing: 0.2em; }
  .hero-hint { font-size: 8px; }

  /* Section */
  .section { padding: 48px 16px 0; }
  .section-top { padding-top: calc(var(--nav-h) + 48px); padding-left: 16px; padding-right: 16px; }
  .page-title { font-size: 36px; margin-bottom: 32px; }

  /* Product grid */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 48px; }

  /* Filter bar */
  .filter-bar { padding: 14px 0; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
  .grid-icons { display: none; }

  /* ── Product detail overlay ── */
  .detail-overlay { top: 0; }
  .detail-grid {
    grid-template-columns: 1fr;
    overflow-y: auto;
    height: 100%;
    -webkit-overflow-scrolling: touch;
  }

  /* Gallery: horizontal swipe strip on mobile */
  .detail-gallery {
    height: 88vw;
    min-height: 300px;
    max-height: 70vw;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    background: #fff;
  }
  .detail-gallery::-webkit-scrollbar { display: none; }
  .detail-gallery img,
  .detail-gallery-img {
    width: 100vw;
    min-width: 100vw;
    height: 100%;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center center;
    scroll-snap-align: start;
    display: block;
  }
  /* Swipe dots indicator */
  .detail-gallery::after {
    content: '';
    display: none;
  }

  .detail-gallery-placeholder { height: 100%; min-width: 100vw; }
  .detail-info {
    padding: 28px 20px 56px;
    height: auto;
    overflow: visible;
  }
  .detail-title { font-size: 32px; margin-bottom: 10px; }
  .detail-price { font-size: 13px; margin-bottom: 32px; }
  .size-label { font-size: 10px; margin-bottom: 10px; }
  .size-opts { gap: 10px; margin-bottom: 24px; }
  .size-btn { width: 48px; height: 48px; font-size: 11px; }
  .atc-btn { font-size: 11px; padding: 16px; letter-spacing: 0.12em; }
  .acc-btn { padding: 18px 0; font-size: 10px; }
  .close-btn { top: 10px; right: 14px; font-size: 20px; z-index: 300; }

  /* Footer */
  .footer-brand-top { display: block; padding-top: 32px; margin-bottom: 16px; font-size: 13px; text-align: center; }
  .footer-brand-desktop { display: none; }
  .footer-brand-name:not(.footer-brand-top) { display: none; }
  .footer-inner { padding: 0 20px; }
  .footer-main {
    grid-template-columns: auto auto;
    gap: 0;
    padding: 32px 0 0;
    width: 100%;
    justify-content: center;
  }
  .footer-main > div:nth-child(1) { grid-column: 1; grid-row: 1; text-align: left; padding-right: 32px; }
  .footer-main > div:nth-child(2) { grid-column: 2; grid-row: 1; text-align: left; padding-left: 32px; }
  .footer-main > div:nth-child(3) { grid-column: 2; grid-row: 2; padding-top: 28px; text-align: left; padding-left: 32px; }
  .footer-main > div:nth-child(4) { grid-column: 1; grid-row: 2; padding-top: 28px; text-align: left; padding-right: 32px; }
  .footer-social-link { justify-content: flex-start; font-size: 11px; margin-bottom: 10px; }
  .ft-col-title { font-size: 10px; margin-bottom: 10px; }
  .ft-link { font-size: 11px; margin-bottom: 8px; text-align: left; }
  .footer-nl-row { padding: 36px 0; margin-top: 24px; display: flex; justify-content: center; }
  .footer-bottom { padding: 16px 0; font-size: 10px; text-align: center; }

  /* Search */
  #search-modal {
    width: 100%; max-width: 100%;
    left: 0; transform: none;
    border-left: none; border-right: none;
  }
  .search-grid { grid-template-columns: repeat(2, 1fr); }

  /* Cart & Newsletter — volle Breite */
  #cart-drawer { width: 100%; right: -100%; }
  #nl-drawer { width: 100%; right: -100%; }
}
}


.filter-bar { position: relative; }
.filter-btn, .sort-btn { position: relative; }
.filter-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid #e6e6e6; min-width: 180px;
  z-index: 50; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sort-btn .filter-dropdown { left: auto; right: 0; }
.filter-dropdown.open { display: block; }
.filter-option {
  display: block; width: 100%; background: none; border: none;
  text-align: left; padding: 12px 16px; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  font-family: inherit; transition: background 0.15s;
}
.filter-option:hover { background: #f5f5f5; }
.filter-option.active { font-weight: 700; color: #000; }

/* ===== CART DRAWER ===== */
#cart-overlay {
  display:none; position:fixed; inset:0; background:rgba(0,0,0,0.4); z-index:599;
}
#cart-overlay.active { display:block; }
#cart-drawer {
  position:fixed; top:0; right:-420px;
  width:420px; max-width:100vw; height:100vh;
  background:#fff; z-index:600; transition:right 0.3s ease;
  display:flex; flex-direction:column; overflow:hidden;
}
#cart-drawer.active { right:0; }
.cart-header {
  display:flex; justify-content:space-between; align-items:center;
  padding:24px 24px 16px; border-bottom:1px solid #e6e6e6; flex-shrink:0;
}
.cart-title { font-size:18px; font-weight:400; display:flex; align-items:center; gap:10px; }
.cart-count {
  background:#000; color:#fff; border-radius:50%;
  width:24px; height:24px; display:inline-flex; align-items:center; justify-content:center;
  font-size:11px;
}
.cart-close { background:none; border:none; font-size:18px; cursor:pointer; }
.cart-empty {
  flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:40px 32px; text-align:center; gap:12px;
}
.cart-empty-title { font-size:20px; font-weight:400; }
.cart-empty-hint { font-size:12px; color:#666; line-height:1.6; }
.cart-continue {
  margin-top:16px; padding:16px 32px; background:#000; color:#fff; border:none;
  font-size:11px; letter-spacing:0.12em; text-transform:uppercase; cursor:pointer;
}
.cart-continue:hover { background:#333; }
.cart-items { flex:1; overflow-y:auto; padding:0 24px; }
.cart-item { display:flex; gap:16px; padding:20px 0; }
.cart-item-img { width:80px; height:100px; flex-shrink:0; overflow:hidden; background:#111; }
.cart-item-img img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.cart-item-info { flex:1; display:flex; flex-direction:column; gap:4px; }
.cart-item-top { display:flex; justify-content:space-between; align-items:flex-start; }
.cart-item-name { font-size:13px; }
.cart-item-unitprice { font-size:12px; }
.cart-item-size { font-size:12px; color:#666; }
.cart-item-price { font-size:12px; }
.cart-item-qty {
  display:flex; align-items:center; margin-top:8px;
  border:1px solid #e6e6e6; width:fit-content;
}
.cart-item-qty button {
  background:none; border:none; width:36px; height:36px;
  font-size:16px; cursor:pointer; display:flex; align-items:center; justify-content:center;
}
.cart-item-qty span { min-width:32px; text-align:center; font-size:13px; }
.cart-delete { margin-left:12px; background:none; border:none; cursor:pointer; opacity:0.6; }
.cart-delete:hover { opacity:1; }
.cart-divider { border:none; border-top:1px solid #e6e6e6; margin:0; }
.cart-footer { flex-shrink:0; padding:16px 24px 24px; border-top:1px solid #e6e6e6; }
.cart-total-row { display:flex; justify-content:space-between; font-size:13px; font-weight:600; margin-bottom:8px; }
.cart-tax { font-size:11px; color:#666; margin-bottom:16px; line-height:1.5; }
.cart-checkout {
  width:100%; height:52px; background:#000; color:#fff; border:none;
  font-size:11px; letter-spacing:0.15em; text-transform:uppercase; cursor:pointer; margin-bottom:10px;
}
.cart-pay-btns { display:flex; gap:8px; }
.pay-btn { flex:1; height:44px; border:none; border-radius:6px; font-size:13px; font-weight:700; cursor:pointer; }
.pay-shop { background:#5a31f4; color:#fff; }
.pay-paypal { background:#ffc439; color:#003087; }
.pay-gpay { background:#000; color:#fff; }

/* ===== SEARCH MODAL ===== */
#search-backdrop {
  display:none; position:fixed; inset:0; z-index:399;
}
#search-backdrop.active { display:block; }
#search-modal {
  display:none;
  position:fixed;
  top: var(--nav-h); left:50%; transform:translateX(-50%);
  width:520px; max-width:96vw;
  background:#fff; z-index:400;
  border:1px solid #e6e6e6;
  box-shadow:0 8px 40px rgba(0,0,0,0.12);
  max-height:calc(100vh - var(--nav-h) - 40px);
  overflow-y:auto;
  flex-direction:column;
}
#search-modal.active { display:flex; }
.search-header {
  display:flex; align-items:center; gap:12px;
  padding:16px 20px; border-bottom:1px solid #e6e6e6; flex-shrink:0;
  position:sticky; top:0; background:#fff; z-index:1;
}
.search-header svg { width:18px; height:18px; flex-shrink:0; color:#999; }
#search-input {
  flex:1; border:none; outline:none; font-family:inherit; font-size:15px;
}
.search-close { background:none; border:none; font-size:18px; cursor:pointer; color:#999; }
#search-results { padding:20px; }
.search-section { margin-bottom:28px; }
.search-section-hdr {
  display:flex; justify-content:space-between; align-items:center;
  font-size:10px; letter-spacing:0.12em; text-transform:uppercase; margin-bottom:14px;
}
.search-section-hdr button {
  background:none; border:none; font-size:10px; letter-spacing:0.08em;
  text-transform:uppercase; cursor:pointer; text-decoration:underline; font-family:inherit;
}
.search-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.search-card { cursor:pointer; }
.search-card-img { aspect-ratio:2/3; overflow:hidden; background:#111; margin-bottom:6px; }
.search-card-img img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.search-card-name { font-size:11px; }
.search-card-price { font-size:11px; }

/* ===== LANGUAGE MENU ===== */
.lang-wrap { position:relative; }
#lang-menu {
  display:none; position:fixed;
  background:#fff; border:1px solid #e6e6e6; min-width:160px; z-index:9999;
  box-shadow:0 4px 20px rgba(0,0,0,0.12);
}
#lang-menu.open { display:block; }
.lang-option {
  display:block; width:100%; background:none; border:none; text-align:left;
  padding:12px 16px; font-size:11px; letter-spacing:0.08em; text-transform:uppercase;
  cursor:pointer; font-family:inherit; transition:background 0.15s;
}
.lang-option:hover { background:#f5f5f5; }
.lang-option.active { font-weight:700; }

/* ===== CART BADGE ===== */
.nav-icon-wrap { position:relative; display:inline-flex; align-items:center; }
.cart-badge {
  display:none; position:absolute; top:-6px; right:-8px;
  align-items:center; justify-content:center;
  background:#000; color:#fff; border-radius:50%;
  width:16px; height:16px; font-size:9px; font-family:inherit;
  pointer-events:none;
}

/* ===== NEWSLETTER DRAWER ===== */
#nl-overlay {
  display:none; position:fixed; inset:0; background:rgba(0,0,0,0.4); z-index:599;
}
#nl-overlay.active { display:block; }
#nl-drawer {
  position:fixed; top:0; right:-420px;
  width:420px; max-width:100vw; height:100vh;
  background:#fff; z-index:600; transition:right 0.3s ease;
  display:flex; flex-direction:column;
}
#nl-drawer.active { right:0; }
.nl-drawer-header {
  display:flex; justify-content:space-between; align-items:center;
  padding:24px 24px 20px; border-bottom:1px solid #e6e6e6; flex-shrink:0;
}
.nl-drawer-title { font-size:18px; font-weight:400; }
.nl-drawer-close { background:none; border:none; font-size:18px; cursor:pointer; }
.nl-drawer-body { flex:1; padding:32px 24px; display:flex; flex-direction:column; gap:20px; }
.nl-drawer-body p { font-size:13px; line-height:1.7; color:#444; }
#nl-form { display:flex; flex-direction:column; gap:12px; }
#nl-input {
  border:1px solid #e6e6e6; padding:14px 16px; font-family:inherit;
  font-size:13px; outline:none; transition:border-color 0.2s;
}
#nl-input:focus { border-color:#000; }
.nl-submit-btn {
  height:52px; background:#000; color:#fff; border:none;
  font-size:11px; letter-spacing:0.15em; text-transform:uppercase;
  cursor:pointer; transition:background 0.2s; font-family:inherit;
}
.nl-submit-btn:hover { background:#333; }

/* ===== FILTER DROPDOWNS ===== */
.filter-bar { position:relative; }
.filter-btn, .sort-btn { position:relative; }
.filter-dropdown {
  display:none; position:absolute; top:calc(100% + 8px); left:0;
  background:#fff; border:1px solid #e6e6e6; min-width:180px;
  z-index:50; box-shadow:0 4px 20px rgba(0,0,0,0.08);
}
.sort-btn .filter-dropdown { left:auto; right:0; }
.filter-dropdown.open { display:block; }
.filter-option {
  display:block; width:100%; background:none; border:none;
  text-align:left; padding:12px 16px; font-size:11px;
  letter-spacing:0.08em; text-transform:uppercase; cursor:pointer;
  font-family:inherit; transition:background 0.15s;
}
.filter-option:hover { background:#f5f5f5; }
.filter-option.active { font-weight:700; }

/* ===== DETAIL OVERLAY FOOTER ===== */
.detail-footer {
  margin-top: 64px;
  padding: 40px 0 32px;
  border-top: 1px solid var(--border);
  background: #f2f2f2;
  margin-left: -64px;
  margin-right: -64px;
  padding-left: 64px;
  padding-right: 64px;
}
.detail-footer-inner {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 32px;
}

/* Product image placeholder */
.detail-gallery img[src=""],
.detail-gallery img:not([src]) {
  display: none;
}
.detail-gallery-placeholder {
  width: 100%;
  height: calc(100vh - var(--nav-h));
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* ===== EDITORIAL SECTION ===== */
.editorial-section {
  padding: 64px 40px 72px;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: end;
}
.editorial-side { cursor: pointer; overflow: hidden; background: none; border: none; padding: 0; display: block; text-align: left; }
.editorial-side img {
  width: 100%; height: 600px;
  object-fit: cover; object-position: center top;
  display: block; transition: transform 0.5s ease;
  pointer-events: none;
}
.editorial-side:hover img { transform: scale(1.02); }
.editorial-center { cursor: pointer; overflow: hidden; background: none; border: none; padding: 0; display: block; text-align: left; }
.editorial-center img {
  width: 100%; height: 600px;
  object-fit: cover; object-position: center top;
  display: block; transition: transform 0.5s ease;
  pointer-events: none;
}
.editorial-center:hover img { transform: scale(1.02); }
.editorial-name {
  text-align: center; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #000; margin-top: 16px; font-weight: 400;
}

/* Carousel — hidden on desktop */
.ed-carousel { display: none; }
.ed-track {
  display: flex; flex-direction: row;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ed-slide { min-width: 100vw; width: 100vw; position: relative; flex-shrink: 0; }
.ed-slide img {
  width: 100%; height: 100svh;
  object-fit: cover; object-position: center top; display: block;
}
.ed-name {
  position: absolute; bottom: 28px; left: 0; right: 0;
  text-align: center; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.ed-dots {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px; z-index: 10;
  pointer-events: none;
}
.ed-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.2s, transform 0.2s; display: block;
}
.ed-dot.active { background: #fff; transform: scale(1.4); }

@media (max-width: 1024px) {
  .editorial-section { padding: 0; background: #000 !important; }
  .editorial-grid { display: none !important; }
  .ed-carousel {
    display: block !important;
    position: relative; width: 100%; overflow: hidden;
  }
}
