/*
Theme Name: FashionElite
Theme URI: https://ifyouworld.com
Author: FashionElite
Description: Luxury minimal fashion e-commerce theme
Version: 2.0.0
Requires at least: 6.0
WC requires at least: 7.0
WC tested up to: 8.0
Text Domain: fashionelite
*/

/* ─────────────────────────────────────
   RESET
───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #000; background: #fff; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; background: none; outline: none; cursor: pointer; }

/* ─────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────── */
:root {
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --black: #000000;
  --white: #ffffff;
  --gray: #888888;
  --light: #f5f5f5;
  --border: #e0e0e0;
  --transition: all 0.4s ease;
}

/* ─────────────────────────────────────
   LAYOUT
───────────────────────────────────── */
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.wrap--narrow { max-width: 960px; margin: 0 auto; padding: 0 40px; }

/* ─────────────────────────────────────
   ANNOUNCEMENT BAR
───────────────────────────────────── */
.announce {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────
   HEADER
───────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 60px;
  padding: 0 40px;
}

.header-left { display: flex; align-items: center; gap: 28px; }
.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }

/* NAV */
.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  padding: 0 14px;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav-links a:hover { border-bottom-color: #000; }

/* LOGO */
.site-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  white-space: nowrap;
}

/* HEADER ICONS */
.hdr-btn {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: opacity 0.2s;
}
.hdr-btn:hover { opacity: 0.55; }
.hdr-btn svg { width: 18px; height: 18px; stroke: #000; fill: none; stroke-width: 1.4; }
.cart-badge {
  font-size: 10px;
  background: #000;
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px;
  right: -6px;
}

/* MOBILE MENU BTN */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.menu-toggle span { display: block; width: 22px; height: 1px; background: #000; transition: var(--transition); }

/* ─────────────────────────────────────
   SEARCH OVERLAY
───────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-close {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.search-form-wrap { width: 100%; max-width: 600px; padding: 0 40px; }
.search-form-wrap input[type="search"] {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  font-size: 28px;
  font-family: var(--serif);
  padding: 12px 0;
  background: transparent;
  color: #000;
}
.search-form-wrap input::placeholder { color: #bbb; }

/* ─────────────────────────────────────
   CART SIDEBAR
───────────────────────────────────── */
.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  background: #fff;
  border-left: 1px solid #e0e0e0;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-sidebar-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid #e0e0e0;
}
.cart-sidebar-hd h2 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 400; }
.cart-sidebar-body { flex: 1; overflow-y: auto; padding: 32px; }
.cart-sidebar-ft { padding: 24px 32px; border-top: 1px solid #e0e0e0; }

/* CART ITEM */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item-img { aspect-ratio: 3/4; background: #f5f5f5; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 13px; margin-bottom: 4px; }
.cart-item-meta { font-size: 11px; color: #888; margin-bottom: 12px; letter-spacing: 0.08em; }
.cart-qty { display: flex; align-items: center; gap: 12px; }
.qty-btn { font-size: 18px; color: #000; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.qty-val { font-size: 13px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 13px; letter-spacing: 0.06em; margin-bottom: 16px; }
.cart-note { font-size: 11px; color: #888; text-align: center; margin-bottom: 16px; }

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.overlay.open { opacity: 1; visibility: visible; }

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9997;
  padding: 80px 40px 40px;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close { position: absolute; top: 20px; right: 32px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.mobile-nav a { display: block; font-size: 24px; font-family: var(--serif); padding: 14px 0; border-bottom: 1px solid #f0f0f0; }

/* ─────────────────────────────────────
   HERO — FULL-BLEED EDITORIAL
───────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 580px;
  overflow: hidden;
  background: #f0ece8;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-slide.is-active .hero-bg { transform: scale(1); }

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 72px;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 55%);
}

.hero-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 400;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 2px;
  width: fit-content;
  transition: gap 0.3s, border-color 0.3s;
}
.hero-cta:hover { gap: 20px; border-color: #fff; }

/* HERO CONTROLS */
.hero-dots {
  position: absolute;
  bottom: 32px;
  right: 80px;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.hero-dot.is-active { background: #fff; }

.hero-arrows {
  position: absolute;
  bottom: 28px;
  left: 80px;
  display: flex;
  gap: 16px;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.hero-arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ─────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────── */
.section-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 40px;
}
.section-hd h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.section-hd a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.section-hd a:hover { opacity: 0.5; }

/* ─────────────────────────────────────
   PRODUCT GRID
───────────────────────────────────── */
.product-grid { display: grid; gap: 1px; background: #e0e0e0; }
.product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-grid--2 { grid-template-columns: repeat(2, 1fr); }

.product-card { background: #fff; position: relative; }

.product-card-media {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #f5f5f5;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card-media img { transform: scale(1.04); }

/* Placeholder */
.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ece8;
  font-size: 13px;
  color: #aaa;
  letter-spacing: 0.06em;
}

/* badges */
.product-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  font-weight: 400;
}
.badge--new { background: #000; color: #fff; }
.badge--sale { background: #000; color: #fff; }
.badge--best { background: #fff; color: #000; border: 1px solid #000; }

/* quick add */
.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.96);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  border-top: 1px solid #e0e0e0;
  cursor: pointer;
}
.product-card:hover .product-quick-add { transform: translateY(0); }
.product-quick-add:hover { background: #000; color: #fff; }

/* WISHLIST */
.product-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist svg { width: 16px; height: 16px; stroke: #000; fill: none; stroke-width: 1.5; }

.product-card-info { padding: 16px 0 24px; }
.product-card-brand { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: #888; margin-bottom: 5px; }
.product-card-name { font-size: 13px; color: #000; margin-bottom: 8px; line-height: 1.4; }
.product-card-name a:hover { opacity: 0.6; }
.product-price { display: flex; align-items: center; gap: 10px; }
.price-now { font-size: 13px; color: #000; }
.price-was { font-size: 12px; color: #bbb; text-decoration: line-through; }
.price-off { font-size: 11px; color: #000; }

/* ─────────────────────────────────────
   EDITORIAL SPLIT SECTION
───────────────────────────────────── */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.editorial--reverse .editorial-media { order: 2; }
.editorial--reverse .editorial-text { order: 1; }

.editorial-media { overflow: hidden; background: #f0ece8; }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.editorial-media:hover img { transform: scale(1.03); }

.editorial-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: #fff;
}
.editorial-label { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: #888; margin-bottom: 24px; }
.editorial-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 56px); font-weight: 400; line-height: 1.08; margin-bottom: 24px; letter-spacing: -0.01em; }
.editorial-desc { font-size: 14px; color: #444; line-height: 1.9; margin-bottom: 36px; max-width: 380px; }

/* ─────────────────────────────────────
   CATEGORY STRIP
───────────────────────────────────── */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #e0e0e0;
}
.cat-item {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #f0ece8;
  cursor: pointer;
}
.cat-item-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.cat-item:hover .cat-item-bg { transform: scale(1.05); }
.cat-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}
.cat-item-label {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────
   MARQUEE
───────────────────────────────────── */
.marquee-section {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  flex-shrink: 0;
}
.marquee-sep { color: #bbb; }

/* ─────────────────────────────────────
   ABOUT / STORY SECTION
───────────────────────────────────── */
.story-section { padding: 120px 0; }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.story-body { font-size: 14px; color: #555; line-height: 2; }
.story-author { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #888; margin-top: 20px; }

/* ─────────────────────────────────────
   SALE BANNER
───────────────────────────────────── */
.sale-banner {
  background: #000;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.sale-banner-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.sale-banner-title { font-family: var(--serif); font-size: clamp(40px, 6vw, 80px); font-weight: 400; margin-bottom: 16px; line-height: 1.05; }
.sale-banner-sub { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; margin-bottom: 40px; }
.sale-countdown { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 48px; }
.cd-unit { text-align: center; }
.cd-num { display: block; font-family: var(--serif); font-size: 52px; line-height: 1; color: #fff; }
.cd-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 6px; display: block; }
.cd-sep { font-size: 40px; color: rgba(255,255,255,0.2); align-self: flex-start; padding-top: 8px; }

/* ─────────────────────────────────────
   BUTTONS
───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: var(--transition);
  cursor: pointer;
  font-weight: 400;
}
.btn--black { background: #000; color: #fff; border: 1px solid #000; }
.btn--black:hover { background: #333; }
.btn--white { background: #fff; color: #000; border: 1px solid #fff; }
.btn--white:hover { background: rgba(255,255,255,0.85); }
.btn--outline { background: transparent; color: #000; border: 1px solid #000; }
.btn--outline:hover { background: #000; color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--full { width: 100%; }

/* ─────────────────────────────────────
   REVIEWS
───────────────────────────────────── */
.reviews-section { padding: 100px 0; background: #fafafa; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.review-card { padding: 40px; background: #fff; border: 1px solid #e0e0e0; }
.review-stars { font-size: 13px; color: #000; letter-spacing: 4px; margin-bottom: 20px; }
.review-text { font-size: 14px; color: #444; line-height: 1.9; font-style: italic; margin-bottom: 24px; }
.review-author { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #888; }

/* ─────────────────────────────────────
   NEWSLETTER
───────────────────────────────────── */
.nl-section { padding: 100px 0; border-top: 1px solid #e0e0e0; }
.nl-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.nl-label { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: #888; margin-bottom: 20px; }
.nl-title { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px); font-weight: 400; margin-bottom: 14px; }
.nl-desc { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 36px; }
.nl-form { display: flex; border: 1px solid #000; }
.nl-input { flex: 1; padding: 14px 20px; font-size: 13px; color: #000; background: transparent; }
.nl-input::placeholder { color: #bbb; }
.nl-submit { padding: 14px 28px; background: #000; color: #fff; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; border: none; cursor: pointer; white-space: nowrap; transition: background 0.3s; }
.nl-submit:hover { background: #333; }
.nl-note { font-size: 11px; color: #bbb; margin-top: 12px; }

/* ─────────────────────────────────────
   TRUST STRIP
───────────────────────────────────── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e0e0e0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid #e0e0e0;
  gap: 10px;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 22px; height: 22px; stroke: #000; fill: none; stroke-width: 1.4; }
.trust-title { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; }
.trust-desc { font-size: 12px; color: #888; }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.site-footer { border-top: 1px solid #e0e0e0; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; }
.footer-brand .site-logo { font-size: 20px; margin-bottom: 20px; display: block; }
.footer-desc { font-size: 13px; color: #666; line-height: 1.9; margin-bottom: 24px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #666; transition: color 0.2s; }
.footer-social a:hover { color: #000; }
.footer-col-title { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px; color: #000; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: #666; transition: color 0.2s; }
.footer-links a:hover { color: #000; }
.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #999;
  letter-spacing: 0.06em;
}
.footer-pay { display: flex; gap: 8px; }
.pay-tag { font-size: 10px; border: 1px solid #e0e0e0; padding: 3px 8px; color: #888; letter-spacing: 0.08em; }

/* ─────────────────────────────────────
   SHOP PAGE
───────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; padding: 48px 0; }
.shop-sidebar { position: sticky; top: 80px; height: fit-content; }
.filter-group { padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid #e0e0e0; }
.filter-group-title { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.filter-opts { display: flex; flex-direction: column; gap: 10px; }
.filter-opt { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #555; cursor: pointer; }
.filter-opt input { accent-color: #000; width: 14px; height: 14px; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; margin-bottom: 32px; border-bottom: 1px solid #e0e0e0; }
.shop-count { font-size: 12px; color: #888; letter-spacing: 0.08em; }
.shop-sort { padding: 8px 0; font-size: 12px; color: #000; letter-spacing: 0.06em; border-bottom: 1px solid #e0e0e0; cursor: pointer; }

/* PRODUCT DETAIL */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 48px 0 80px; }
.thumbs { display: flex; gap: 8px; margin-bottom: 10px; overflow-x: auto; }
.thumb { width: 64px; flex-shrink: 0; aspect-ratio: 2/3; overflow: hidden; background: #f5f5f5; border: 1px solid transparent; cursor: pointer; transition: border-color 0.2s; }
.thumb.active { border-color: #000; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.main-img { aspect-ratio: 2/3; overflow: hidden; background: #f5f5f5; cursor: zoom-in; }
.main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.main-img:hover img { transform: scale(1.04); }
.pd-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #888; margin-bottom: 10px; }
.pd-name { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 400; margin-bottom: 12px; line-height: 1.2; }
.pd-price { font-size: 18px; font-weight: 400; margin-bottom: 28px; }
.pd-price .was { font-size: 14px; color: #bbb; text-decoration: line-through; margin-left: 10px; }
.pd-divider { border: none; border-top: 1px solid #e0e0e0; margin: 24px 0; }
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn { padding: 10px 16px; border: 1px solid #e0e0e0; font-size: 12px; letter-spacing: 0.08em; cursor: pointer; transition: var(--transition); }
.size-btn.active, .size-btn:hover { border-color: #000; background: #000; color: #fff; }
.size-guide { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; border-bottom: 1px solid #ccc; padding-bottom: 1px; color: #666; }
.color-row { display: flex; gap: 8px; }
.color-dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: var(--transition); }
.color-dot.active, .color-dot:hover { box-shadow: 0 0 0 2px #fff, 0 0 0 3px #000; }
.qty-row { display: flex; align-items: center; border: 1px solid #e0e0e0; width: fit-content; }
.qty-row button { width: 44px; height: 44px; font-size: 20px; display: flex; align-items: center; justify-content: center; }
.qty-row span { width: 44px; text-align: center; font-size: 14px; }

/* TABS */
.pd-tabs { margin-top: 80px; border-top: 1px solid #e0e0e0; }
.pd-tab-hd { display: flex; }
.pd-tab-btn { padding: 20px 28px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; border-bottom: 1px solid transparent; margin-bottom: -1px; color: #888; transition: color 0.2s, border-color 0.2s; }
.pd-tab-btn.active { color: #000; border-bottom-color: #000; }
.pd-tab-content { padding: 40px 0; display: none; font-size: 14px; color: #444; line-height: 1.9; max-width: 720px; }
.pd-tab-content.active { display: block; }

/* ─────────────────────────────────────
   SCROLL TOP
───────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 88;
  border: none;
  cursor: pointer;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─────────────────────────────────────
   BREADCRUMBS
───────────────────────────────────── */
.breadcrumbs {
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #888;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumbs a { color: #888; }
.breadcrumbs a:hover { color: #000; }
.breadcrumbs-sep { color: #ccc; }

/* ─────────────────────────────────────
   SECTION PADDING
───────────────────────────────────── */
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }

/* ─────────────────────────────────────
   AOS (animate on scroll)
───────────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-in { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────
   MOBILE STICKY
───────────────────────────────────── */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 12px 20px;
  gap: 10px;
  z-index: 80;
}

/* ─────────────────────────────────────
   WOOCOMMERCE OVERRIDES
───────────────────────────────────── */
.woocommerce-message, .woocommerce-info { border-top-color: #000; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: #000; color: #fff; border-radius: 0;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 28px; transition: background 0.3s;
}
.woocommerce a.button:hover, .woocommerce button.button:hover { background: #333; }
.woocommerce a.button.alt { background: #000; }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1200px) {
  .product-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
  .cat-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .wrap { padding: 0 24px; }
  .header-bar { padding: 0 24px; }
  .nav-links, .hdr-lang { display: none; }
  .menu-toggle { display: flex; }
  .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .editorial { grid-template-columns: 1fr; }
  .editorial-text { padding: 56px 40px; }
  .editorial--reverse .editorial-media, .editorial--reverse .editorial-text { order: unset; }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .product-detail { grid-template-columns: 1fr; }
  .hero-arrows, .hero-dots { left: 24px; right: 24px; }
  .hero-content { padding: 0 40px 56px; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 16px; }
  .header-bar { padding: 0 16px; height: 52px; }
  .cat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:nth-child(3), .footer-grid > div:last-child { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .nl-form { flex-direction: column; border: none; gap: 0; }
  .nl-input { border: 1px solid #000; padding: 14px; margin-bottom: -1px; }
  .nl-submit { border: 1px solid #000; padding: 14px; }
  .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .sticky-mobile { display: flex; }
  .hero-content { padding: 0 20px 80px; }
  .editorial-text { padding: 40px 20px; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero { height: 80vh; }
  .hero-arrows { display: none; }
  .product-grid--4, .product-grid--3, .product-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .cat-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid #e0e0e0; }
}
