/* ============================================================
   STREETSTORE — Complete Stylesheet
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&family=Tajawal:wght@300;400;500;700&display=swap&font-display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: 'Inter', sans-serif; border: none; background: none; }
input, select, textarea { font-family: 'Inter', sans-serif; font-size: 14px; }

/* --- Custom Properties --- */
:root {
  --white: #ffffff;
  --off: #eef5fb;
  --denim: #a8d4ea;
  --charcoal: #111111;
  --gray: #333333;
  --gray-light: #d8ecf6;
  --gray-mid: #b8d8ea;
  --transition: 0.3s ease;
}

/* --- Typography Scale --- */
h1, h2, h3, h4, h5, h6 { line-height: 1.1; font-weight: 600; }

.display-heading {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.04em;
}

.section-subtitle {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

/* --- Buttons --- */
.btn-dark {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--charcoal);
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
  text-align: center;
}
.btn-dark:hover { background: #000000; border-color: #000000; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--white);
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-outline:hover { background: var(--white); color: var(--charcoal); }

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--charcoal);
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.btn-text:hover { opacity: 0.6; }

/* --- Container --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-color: var(--gray-light);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-left a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
}
.nav-left a:hover { color: var(--gray); }

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  text-align: center;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.nav-right a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
}
.nav-right a:hover { color: var(--gray); }

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--charcoal);
  transition: color var(--transition);
  font-size: 13px;
}
.nav-icon-btn:hover { color: var(--gray); }
.nav-icon-btn[aria-label="Account"] { display: none; }

.cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  display: block;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 24px 40px 32px;
  z-index: 999;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gray); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-brand .footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding: 24px 40px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-light);
  flex-shrink: 0;
}
.cart-header h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--gray);
  transition: color var(--transition);
}
.cart-close:hover { color: var(--charcoal); }

.cart-items { flex: 1; min-height: 0; overflow-y: auto; padding: 20px 28px; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; touch-action: pan-y; }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}
.cart-item-img { width: 72px; height: 90px; background: var(--gray-light); }
.cart-item-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; line-height: 1.4; }
.cart-item-price { font-size: 14px; color: var(--gray); margin-bottom: 10px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; }
.cart-item-qty button {
  width: 24px; height: 24px;
  border: 1px solid var(--gray-mid);
  background: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.cart-item-qty button:hover { background: var(--gray-light); }
.cart-item-qty span { font-size: 13px; min-width: 16px; text-align: center; }

.cart-item-remove {
  font-size: 18px;
  color: var(--gray);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
  padding: 8px;
  margin: -8px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.cart-item-remove:hover { color: var(--charcoal); }

.cart-empty { text-align: center; padding: 60px 28px; }
.cart-empty p { font-size: 14px; color: var(--gray); margin-bottom: 24px; }

.cart-upsell {
  padding: 16px 28px;
  border-top: 1px solid var(--gray-light);
  background: var(--off);
  flex-shrink: 0;
}
.upsell-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}
.upsell-item { display: flex; align-items: center; gap: 12px; }
.upsell-img { width: 48px; height: 60px; background: #111111; flex-shrink: 0; }
.upsell-item > div { flex: 1; }
.upsell-item p { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.upsell-item span { font-size: 12px; color: var(--gray); }
.upsell-add {
  width: 32px; height: 32px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.upsell-add:hover { background: #000000; }

.cart-footer {
  padding: 20px 28px 28px;
  padding-bottom: max(28px, calc(28px + env(safe-area-inset-bottom, 0px)));
  border-top: 1px solid var(--gray-light);
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cart-subtotal span { font-size: 14px; font-weight: 600; }
.cart-shipping-note { font-size: 12px; color: var(--gray); margin-bottom: 16px; }
.cart-continue {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: color var(--transition);
}
.cart-continue:hover { color: var(--charcoal); }

/* Cart deal offer panel */
.cart-deal-offer {
  flex-shrink: 0;
  padding: 12px 16px;
  background: #f9f6ee;
  border-top: 2px solid #e0c97a;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.cart-deal-icon { font-size: 20px; flex-shrink: 0; }
.cart-deal-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0; color: var(--charcoal);
  margin-bottom: 2px;
}
.cart-deal-sub {
  font-size: 11px; color: var(--gray);
  line-height: 1.4;
}
.cart-deal-text { flex: 1; min-width: 0; }

@media (max-width: 768px) {
  .cart-deal-offer { padding: 8px 12px; gap: 8px; }
  .cart-deal-icon { font-size: 16px; }
  .cart-deal-title { font-size: 11px; margin-bottom: 1px; }
  .cart-deal-sub { font-size: 10px; line-height: 1.3; }
}

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  height: 100vh;
  min-height: 600px;
  background: var(--denim);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111111 0%, #4a80a8 40%, #000000 100%);
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.25); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 1000px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.hero-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
[lang="fr"] .hero-heading,
[lang="fr"] .hero-heading-italic {
  font-size: clamp(58px, 8.5vw, 115px);
}
.hero-heading-italic {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-style: italic;
  margin-bottom: 32px;
}
.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.4); }

/* Benefits Bar */
.benefits-bar {
  background: var(--off);
  border-bottom: 1px solid var(--gray-light);
}
.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1280px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 40px;
  border-right: 1px solid var(--gray-light);
}
.benefit-item:last-child { border-right: none; }
.benefit-icon { font-size: 20px; flex-shrink: 0; }
.benefit-text strong { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 2px; }
.benefit-text span { font-size: 12px; color: var(--gray); }

/* Featured Products */
.featured-products { padding: 120px 0; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  padding: 0 40px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.product-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.product-card { position: relative; overflow: hidden; cursor: pointer; display: flex; flex-direction: column; }

.product-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.product-card-img-inner {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-card-img-inner { transform: scale(1.04); }

.product-card-quick {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.product-card:hover .product-card-quick { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  /* Touch devices — always show quick-add */
  .product-card-quick { opacity: 1; transform: translateY(0); font-size: 11px; padding: 10px; }
  .wishlist-btn { width: 44px; height: 44px; }
}

.product-card-info { padding: 16px 4px 24px; flex: 1; display: flex; flex-direction: column; }
.product-card-name { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.product-card-fit {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-card-price { font-size: 15px; font-weight: 700; margin-top: auto; padding-top: 8px; }
.product-card-price .original { color: var(--gray); text-decoration: line-through; margin-right: 8px; font-weight: 400; font-size: 13px; }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
}
.product-badge.sale { background: #c0392b; }
.product-badge.new-badge { background: var(--denim); }
.product-badge.trending { background: #8B6914; }

.wishlist-btn {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--white);
  border: none;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 16px;
}
.product-card:hover .wishlist-btn { opacity: 1; }

/* Trending Section */
/* ===== TRENDING SECTION ===== */
.trending-section {
  padding: 80px 40px 120px;
  max-width: 1400px;
  margin: 0 auto;
}
.trending-header {
  text-align: center;
  margin-bottom: 48px;
}
.trending-header-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--denim);
  border: 1px solid var(--denim);
  padding: 4px 14px;
  margin-bottom: 16px;
}
.trending-header-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.trending-header-sub {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.trending-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 4px;
  align-items: end;
}

.trending-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.trending-panel-img {
  width: 100%;
  height: 520px;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.trending-panel-main .trending-panel-img {
  height: 680px;
}
.trending-panel:hover .trending-panel-img { transform: scale(1.04); }

.trending-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.trending-panel-main .trending-panel-overlay {
  padding: 36px 32px;
}

.trending-panel-badge {
  display: inline-block;
  background: var(--denim);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 10px;
  width: fit-content;
}
.trending-panel-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.trending-panel-main .trending-panel-label {
  font-size: 52px;
}
.trending-panel-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-top: 8px;
  max-width: 260px;
}
.trending-panel-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: fit-content;
}
.trending-panel:hover .trending-panel-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Style Editorial */
.style-editorial { background: var(--charcoal); padding: 100px 0 80px; }

.editorial-header { text-align: center; margin-bottom: 56px; padding: 0 40px; }
.editorial-header .section-subtitle { color: rgba(255,255,255,0.35); }
.editorial-header .section-title { color: var(--white); margin-bottom: 12px; }
.editorial-header-desc { font-size: 13px; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); text-transform: uppercase; }

.editorial-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.editorial-card { position: relative; overflow: hidden; cursor: pointer; }
.editorial-card-img {
  width: 100%;
  height: 560px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-card:hover .editorial-card-img { transform: scale(1.05); }

/* Look number top-left */
.editorial-card-num {
  position: absolute;
  top: 18px; left: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  z-index: 2;
}

/* Bottom overlay — always visible gradient, text+btn appear on hover */
.editorial-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  transition: background var(--transition);
}
.editorial-card:hover .editorial-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 60%, transparent 100%); }

.editorial-card-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--denim);
  display: block;
  margin-bottom: 6px;
}
.editorial-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0;
}
.editorial-card-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.editorial-card:hover .editorial-card-cta { opacity: 1; transform: translateY(0); }

.editorial-footer {
  text-align: center;
  margin-top: 56px;
}

/* Instagram Grid */
.instagram-section { padding: 120px 0; }
.instagram-header { text-align: center; margin-bottom: 48px; }
.instagram-handle { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; display: block; }
.instagram-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 0.04em; margin-bottom: 20px; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.instagram-tile { aspect-ratio: 1; position: relative; overflow: hidden; cursor: pointer; }
.instagram-tile-bg { width: 100%; height: 100%; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.instagram-tile:hover .instagram-tile-bg { transform: scale(1.06); }
.instagram-tile-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.instagram-tile:hover .instagram-tile-overlay { background: rgba(0,0,0,0.35); }
.instagram-tile-overlay span { color: var(--white); font-size: 22px; opacity: 0; transition: opacity var(--transition); }
.instagram-tile:hover .instagram-tile-overlay span { opacity: 1; }
.instagram-follow { text-align: center; margin-top: 36px; }

/* Newsletter */
.newsletter-section { background: var(--off); padding: 100px 40px; text-align: center; }
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-inner .section-title { margin-bottom: 16px; }
.newsletter-inner p { font-size: 15px; color: var(--gray); margin-bottom: 36px; font-weight: 300; }
.newsletter-form { display: flex; gap: 0; max-width: 440px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid var(--gray-mid);
  border-right: none;
  font-size: 14px;
  outline: none;
  border-radius: 0;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--charcoal); }
.newsletter-form button {
  padding: 16px 28px;
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: #000000; }
.newsletter-form button.success { background: #27ae60; border-color: #27ae60; }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.page-title-bar {
  background: var(--off);
  border-bottom: 1px solid var(--gray-light);
  padding: 40px;
  margin-top: 108px;
}
.page-title-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.page-title-bar h1 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 0.04em; }
.page-title-bar span { font-size: 13px; color: var(--gray); }

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 96px;
  border-right: 1px solid var(--gray-light);
  padding-right: 36px;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-light);
}
.sidebar-header h3 { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.clear-all {
  font-size: 12px;
  color: var(--gray);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}
.clear-all:hover { color: var(--charcoal); }

.filter-section { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--gray-light); }
.filter-section:last-child { border-bottom: none; }
.filter-section h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }

.filter-checkboxes { display: flex; flex-direction: column; gap: 10px; }
.filter-checkboxes label { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--charcoal); cursor: pointer; }
.filter-checkboxes input[type="checkbox"],
.filter-checkboxes input[type="radio"] { width: 16px; height: 16px; accent-color: var(--charcoal); cursor: pointer; }

.color-swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.color-swatch {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  cursor: pointer;
  position: relative;
  transition: outline-color 0.15s, transform 0.15s;
}
.color-swatch:hover { outline-color: var(--gray-mid); transform: scale(1.1); }
.color-swatch.active { outline-color: var(--charcoal); transform: scale(1.1); }
.color-swatch.active::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Active filter chips */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px 5px 12px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.filter-chip-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: background 0.15s;
}
.filter-chip-x:hover { background: rgba(255,255,255,0.3); }

/* Empty state */
.shop-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 20px;
  text-align: center;
  grid-column: 1 / -1;
}
.shop-empty-icon { font-size: 40px; opacity: 0.2; }
.shop-empty p { font-size: 15px; color: var(--gray); }
.shop-empty .clear-all { font-size: 13px; color: var(--charcoal); font-weight: 600; text-decoration: underline; background: none; border: none; cursor: pointer; }

/* Load more */
.load-more-btn {
  display: block;
  margin: 48px auto 0;
  padding: 14px 48px;
  background: var(--white);
  border: 1.5px solid var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.load-more-btn:hover { background: var(--charcoal); color: var(--white); }

.price-range { width: 100%; accent-color: var(--charcoal); }
.price-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--gray); margin-top: 8px; }

.sort-select {
  width: 100%;
  padding: 10px 36px 10px 12px;
  border: 1.5px solid var(--gray-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  outline: none;
  border-radius: 4px;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.15s;
}
.sort-select:focus { border-color: var(--charcoal); }

.product-grid-3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding-left: 36px;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.breadcrumb {
  padding: 24px 40px;
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 108px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}
.breadcrumb a { color: var(--gray); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--charcoal); }
.breadcrumb span { color: var(--gray); }
.breadcrumb .current { color: var(--charcoal); font-weight: 500; }

.product-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 120px;
  align-items: start;
}

.product-gallery { position: relative; padding-right: 32px; }
.gallery-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: #111111;
  margin-bottom: 8px;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-main-img { width: 100%; height: 100%; transition: transform 0.5s ease; }
.gallery-main:hover .gallery-main-img { transform: scale(1.03); }

.gallery-thumbnails { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-thumb {
  aspect-ratio: 3/4;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--charcoal); }
.gallery-thumb-img { width: 100%; height: 100%; transition: transform 0.4s ease; }
.gallery-thumb:hover .gallery-thumb-img { transform: scale(1.05); }

.gallery-video-btn {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}
.gallery-video-btn:hover { color: var(--charcoal); }

.product-info { position: sticky; top: 96px; padding-left: 32px; }
.product-badge-wrap { margin-bottom: 12px; }
.product-label {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.product-name { font-family: 'Bebas Neue', sans-serif; font-size: 56px; letter-spacing: 0.04em; line-height: 0.95; margin-bottom: 14px; }

.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.stars { color: #c8a84b; font-size: 16px; letter-spacing: 2px; }
.rating-count { font-size: 13px; color: var(--gray); text-decoration: underline; cursor: pointer; }

.product-price-display { font-size: 26px; font-weight: 600; margin-bottom: 24px; }
.product-divider { border: none; border-top: 1px solid var(--gray-light); margin: 24px 0; }

.product-option-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-option-label span { font-weight: 400; color: var(--gray); text-transform: none; letter-spacing: 0; }

.product-swatches { display: flex; gap: 8px; margin-bottom: 24px; }
.product-swatch {
  width: 32px; height: 32px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.product-swatch.active, .product-swatch:hover { border-color: var(--charcoal); }

.size-selector { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.size-btn {
  min-width: 48px; height: 48px;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 4px;
}
.size-btn:hover { border-color: var(--charcoal); background: var(--off); }
.size-btn.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.size-btn.sold-out { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

.size-guide-link { font-size: 12px; color: var(--gray); text-decoration: underline; cursor: pointer; margin-bottom: 20px; display: inline-block; }
.fit-note { font-size: 13px; color: var(--gray); font-style: italic; margin-bottom: 24px; line-height: 1.5; }

.qty-selector {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--gray-mid);
  width: fit-content;
}
.qty-btn {
  width: 44px; height: 44px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: var(--charcoal);
}
.qty-btn:hover { background: var(--gray-light); }
.qty-display {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-left: 1px solid var(--gray-mid);
  border-right: 1px solid var(--gray-mid);
}

/* ===== PACK DEAL ===== */
/* ===== PACK DEAL BANNER ===== */
.pack-deal {
  position: relative;
  background: linear-gradient(135deg, #111111 0%, #4a80a8 100%);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 16px;
  overflow: hidden;
  color: #fff;
}
.pack-deal::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: rgba(224,201,122,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.pack-deal-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e0c97a;
  margin-bottom: 6px;
}
.pack-deal-main {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}
.pack-deal-main span { color: #e0c97a; }
.pack-deal-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.pack-deal-badge {
  display: inline-block;
  background: #e0c97a;
  color: #111111;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
/* Cart discount row */
.cart-pack-discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-top: 1px dashed #e0c97a;
  border-bottom: 1px dashed #e0c97a;
  margin: 6px 0;
}
.cart-pack-discount span:first-child {
  font-size: 12px;
  font-weight: 600;
  color: #27ae60;
}
.cart-pack-discount span:last-child {
  font-size: 13px;
  font-weight: 700;
  color: #27ae60;
}

.add-to-cart-btn {
  width: 100%;
  padding: 18px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--charcoal);
  cursor: pointer;
  margin-bottom: 12px;
  transition: background var(--transition);
  border-radius: 0;
}
.add-to-cart-btn:hover { background: #000000; }

.wishlist-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  text-decoration: underline;
  margin-bottom: 28px;
  cursor: pointer;
  transition: color var(--transition);
}
.wishlist-link:hover { color: var(--charcoal); }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-light);
  margin-bottom: 28px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  text-align: center;
  border-right: 1px solid var(--gray-light);
  gap: 6px;
}
.trust-item:last-child { border-right: none; }
.trust-item span:first-child { font-size: 20px; }
.trust-item span:last-child { font-size: 11px; font-weight: 500; letter-spacing: 0.04em; color: var(--gray); }

.accordion { border-top: 1px solid var(--gray-light); }
.accordion-item { border-bottom: 1px solid var(--gray-light); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: left;
  transition: color var(--transition);
}
.accordion-trigger:hover { color: var(--gray); }
.accordion-icon { font-size: 18px; transition: transform var(--transition); color: var(--gray); font-weight: 300; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding-bottom: 20px; }
.accordion-body p, .accordion-body li { font-size: 13px; color: var(--gray); line-height: 1.7; }
.accordion-body ul { padding-left: 16px; }
.accordion-body ul li { list-style: disc; margin-bottom: 4px; }

/* Complete the Look */
.complete-look {
  padding: 80px 40px;
  background: var(--off);
  border-top: 1px solid var(--gray-light);
}
.complete-look-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.complete-look-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.complete-look-header-left {}
.complete-look-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.complete-look h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.04em;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}
.complete-look-deal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #2a7a4b;
  background: rgba(42,122,75,0.08);
  border: 1px solid rgba(42,122,75,0.2);
  padding: 5px 12px;
  border-radius: 20px;
}
.complete-look-viewall {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.complete-look-viewall:hover { opacity: 0.6; }
.product-grid-3-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Reviews */
.reviews-section { padding: 80px 40px; background: var(--off); }
.reviews-inner { max-width: 1280px; margin: 0 auto; }
.reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.reviews-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 40px; letter-spacing: 0.04em; }
.reviews-avg { display: flex; align-items: center; gap: 12px; }
.reviews-avg .big-rating { font-size: 48px; font-weight: 600; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); padding: 28px; }
.review-stars { color: #c8a84b; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.review-quote { font-size: 14px; line-height: 1.7; color: var(--charcoal); margin-bottom: 20px; }
.review-author { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.review-date { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ============================================================
   LOOKBOOK PAGE
   ============================================================ */
.lookbook-hero {
  height: 60vh;
  min-height: 400px;
  background: var(--denim);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 108px;
  position: relative;
}
.lookbook-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 0.9;
  margin-bottom: 16px;
}
.lookbook-hero-content p {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

.lookbook-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lookbook-row-full { position: relative; overflow: hidden; cursor: pointer; }
.lookbook-row-full-img {
  width: 100%;
  height: 560px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.lookbook-row-full:hover .lookbook-row-full-img { transform: scale(1.03); }

.lookbook-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.lookbook-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }

.lookbook-item { position: relative; overflow: hidden; cursor: pointer; }
.lookbook-item-img {
  width: 100%;
  height: 460px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.lookbook-item-3 .lookbook-item-img { height: 360px; }
.lookbook-item:hover .lookbook-item-img { transform: scale(1.04); }

.lookbook-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lookbook-item:hover .lookbook-overlay,
.lookbook-row-full:hover .lookbook-overlay { background: rgba(0,0,0,0.38); }

.shop-look-btn {
  padding: 12px 28px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.lookbook-item:hover .shop-look-btn,
.lookbook-row-full:hover .shop-look-btn { opacity: 1; transform: translateY(0); }

.lookbook-text-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 36px 28px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: var(--white);
}
.lookbook-text-overlay h3 { font-family: 'Bebas Neue', sans-serif; font-size: 40px; letter-spacing: 0.04em; }

/* Tall image box — editorial portrait panel */
.lookbook-tall-box-section { display: flex; align-items: stretch; background: #eef5fb; }
.lookbook-tall-box { position: relative; overflow: hidden; flex: 0 0 58%; height: 700px; cursor: pointer; }
.lookbook-tall-box img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.lookbook-tall-box:hover img { transform: scale(1.04); }
.lookbook-tall-box-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background var(--transition); display: flex; align-items: flex-end; padding: 28px; }
.lookbook-tall-box:hover .lookbook-tall-box-overlay { background: rgba(0,0,0,0.25); }
.lookbook-tall-box-overlay .shop-look-btn { opacity: 0; transform: translateY(8px); transition: opacity var(--transition), transform var(--transition); }
.lookbook-tall-box:hover .lookbook-tall-box-overlay .shop-look-btn { opacity: 1; transform: translateY(0); }
.lookbook-tall-box-text { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 48px 40px; background: #eef5fb; }
.lookbook-tall-box-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px, 6vw, 100px); letter-spacing: 0.02em; color: #111111; line-height: 0.95; margin-bottom: 24px; }
.lookbook-tall-box-text p { font-size: 13px; letter-spacing: 0.10em; color: #4a6a84; line-height: 1.8; max-width: 260px; }
.lookbook-tall-box-text .btn-dark { margin-top: 36px; display: inline-block; }

.lookbook-text-overlay p { font-size: 13px; letter-spacing: 0.14em; color: rgba(255,255,255,0.75); margin-top: 4px; }

.lookbook-cta { padding: 80px 40px; text-align: center; background: var(--off); }
.lookbook-cta h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 0.04em; margin-bottom: 24px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  min-height: 60vh;
  background: var(--denim);
  display: flex;
  align-items: center;
  margin-top: 108px;
  position: relative;
  overflow: hidden;
}
.about-hero-content { padding: 0 80px; }
.about-hero-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px, 9vw, 130px); color: var(--white); letter-spacing: 0.04em; line-height: 0.9; }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px;
  align-items: center;
  gap: 64px;
}
.about-split-img { width: 100%; height: 600px; background: #2a3f65; }
.about-split-text .section-subtitle { margin-bottom: 16px; }
.about-split-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 0.04em; margin-bottom: 24px; }
.about-split-text p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }

.stats-bar { background: var(--charcoal); color: var(--white); padding: 64px 40px; }
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.12); padding: 0 24px; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 64px; letter-spacing: 0.04em; display: block; margin-bottom: 8px; }
.stat-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 500; }

.values-section { padding: 120px 40px; }
.values-inner { max-width: 1280px; margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 64px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.value-card { padding: 48px 40px; background: var(--off); border-left: 3px solid var(--charcoal); }
.value-card-icon { font-size: 32px; margin-bottom: 20px; }
.value-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

.team-section { padding: 0 40px 120px; }
.team-inner { max-width: 1280px; margin: 0 auto; }
.team-header { text-align: center; margin-bottom: 56px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 0; margin: 0 auto 20px; }
.team-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--gray); letter-spacing: 0.06em; text-transform: uppercase; }

.about-cta { background: var(--off); padding: 100px 40px; text-align: center; }
.about-cta h2 { font-family: 'Bebas Neue', sans-serif; font-size: 56px; letter-spacing: 0.04em; margin-bottom: 28px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-wrap { margin-top: 108px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px 80px;
}
.contact-left {
  padding-right: 64px;
  border-right: 1px solid var(--gray-light);
}
.contact-left .section-subtitle { margin-bottom: 12px; }
.contact-left h2 { font-family: 'Bebas Neue', sans-serif; font-size: 56px; letter-spacing: 0.04em; margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; }
.social-logo { width: 28px; height: 28px; display: block; }
.social-link-logo { width: 14px; height: 14px; display: block; flex-shrink: 0; }
.contact-detail-item h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.contact-detail-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }

.contact-social h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--gray-mid);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  color: var(--charcoal);
}
.social-link:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

.contact-right { padding-left: 64px; }
.contact-right h3 { font-size: 20px; font-weight: 600; margin-bottom: 32px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--gray-mid);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--charcoal); }
.form-group textarea { resize: vertical; min-height: 120px; }

.map-placeholder { max-width: 1280px; margin: 0 auto 80px; padding: 0 40px; }
.map-div {
  width: 100%;
  height: 320px;
  background: #2a3f65;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-div span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-header {
  border-bottom: 1px solid var(--gray-light);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.1em; color: var(--charcoal); }

.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  border-bottom: 1px solid var(--gray-light);
  background: var(--off);
  gap: 0;
}
.progress-step { display: flex; align-items: center; gap: 10px; padding: 0 24px; position: relative; }
.progress-step:not(:last-child)::after { content: '→'; position: absolute; right: -8px; color: var(--gray-mid); font-size: 16px; }
.step-num {
  width: 28px; height: 28px;
  border: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  flex-shrink: 0;
}
.progress-step.active .step-num { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.progress-step.done .step-num { background: #27ae60; color: var(--white); border-color: #27ae60; }
.step-label { font-size: 13px; font-weight: 500; color: var(--gray); letter-spacing: 0.04em; }
.progress-step.active .step-label { color: var(--charcoal); font-weight: 600; }

.checkout-body {
  display: grid;
  grid-template-columns: 60% 40%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 160px);
}
.checkout-form-col { padding: 56px 48px 80px; border-right: 1px solid var(--gray-light); }
.checkout-step { display: none; }
.checkout-step.active { display: block; }
.checkout-step h2 { font-size: 22px; font-weight: 600; margin-bottom: 32px; }

.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.checkout-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.checkout-nav-btns { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.checkout-back { font-size: 13px; color: var(--gray); text-decoration: underline; cursor: pointer; background: none; border: none; transition: color var(--transition); }
.checkout-back:hover { color: var(--charcoal); }

.shipping-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.shipping-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--gray-mid);
  cursor: pointer;
  transition: border-color var(--transition);
}
.shipping-option:hover, .shipping-option.selected { border-color: var(--charcoal); }
.shipping-option input[type="radio"] { accent-color: var(--charcoal); width: 16px; height: 16px; }
.shipping-option-info { flex: 1; }
.shipping-option-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.shipping-option-time { font-size: 12px; color: var(--gray); }
.shipping-option-price { font-size: 14px; font-weight: 600; }

.info-summary { background: var(--off); padding: 16px 20px; margin-bottom: 24px; font-size: 13px; line-height: 1.8; color: var(--gray); }

.payment-logos { display: flex; gap: 8px; margin-bottom: 24px; }
.payment-logo { background: var(--gray-light); padding: 6px 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--gray); }

/* Cash on Delivery */
.cod-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 2px solid var(--charcoal);
  background: var(--off);
  margin-bottom: 20px;
}
.cod-icon { font-size: 40px; flex-shrink: 0; }
.cod-text strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 6px; letter-spacing: 0.04em; }
.cod-text p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.cod-note {
  background: #f0f7f0;
  border-left: 4px solid #27ae60;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.cod-note p { font-size: 13px; color: var(--charcoal); line-height: 1.5; }

.checkout-summary-col { padding: 56px 40px 80px; background: var(--off); }
.checkout-summary-col h3 { font-size: 16px; font-weight: 600; margin-bottom: 28px; }

.summary-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--gray-mid); }
.summary-item { display: flex; gap: 14px; align-items: center; }
.summary-item-img { width: 56px; height: 70px; background: var(--gray-mid); flex-shrink: 0; position: relative; }
.summary-item-badge {
  position: absolute; top: -8px; right: -8px;
  width: 20px; height: 20px;
  background: var(--gray);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.summary-item-info { flex: 1; }
.summary-item-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.summary-item-variant { font-size: 12px; color: var(--gray); }
.summary-item-price { font-size: 14px; font-weight: 600; }

.summary-totals { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--gray); }
.summary-row.total { font-size: 16px; font-weight: 700; color: var(--charcoal); padding-top: 12px; border-top: 1px solid var(--gray-mid); }
.discount-row span { color: #2a7a4b; font-weight: 600; }

/* ── Checkout upsell banner ── */
.checkout-upsell {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--denim);
  color: #fff;
  padding: 16px 18px;
  margin-bottom: 20px;
  border-radius: 2px;
}
.upsell-tag {
  flex-shrink: 0;
  background: #fff;
  color: var(--denim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
.upsell-body { flex: 1; }
.upsell-body strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.upsell-body p { font-size: 12px; opacity: 0.72; margin: 0; line-height: 1.5; }
.upsell-link {
  flex-shrink: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.upsell-link:hover { opacity: 0.75; }

/* ── Checkout deal badge (discount applied) ── */
.checkout-deal-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0faf4;
  border: 1px solid #b6e2c8;
  color: #2a7a4b;
  font-size: 12px;
  font-weight: 500;
  padding: 11px 14px;
  margin-bottom: 18px;
  border-radius: 2px;
  line-height: 1.5;
}
.deal-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #2a7a4b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-form { display: flex; }
.promo-form input { flex: 1; padding: 12px 14px; border: 1px solid var(--gray-mid); border-right: none; font-size: 13px; outline: none; border-radius: 0; }
.promo-form button {
  padding: 12px 20px;
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 0;
  transition: background var(--transition);
}
.promo-form button:hover { background: #000000; }

/* ============================================================
   ACCOUNT PAGE
   ============================================================ */
.account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px 120px;
  margin-top: 108px;
  min-height: calc(100vh - 200px);
  align-items: start;
}
.account-sidebar { border-right: 1px solid var(--gray-light); padding-right: 36px; position: sticky; top: 96px; }
.account-avatar {
  width: 72px; height: 72px;
  background: var(--denim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.account-username { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.account-member { font-size: 12px; color: var(--gray); margin-bottom: 28px; }

.account-nav { display: flex; flex-direction: column; }
.account-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  border-bottom: 1px solid var(--gray-light);
  transition: color var(--transition);
}
.account-nav a:hover, .account-nav a.active { color: var(--charcoal); }
.account-nav a.active { font-weight: 600; }
.account-nav a.logout { color: #c0392b; border-bottom: none; margin-top: 8px; }

.account-content { padding-left: 48px; }
.account-content h2 { font-size: 24px; font-weight: 600; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-light); }

.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th { text-align: left; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); padding: 0 16px 14px 0; border-bottom: 1px solid var(--gray-light); }
.orders-table td { font-size: 13px; padding: 16px 16px 16px 0; border-bottom: 1px solid var(--gray-light); vertical-align: middle; }

.order-status { display: inline-block; padding: 4px 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.order-status.delivered { background: #e8f5e9; color: #27ae60; }
.order-status.processing { background: #fff8e1; color: #f39c12; }
.order-status.shipped { background: #e3f2fd; color: #1565c0; }

.order-action { font-size: 12px; color: var(--charcoal); text-decoration: underline; cursor: pointer; }

.wishlist-preview { margin-top: 48px; }
.wishlist-preview h3 { font-size: 18px; font-weight: 600; margin-bottom: 24px; }
.wishlist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-wrap {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  box-sizing: border-box;
}
.thankyou-inner { max-width: 560px; width: 100%; text-align: center; }
.thankyou-check {
  width: 80px; height: 80px;
  border: 3px solid #27ae60;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 36px;
  color: #27ae60;
}
.thankyou-inner h1 { font-family: 'Bebas Neue', sans-serif; font-size: 64px; letter-spacing: 0.04em; line-height: 0.95; margin-bottom: 12px; }
.thankyou-inner .subheading { font-size: 20px; font-weight: 400; color: var(--gray); margin-bottom: 20px; }
.thankyou-inner .order-msg { font-size: 15px; color: var(--charcoal); margin-bottom: 8px; }
.thankyou-inner .delivery-msg { font-size: 14px; color: var(--gray); margin-bottom: 36px; }

.thankyou-summary { background: var(--off); padding: 28px; margin-bottom: 32px; text-align: left; }
.thankyou-summary h3 { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.thankyou-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-light); font-size: 13px; }
.thankyou-item:last-of-type { border-bottom: none; }
.thankyou-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; padding-top: 16px; border-top: 1px solid var(--gray-mid); margin-top: 8px; }

.thankyou-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--gray); padding: 4px 0; }
.thankyou-discount-row span { color: #2a7a4b; font-weight: 600; }
.thankyou-deal-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(42,122,75,0.07);
  border: 1px solid rgba(42,122,75,0.2);
  padding: 10px 14px;
  margin: 10px 0 4px;
  font-size: 13px;
  color: #2a7a4b;
  font-weight: 500;
}
.thankyou-deal-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #2a7a4b;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.thankyou-btns { display: flex; gap: 12px; justify-content: center; }
.thankyou-footer {
  background: var(--off);
  border-top: 1px solid var(--gray-light);
  padding: 24px 40px;
  display: flex;
  justify-content: center;
  gap: 32px;
}
.thankyou-footer a { font-size: 13px; color: var(--gray); font-weight: 500; transition: color var(--transition); }
.thankyou-footer a:hover { color: var(--charcoal); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 24px; }
  .nav-left a:not(:first-child) { display: none; }
  .nav-right a { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 40px; }
  .hero-scroll { left: 40px; }

  .product-grid-4 { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .trending-grid { grid-template-columns: 1fr; }
  .trending-section { padding: 48px 24px 80px; }
  .trending-panel-main .trending-panel-img { height: 520px; }
  .editorial-cards { grid-template-columns: 1fr 1fr; padding: 0 24px; gap: 3px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .shop-layout { grid-template-columns: 240px 1fr; padding: 32px 24px; }
  .product-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .product-layout { padding: 0 24px 80px; }
  .lookbook-grid { padding: 48px 24px 80px; }
  .about-split { padding: 80px 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 24px; }
  .checkout-body { grid-template-columns: 1fr; }
  .checkout-summary-col { order: -1; padding: 32px 24px; }
  .checkout-form-col { padding: 40px 24px 60px; border-right: none; }
  .account-layout { padding: 32px 24px 80px; }
  .contact-layout { padding: 60px 24px 80px; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav: logo left, icons right — no left column needed */
  .nav-inner {
    padding: 0 20px;
    grid-template-columns: auto 1fr;
  }
  .nav-left { display: none; }
  .nav-logo { text-align: left; }
  .nav-right {
    justify-content: flex-end;
    gap: 10px;
  }
  /* Hide header cart — already in the bottom nav bar */
  .nav-right .cart-btn { display: none; }
  .mobile-menu { padding: 20px 20px 28px; }

  .hero-content { padding: 0 24px; }
  .hero-heading, .hero-heading-italic { font-size: clamp(56px, 14vw, 96px); }
  [lang="fr"] .hero-heading, [lang="fr"] .hero-heading-italic { font-size: clamp(40px, 10vw, 68px); }
  .hero-cta { flex-direction: column; align-items: flex-start; }

  .benefits-inner { grid-template-columns: 1fr; }
  .benefit-item { border-right: none; border-bottom: 1px solid var(--gray-light); }
  .benefit-item:last-child { border-bottom: none; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; padding: 0 20px; }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .featured-products { padding: 80px 0; }

  .trending-section { padding: 32px 20px 80px; }
  .trending-panel-img { height: 380px; }

  .editorial-cards { grid-template-columns: 1fr; padding: 0 20px; }
  .style-editorial { padding: 80px 0 60px; }
  .editorial-card-img { height: 400px; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); padding: 0 20px; }
  .instagram-section { padding: 80px 0; }

  .newsletter-section { padding: 80px 20px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--gray-mid); border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }

  .shop-layout { grid-template-columns: 1fr; padding: 24px 20px; }
  .shop-sidebar { position: static; border-right: none; padding-right: 0; border-bottom: 1px solid var(--gray-light); padding-bottom: 32px; margin-bottom: 32px; }
  .product-grid-3 { grid-template-columns: repeat(2, 1fr); padding-left: 0; }

  .product-layout { grid-template-columns: 1fr; padding: 0 20px 60px; }
  .product-gallery { padding-right: 0; margin-bottom: 28px; }
  .product-info { position: static; padding-left: 0; }

  /* Product detail — mobile typography */
  .product-name { font-size: clamp(28px, 8vw, 40px); line-height: 0.95; margin-bottom: 10px; }
  .product-price-display { font-size: 21px; margin-bottom: 16px; }
  .product-option-label { font-size: 13px; margin-bottom: 10px; }
  .fit-note { font-size: 13px; margin-bottom: 18px; }
  .pack-deal { padding: 14px 16px; margin-bottom: 14px; }
  .pack-deal-main { font-size: 15px; }
  .trust-item span:last-child { font-size: 12px; }
  .accordion-body p, .accordion-body li { font-size: 14px; line-height: 1.65; }

  /* General mobile typography */
  .section-title { font-size: clamp(22px, 6.5vw, 36px); }
  .section-subtitle { font-size: 12px; letter-spacing: 0.1em; }
  .hero-subtitle { font-size: 15px; line-height: 1.65; }
  .breadcrumb { padding: 20px 20px; }

  .complete-look { padding: 60px 20px; }
  .complete-look-header { flex-direction: column; align-items: flex-start; }
  .product-grid-3-related { grid-template-columns: repeat(2, 1fr); }
  .reviews-section { padding: 60px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  .lookbook-grid { padding: 32px 20px 60px; }
  .lookbook-row-2, .lookbook-row-3 { grid-template-columns: 1fr; }
  .lookbook-tall-box-section { flex-direction: column; }
  .lookbook-tall-box { flex: none; width: 100%; height: 480px; }
  .lookbook-tall-box-text { padding: 32px 24px; }
  .lookbook-tall-box-text h2 { font-size: 64px; }
  .lookbook-item-img { height: 300px; }
  .lookbook-row-full-img { height: 360px; }

  .about-hero-content { padding: 0 24px; }
  .about-split { grid-template-columns: 1fr; padding: 60px 20px; gap: 40px; }
  .about-split-img { height: 380px; }
  .values-section { padding: 80px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-section { padding: 0 20px 80px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-cta { padding: 80px 20px; }

  .contact-layout { grid-template-columns: 1fr; padding: 60px 20px 80px; }
  .contact-left { padding-right: 0; border-right: none; padding-bottom: 48px; margin-bottom: 48px; border-bottom: 1px solid var(--gray-light); }
  .contact-right { padding-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .map-placeholder { padding: 0 20px; }

  .checkout-progress { padding: 20px 16px; }
  .progress-step { padding: 0 10px; }
  .checkout-form-col { padding: 28px 20px 60px; }
  .checkout-summary-col { padding: 28px 20px; }
  .checkout-form .form-row { grid-template-columns: 1fr; }

  .account-layout { grid-template-columns: 1fr; padding: 24px 20px 60px; }
  .account-sidebar { position: static; border-right: none; padding-right: 0; border-bottom: 1px solid var(--gray-light); padding-bottom: 24px; margin-bottom: 32px; }
  .account-content { padding-left: 0; }
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); }

  /* Inputs: 16px prevents iOS Safari auto-zoom on focus */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  /* Product card info — more breathing room in 2-col grid */
  .product-card-info { padding: 14px 10px 20px; }
  .product-card-name a { font-size: 14px; }

  /* Color swatches — larger tap target */
  .color-swatch { width: 36px; height: 36px; }

  /* Page title bar */
  .page-title-bar { padding: 20px 20px; }
  .page-title-bar-inner { flex-direction: column; gap: 4px; }
  .page-title-bar h1 { font-size: 32px; }

  /* Hero CTA buttons full-width on mobile */
  .hero-cta > a, .hero-cta > button { width: 100%; text-align: center; }

  /* Checkout step headings */
  .checkout-step h2 { font-size: clamp(18px, 5vw, 28px); margin-bottom: 20px; }

  /* Thank you page */
  .thankyou-inner h1 { font-size: clamp(36px, 10vw, 64px); }
  .thankyou-inner .subheading { font-size: 16px; }
  .thankyou-summary { padding: 20px; }
  .thankyou-btns { flex-direction: column; }
  .thankyou-btns a { width: 100%; text-align: center; }
  .thankyou-footer { flex-wrap: wrap; gap: 12px; justify-content: center; }

  /* Newsletter button full-width when form stacks */
  .newsletter-form button { width: 100%; min-height: 48px; }

  .cart-drawer { width: 100%; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-heading, .hero-heading-italic { font-size: clamp(36px, 11vw, 56px); }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .product-grid-3-related { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .orders-table { font-size: 12px; }
  .orders-table th, .orders-table td { padding-right: 8px; }
  .wishlist-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }

  /* Thank you check icon — smaller on small phones */
  .thankyou-check { width: 64px; height: 64px; font-size: 28px; }
  .thankyou-footer a { font-size: 12px; }

  /* Promo form: stack on small screens */
  .promo-form { flex-direction: column; }
  .promo-form input { border-right: 1px solid var(--gray-mid); border-bottom: none; }
  .promo-form button { width: 100%; }

  /* Checkout summary stacks better */
  .checkout-summary-col h3 { font-size: 14px; }
  /* Product card image proportions */
  .product-card-img { height: 220px; }
}

@media (max-width: 380px) {
  .hero-content { padding: 0 16px; }
  .hero-heading { font-size: clamp(28px, 8vw, 36px); }
}

/* 360px — smallest phones */
@media (max-width: 360px) {
  .hero-heading, .hero-heading-italic { font-size: clamp(30px, 9vw, 44px); }
  .nav-inner { padding: 0 14px; }
  .breadcrumb { padding: 14px; }
  .product-layout { padding: 0 14px 60px; }
  .shop-layout { padding: 16px 14px; }
  .footer-grid { padding: 0 14px; }
  .product-card-name a { font-size: 13px; }
  .complete-look { padding: 48px 14px; }

  /* Checkout progress: smaller labels on tiny screens */
  .step-label { font-size: 9px; letter-spacing: 0; }
  .progress-step { padding: 0 8px; }
  .checkout-form-col, .checkout-summary-col { padding: 20px 14px; }

  /* Thank you page at tiny screens */
  .thankyou-inner h1 { font-size: clamp(28px, 9vw, 48px); }
  .thankyou-inner .subheading { font-size: 14px; }
  .thankyou-summary { padding: 16px; }
  .thankyou-wrap { padding: 32px 14px; }
}

/* ============================================================
   MOBILE-ONLY UI (≤ 768px) — added on top, desktop untouched
   ============================================================ */

/* Ensure body has room for bottom nav */
@media (max-width: 768px) {

  /* ---- Gallery filmstrip: hidden on mobile (slide carousel replaces it) ---- */
  .gallery-filmstrip { display: none; }
  .zoom-hint { display: none; }
  .mobile-gallery-slider::-webkit-scrollbar { display: none; }

  /* Dot indicators */
  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    padding: 12px 0 4px;
  }
  .gallery-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gray-mid);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
  }
  .gallery-dot.active { background: var(--charcoal); transform: scale(1.35); }

  /* ---- Bottom Navigation Bar ---- */
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 62px;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    display: flex;
    align-items: stretch;
    z-index: 950;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  }
  .mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.15s;
    min-height: 44px;
  }
  .mobile-nav-item.active { color: var(--charcoal); }
  .mobile-nav-item:active { opacity: 0.65; }
  .mobile-nav-badge {
    position: absolute;
    top: -5px; right: -7px;
    background: var(--charcoal);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    width: 15px; height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  /* ---- Shop: sidebar becomes slide-up panel on mobile ---- */
  .shop-sidebar {
    position: fixed !important;
    bottom: 62px !important;
    left: 0 !important; right: 0 !important;
    top: auto !important;
    max-height: 78vh;
    overflow-y: auto;
    background: var(--white);
    z-index: 900;
    border-radius: 16px 16px 0 0;
    border-right: none !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding: 24px !important;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.18);
    transform: translateY(110%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .shop-sidebar.mobile-panel-open { transform: translateY(0); }
  .mobile-filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 899;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .mobile-filter-backdrop.active { opacity: 1; pointer-events: all; }

  /* Close button inside sidebar panel */
  .sidebar-mobile-close {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--gray);
    margin-bottom: 20px;
    padding: 4px 0;
    min-height: 44px;
  }

  /* Filter bar above the product grid */
  /* ---- Mobile Filter + Sort bar ---- */
  .mobile-filter-bar {
    display: flex;
    align-items: stretch;
    gap: 8px;
    padding: 0 0 14px;
    margin-bottom: 8px;
  }
  .mobile-filter-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 16px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    min-height: 44px;
    border-radius: 4px;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.15s;
  }
  .mobile-filter-btn:active { opacity: 0.8; }
  .mobile-filter-btn svg { opacity: 0.85; }
  .sort-select-mobile {
    flex: 1;
    padding: 0 12px;
    border: 1.5px solid var(--gray-light);
    background: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    outline: none;
    min-height: 44px;
    color: var(--charcoal);
    border-radius: 4px;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
  }

  /* ---- Sticky Add to Cart bar ---- */
  .sticky-atc-bar {
    position: fixed;
    bottom: 62px; /* sits just above the bottom nav */
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    display: flex;
    align-items: stretch;
    gap: 8px;
    padding: 10px 16px;
    z-index: 800;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  }
  .sticky-atc-bar.visible { transform: translateY(0); }
  .sticky-atc-btn {
    flex: 1;
    border: none;
    padding: 14px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    min-height: 48px;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.15s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .sticky-atc-cart {
    background: var(--charcoal);
    color: var(--white);
  }
  .sticky-atc-buynow {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal) !important;
  }
  .sticky-atc-btn:active { opacity: 0.75; }
}

@media (max-width: 380px) {
  .sticky-atc-btn { font-size: 10px; padding: 12px 6px; }
  .sticky-atc-price { font-size: 12px; }
}

@media (max-width: 768px) {

  /* Touch target improvements */
  .size-btn { min-height: 44px; min-width: 44px; }
  .qty-btn { min-height: 44px; min-width: 44px; }
  .add-to-cart-btn { min-height: 52px; font-size: 13px; }
  .accordion-trigger { min-height: 48px; }
  .cart-item-remove { min-width: 44px; min-height: 44px; padding: 12px; margin: -12px; font-size: 20px; }
  .cart-item-qty button { width: 36px; height: 36px; }
  .nav-icon-btn { min-height: 44px; min-width: 44px; }

  /* Cart drawer full-width on mobile */
  .cart-drawer { width: 100% !important; }

  /* WhatsApp float above bottom nav */
  .whatsapp-float { bottom: calc(78px + env(safe-area-inset-bottom, 0px)) !important; }

  /* Safe area insets for all fixed bottom bars */
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
  .mobile-bottom-nav {
    height: calc(62px + env(safe-area-inset-bottom, 0px));
    padding-bottom: max(12px, env(safe-area-inset-bottom, 12px));
  }
  .shop-sidebar { bottom: calc(62px + env(safe-area-inset-bottom, 0px)) !important; }
  .sticky-atc-bar { bottom: calc(62px + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================================
   PRODUCT GALLERY — image slider
   ============================================================ */

/* Slider viewport */
.gallery-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f0f0f0;
}

/* Track: all slides side by side */
.gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Individual slide */
.gallery-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Arrow buttons */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0,0,0,0.28);
  border: none;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease;
  padding: 0;
}
.gallery-arrow:hover { background: rgba(0,0,0,0.5); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

/* Dot row — shown on mobile */
.gallery-dot-row {
  display: none;
  justify-content: center;
  gap: 7px;
  padding: 12px 0 4px;
}
.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-dot.active {
  background: var(--charcoal);
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .gallery-dot { width: 10px; height: 10px; }
  .gallery-dots { gap: 10px; }
}

/* Thumbnail strip — shown on desktop */
.gallery-thumbstrip {
  display: flex;
  gap: 8px;
  padding: 10px 0 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-thumbstrip::-webkit-scrollbar { display: none; }
.thumb-item {
  flex: 0 0 68px;
  height: 90px;
  overflow: hidden;
  cursor: pointer;
  background: #f0f0f0;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s ease, opacity 0.25s ease;
  opacity: 0.5;
}
.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.thumb-item:hover { opacity: 0.8; }
.thumb-item:hover img { transform: scale(1.06); }
.thumb-item.active {
  border-bottom-color: var(--charcoal);
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-thumbstrip { display: none; }
  .gallery-dot-row { display: flex; }
}

/* ============================================================
   PRODUCT VIDEO GALLERY
   ============================================================ */
.gallery-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: #111111;
  overflow: hidden;
}
.gallery-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-skip-btn {
  position: absolute;
  bottom: max(20px, env(safe-area-inset-bottom, 20px));
  right: 20px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background var(--transition);
  border-radius: 0;
}
.video-skip-btn:hover { background: rgba(255,255,255,0.3); }

.gallery-images-wrap {
  opacity: 0;
  display: none;
}
.gallery-images-wrap.reveal-images {
  display: block;
  animation: galleryReveal 0.6s ease forwards;
}
@keyframes galleryReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  animation: waPulse 3.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* Announcement bar */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 9px 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.has-bar .site-header { top: 36px; }
.announcement-bar a { color: #e0c97a; text-decoration: none; }
.announcement-bar-text { transition: opacity 0.28s ease, transform 0.28s ease; display: inline-block; }
.announcement-bar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.15s;
}
.announcement-bar-close:hover { color: rgba(255,255,255,0.9); }
.announcement-bar-sep { color: rgba(255,255,255,0.2); font-size: 8px; }

@media (max-width: 768px) {
  .whatsapp-float { animation: none; } /* don't animate on mobile — save battery */
  .announcement-bar { font-size: 11px; letter-spacing: 0.08em; padding: 8px 36px 8px 16px; gap: 10px; }
  .announcement-bar-sep { display: none; }
}

@media (max-width: 380px) {
  .announcement-bar { padding: 8px 12px; }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gray);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
  line-height: 1;
}
.lang-btn:hover  { background: var(--charcoal); color: var(--white); }
.lang-btn.active { background: var(--charcoal); color: var(--white); }
.lang-btn + .lang-btn { border-left: 1px solid rgba(0,0,0,0.1); }

/* ============================================================
   RTL SUPPORT (Arabic)
   ============================================================ */
[dir="rtl"] body,
body.rtl {
  font-family: 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
}
[dir="rtl"] .nav-inner       { flex-direction: row-reverse; }
[dir="rtl"] .nav-left        { flex-direction: row-reverse; }
[dir="rtl"] .nav-right       { flex-direction: row-reverse; }
[dir="rtl"] .lang-btn + .lang-btn { border-left: none; border-right: 1px solid rgba(0,0,0,0.1); }
[dir="rtl"] .breadcrumb      { direction: rtl; }
[dir="rtl"] .product-layout  { direction: rtl; }
[dir="rtl"] .product-info    { padding-left: 0; padding-right: 32px; }
[dir="rtl"] .product-gallery { padding-right: 0; padding-left: 32px; }
[dir="rtl"] .gallery-filmstrip { left: auto; right: 14px; }
[dir="rtl"] .thumb-item      { border-left: none; border-right: 3px solid transparent; }
[dir="rtl"] .thumb-item.active { border-right-color: #fff; }
[dir="rtl"] .thumb-item:hover { transform: translateX(-3px); }
[dir="rtl"] .accordion-trigger { flex-direction: row-reverse; }
[dir="rtl"] .trust-row       { direction: rtl; }
[dir="rtl"] .size-selector   { direction: rtl; }
[dir="rtl"] .product-swatches{ direction: rtl; }
[dir="rtl"] .cart-drawer     { left: 0; right: auto; transform: translateX(-100%); }
[dir="rtl"] .cart-drawer.open{ transform: translateX(0); }
[dir="rtl"] .cart-item       { direction: rtl; }
[dir="rtl"] .footer-grid     { direction: rtl; }
[dir="rtl"] .footer-brand    { text-align: right; }
[dir="rtl"] .footer-bottom   { flex-direction: row-reverse; }
[dir="rtl"] .contact-layout  { direction: rtl; }
[dir="rtl"] .contact-right   { padding-left: 0; padding-right: 64px; }
[dir="rtl"] .contact-detail-item { direction: rtl; }
[dir="rtl"] .checkout-body   { direction: rtl; }
[dir="rtl"] .checkout-form   { direction: rtl; }
[dir="rtl"] .form-group label{ text-align: right; }
[dir="rtl"] .summary-row     { flex-direction: row-reverse; }
[dir="rtl"] .sidebar-filters { direction: rtl; }
[dir="rtl"] .account-layout  { direction: rtl; }
[dir="rtl"] .account-sidebar { direction: rtl; text-align: right; }
[dir="rtl"] .account-nav-item{ flex-direction: row-reverse; }
[dir="rtl"] .mobile-menu     { direction: rtl; text-align: right; }
[dir="rtl"] .hero-content    { text-align: right; }
[dir="rtl"] .hero-cta        { flex-direction: row-reverse; }
[dir="rtl"] .benefits-bar    { direction: rtl; }
[dir="rtl"] .newsletter-form { flex-direction: row-reverse; }
[dir="rtl"] .reviews-grid    { direction: rtl; }
[dir="rtl"] .review-card     { text-align: right; }
[dir="rtl"] .product-card-info { text-align: right; }
[dir="rtl"] .section-subtitle{ letter-spacing: 0; }
[dir="rtl"] .social-links    { direction: rtl; }
[dir="rtl"] .lang-switcher   { margin-left: 0; margin-right: 12px; }

/* ============================================================
   ARABIC SPACING & TYPOGRAPHY FIXES
   ============================================================ */
[dir="rtl"] * {
  letter-spacing: 0 !important;
  word-spacing: 0.05em;
}
[dir="rtl"] body {
  font-family: 'Segoe UI', 'Tahoma', 'Arial', 'Noto Sans Arabic', sans-serif;
  line-height: 1.8;
}
[dir="rtl"] .nav-logo          { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em !important; }
[dir="rtl"] .hero-heading,
[dir="rtl"] .hero-heading-italic { font-family: 'Segoe UI', Arial, sans-serif; font-size: clamp(38px, 6vw, 80px); }
[dir="rtl"] .section-title     { font-family: 'Segoe UI', Arial, sans-serif; }
[dir="rtl"] .hero-eyebrow,
[dir="rtl"] .section-subtitle  { font-family: 'Segoe UI', Arial, sans-serif; letter-spacing: 0 !important; }

/* Nav spacing RTL */
[dir="rtl"] .nav-left  { gap: 32px; }
[dir="rtl"] .nav-right { gap: 16px; }
[dir="rtl"] .nav-inner { padding: 0 40px; }

/* Product info RTL */
[dir="rtl"] .product-option-label { text-align: right; }
[dir="rtl"] .fit-note             { text-align: right; }
[dir="rtl"] .product-name         { text-align: right; }
[dir="rtl"] .product-rating       { justify-content: flex-end; }
[dir="rtl"] .product-price-display{ text-align: right; }
[dir="rtl"] .product-badge-wrap   { text-align: right; }
[dir="rtl"] .size-guide-link      { display: block; text-align: right; }
[dir="rtl"] .wishlist-link        { text-align: right; }
[dir="rtl"] .qty-selector         { direction: rtl; justify-content: flex-end; }
[dir="rtl"] .add-to-cart-btn      { direction: rtl; }

/* Accordion RTL */
[dir="rtl"] .accordion-trigger    { text-align: right; padding-right: 0; padding-left: 0; }
[dir="rtl"] .accordion-body       { text-align: right; }
[dir="rtl"] .accordion-icon       { margin-left: 0; margin-right: auto; }

/* Breadcrumb RTL */
[dir="rtl"] .breadcrumb           { text-align: right; padding: 20px 40px; }
[dir="rtl"] .breadcrumb span,
[dir="rtl"] .breadcrumb a         { direction: rtl; }

/* Benefits bar RTL */
[dir="rtl"] .benefit-item         { text-align: right; flex-direction: row-reverse; }
[dir="rtl"] .benefit-text         { text-align: right; }

/* Editorial RTL */
[dir="rtl"] .editorial-card-info  { text-align: right; }

/* Newsletter RTL */
[dir="rtl"] .newsletter-inner     { text-align: center; }
[dir="rtl"] .newsletter-form input{ text-align: right; }

/* Cart drawer RTL fixes */
[dir="rtl"] .cart-header          { flex-direction: row-reverse; }
[dir="rtl"] .cart-subtotal        { flex-direction: row-reverse; }
[dir="rtl"] .cart-item-name,
[dir="rtl"] .cart-item-price      { text-align: right; }
[dir="rtl"] .cart-footer          { text-align: center; }

/* Contact RTL */
[dir="rtl"] .contact-left         { text-align: right; }
[dir="rtl"] .contact-detail-item h4,
[dir="rtl"] .contact-detail-item p { text-align: right; }
[dir="rtl"] .contact-form label   { text-align: right; display: block; }
[dir="rtl"] .contact-form input,
[dir="rtl"] .contact-form select,
[dir="rtl"] .contact-form textarea { text-align: right; direction: rtl; }

/* Account RTL */
[dir="rtl"] .account-nav-item span { margin-right: 0; margin-left: 12px; }
[dir="rtl"] .orders-table th,
[dir="rtl"] .orders-table td       { text-align: right; }

/* Checkout RTL */
[dir="rtl"] .checkout-progress     { direction: rtl; }
[dir="rtl"] .checkout-nav-btns     { flex-direction: row-reverse; }
[dir="rtl"] .shipping-option       { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .shipping-option-info  { text-align: right; }
[dir="rtl"] .cod-box                { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .cod-note p             { text-align: right; }
[dir="rtl"] .summary-item           { flex-direction: row-reverse; }
[dir="rtl"] .summary-item-info      { text-align: right; }
[dir="rtl"] .checkout-summary-col   { text-align: right; }
[dir="rtl"] .form-row               { direction: rtl; }

/* Footer RTL */
[dir="rtl"] .footer-col ul         { text-align: right; }
[dir="rtl"] .footer-bottom-links   { gap: 16px; }
[dir="rtl"] .footer-bottom p       { text-align: right; }
/* ============================================================
   RTL + ARABIC DESIGN — Tajawal font
   ============================================================ */

[dir="rtl"] body {
  font-family: 'Tajawal', sans-serif;
  line-height: 1.9;
  direction: rtl;
}
[dir="rtl"] * { letter-spacing: 0 !important; }
[dir="rtl"] .nav-logo,
[dir="rtl"] .footer-logo { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em !important; }

/* NAV */
[dir="rtl"] .nav-inner        { flex-direction: row-reverse; }
[dir="rtl"] .nav-left         { flex-direction: row-reverse; gap: 28px; }
[dir="rtl"] .nav-right        { flex-direction: row-reverse; gap: 14px; }
[dir="rtl"] .mobile-menu      { direction: rtl; text-align: right; }
[dir="rtl"] .lang-switcher    { margin-left: 0; margin-right: 10px; }
[dir="rtl"] .lang-btn + .lang-btn { border-left: none; border-right: 1px solid rgba(0,0,0,0.12); }

/* HERO */
[dir="rtl"] .hero-content     { text-align: right; }
[dir="rtl"] .hero-heading,
[dir="rtl"] .hero-heading-italic { font-family: 'Tajawal', sans-serif; font-weight: 700; font-size: clamp(36px, 6vw, 76px); line-height: 1.2; }
[dir="rtl"] .hero-eyebrow,
[dir="rtl"] .section-subtitle { font-family: 'Tajawal', sans-serif; }
[dir="rtl"] .hero-cta         { flex-direction: row-reverse; justify-content: flex-start; }
[dir="rtl"] .hero-scroll      { left: auto; right: 40px; }

/* BENEFITS */
[dir="rtl"] .benefits-bar     { direction: rtl; }
[dir="rtl"] .benefit-item     { flex-direction: row-reverse; text-align: right; gap: 14px; }
[dir="rtl"] .benefit-text     { text-align: right; }

/* SECTION HEADERS */
[dir="rtl"] .section-header   { flex-direction: row-reverse; }
[dir="rtl"] .section-title    { font-family: 'Tajawal', sans-serif; font-weight: 700; }
[dir="rtl"] .section-header > div { text-align: right; }

/* PRODUCT CARDS */
[dir="rtl"] .product-card-info   { text-align: right; }
[dir="rtl"] .product-card-quick  { font-family: 'Tajawal', sans-serif; }

/* TRENDING */
[dir="rtl"] .trending-label      { text-align: right; }
[dir="rtl"] .trending-label-sm   { text-align: right; }

/* EDITORIAL */
[dir="rtl"] .editorial-header    { text-align: right; }
[dir="rtl"] .editorial-card-info { text-align: right; }

/* NEWSLETTER */
[dir="rtl"] .newsletter-inner    { text-align: center; }
[dir="rtl"] .newsletter-form     { flex-direction: row-reverse; }
[dir="rtl"] .newsletter-form input { text-align: right; font-family: 'Tajawal', sans-serif; }

/* FOOTER */
[dir="rtl"] .footer-grid         { direction: rtl; }
[dir="rtl"] .footer-brand        { text-align: right; }
[dir="rtl"] .footer-col          { text-align: right; }
[dir="rtl"] .footer-col ul       { text-align: right; padding-right: 0; }
[dir="rtl"] .footer-bottom       { flex-direction: row-reverse; }
[dir="rtl"] .footer-bottom p     { text-align: right; }
[dir="rtl"] .footer-bottom-links { flex-direction: row-reverse; gap: 16px; }

/* BREADCRUMB */
[dir="rtl"] .breadcrumb          { text-align: right; direction: rtl; }

/* PRODUCT PAGE */
[dir="rtl"] .product-layout       { direction: rtl; }
[dir="rtl"] .product-info         { padding-left: 0; padding-right: 32px; text-align: right; }
[dir="rtl"] .product-gallery      { padding-right: 0; padding-left: 32px; }
[dir="rtl"] .product-name         { text-align: right; }
[dir="rtl"] .product-rating       { justify-content: flex-end; direction: rtl; }
[dir="rtl"] .product-price-display { text-align: right; }
[dir="rtl"] .product-badge-wrap   { text-align: right; }
[dir="rtl"] .product-option-label { text-align: right; }
[dir="rtl"] .product-swatches     { justify-content: flex-end; }
[dir="rtl"] .size-selector        { justify-content: flex-end; direction: rtl; }
[dir="rtl"] .size-guide-link      { text-align: right; display: block; }
[dir="rtl"] .fit-note             { text-align: right; }
[dir="rtl"] .qty-selector         { justify-content: flex-end; direction: rtl; }
[dir="rtl"] .add-to-cart-btn      { font-family: 'Tajawal', sans-serif; font-size: 15px; font-weight: 600; }
[dir="rtl"] .wishlist-link        { text-align: right; display: block; }
[dir="rtl"] .trust-row            { direction: rtl; justify-content: flex-end; }
[dir="rtl"] .trust-item           { flex-direction: row-reverse; text-align: right; }

/* GALLERY FILMSTRIP RTL */
[dir="rtl"] .gallery-filmstrip    { left: auto; right: 14px; }
[dir="rtl"] .thumb-item           { border-left: none; border-right: 3px solid transparent; }
[dir="rtl"] .thumb-item.active    { border-right-color: #fff; }
[dir="rtl"] .thumb-item:hover     { transform: translateX(-3px); }

/* ACCORDION */
[dir="rtl"] .accordion-trigger    { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .accordion-body       { text-align: right; direction: rtl; }

/* REVIEWS */
[dir="rtl"] .reviews-section      { direction: rtl; }
[dir="rtl"] .reviews-header       { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .reviews-avg          { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .reviews-grid         { direction: rtl; }
[dir="rtl"] .review-card          { text-align: right; }

/* COMPLETE THE LOOK */
[dir="rtl"] .complete-look              { text-align: right; direction: rtl; }
[dir="rtl"] .product-grid-3-related     { direction: rtl; }

/* CART DRAWER */
[dir="rtl"] .cart-drawer          { left: 0; right: auto; transform: translateX(-100%); }
[dir="rtl"] .cart-drawer.open     { transform: translateX(0); }
[dir="rtl"] .cart-header          { flex-direction: row-reverse; }
[dir="rtl"] .cart-item            { flex-direction: row-reverse; }
[dir="rtl"] .cart-item-name,
[dir="rtl"] .cart-item-price      { text-align: right; }
[dir="rtl"] .cart-item-qty        { flex-direction: row-reverse; }
[dir="rtl"] .cart-subtotal        { flex-direction: row-reverse; }
[dir="rtl"] .cart-shipping-note   { text-align: center; font-family: 'Tajawal', sans-serif; }
[dir="rtl"] .upsell-item          { flex-direction: row-reverse; }

/* SHOP PAGE */
[dir="rtl"] .shop-layout          { direction: rtl; }
[dir="rtl"] .sidebar-filters      { direction: rtl; text-align: right; }
[dir="rtl"] .filter-checkboxes label { display: flex; flex-direction: row-reverse; align-items: center; gap: 8px; }
[dir="rtl"] .color-swatches       { justify-content: flex-end; }
[dir="rtl"] .page-title-bar       { direction: rtl; }
[dir="rtl"] .sort-bar             { flex-direction: row-reverse; }

/* ABOUT */
[dir="rtl"] .about-split          { direction: rtl; }
[dir="rtl"] .about-text           { text-align: right; }
[dir="rtl"] .stats-bar            { direction: rtl; }
[dir="rtl"] .stat-item            { text-align: right; }
[dir="rtl"] .values-grid          { direction: rtl; }
[dir="rtl"] .value-card           { text-align: right; }
[dir="rtl"] .about-cta            { text-align: center; }

/* LOOKBOOK */
[dir="rtl"] .lookbook-hero        { text-align: center; }
[dir="rtl"] .lookbook-cta         { text-align: center; }

/* CONTACT */
[dir="rtl"] .contact-layout       { direction: rtl; }
[dir="rtl"] .contact-left         { text-align: right; }
[dir="rtl"] .contact-right        { padding-left: 0; padding-right: 64px; }
[dir="rtl"] .contact-detail-item  { flex-direction: row-reverse; }
[dir="rtl"] .contact-detail-item h4,
[dir="rtl"] .contact-detail-item p { text-align: right; }
[dir="rtl"] .contact-social       { text-align: right; }
[dir="rtl"] .social-links         { flex-direction: row-reverse; }
[dir="rtl"] .contact-form label   { text-align: right; display: block; font-family: 'Tajawal', sans-serif; }
[dir="rtl"] .contact-form input,
[dir="rtl"] .contact-form select,
[dir="rtl"] .contact-form textarea { text-align: right; direction: rtl; font-family: 'Tajawal', sans-serif; }
[dir="rtl"] .form-row             { direction: rtl; }

/* ACCOUNT */
[dir="rtl"] .account-layout       { direction: rtl; }
[dir="rtl"] .account-sidebar      { text-align: right; }
[dir="rtl"] .account-nav-item     { flex-direction: row-reverse; }
[dir="rtl"] .account-content      { text-align: right; }
[dir="rtl"] .orders-table         { direction: rtl; }
[dir="rtl"] .orders-table th,
[dir="rtl"] .orders-table td      { text-align: right; }

/* CHECKOUT */
[dir="rtl"] .checkout-body        { direction: rtl; }
[dir="rtl"] .checkout-form-col    { direction: rtl; }
[dir="rtl"] .checkout-form h2     { text-align: right; }
[dir="rtl"] .checkout-progress    { direction: rtl; }
[dir="rtl"] .checkout-nav-btns    { flex-direction: row-reverse; }
[dir="rtl"] .form-group           { text-align: right; }
[dir="rtl"] .form-group label     { text-align: right; display: block; font-family: 'Tajawal', sans-serif; }
[dir="rtl"] .form-group input,
[dir="rtl"] .form-group select    { text-align: right; direction: rtl; font-family: 'Tajawal', sans-serif; }
[dir="rtl"] .shipping-option      { flex-direction: row-reverse; }
[dir="rtl"] .shipping-option-info { text-align: right; }
[dir="rtl"] .cod-box              { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .cod-text             { text-align: right; }
[dir="rtl"] .cod-note p           { text-align: right; }
[dir="rtl"] .checkout-summary-col { text-align: right; direction: rtl; }
[dir="rtl"] .summary-item        { flex-direction: row-reverse; }
[dir="rtl"] .summary-item-info   { text-align: right; }
[dir="rtl"] .summary-row         { flex-direction: row-reverse; }
[dir="rtl"] .promo-form          { flex-direction: row-reverse; }
[dir="rtl"] .promo-form input    { text-align: right; direction: rtl; }

/* ============================================================
   BUY NOW BUTTON + QUICK ORDER MODAL
   ============================================================ */

/* ── Buy Now Button ── */
.buy-now-btn {
  width: 100%;
  padding: 16px;
  background: transparent;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--charcoal);
  cursor: pointer;
  margin-bottom: 12px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s, color 0.15s;
  border-radius: 0;
}
.buy-now-btn:hover { background: var(--charcoal); color: var(--white); }
.buy-now-btn:hover svg { stroke: var(--white); }

/* ── Overlay backdrop ── */
.buynow-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.buynow-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Modal panel ── */
.buynow-modal {
  background: var(--white);
  width: 100%;
  max-width: 520px;
  border-radius: 16px 16px 0 0;
  padding: 32px 24px calc(32px + env(safe-area-inset-bottom, 0px));
  position: relative;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 92vh;
  overflow-y: auto;
}
.buynow-overlay.open .buynow-modal { transform: translateY(0); }

/* drag handle hint */
.buynow-modal::before {
  content: '';
  display: block;
  width: 36px;
  height: 4px;
  background: var(--gray-light);
  border-radius: 2px;
  margin: 0 auto 24px;
}

/* ── Close button ── */
.buynow-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.buynow-close:hover { color: var(--charcoal); }

/* ── Title ── */
.buynow-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  color: var(--charcoal);
}

/* ── Product summary box ── */
.buynow-summary {
  background: var(--off);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.buynow-summary-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--charcoal);
}
.buynow-summary-meta {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}
.buynow-summary-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
}

/* ── Pack deal upsell ── */
.buynow-upsell {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #111111 0%, #4a80a8 100%);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
  color: white;
}
.buynow-upsell-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.buynow-upsell strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e0c97a;
  margin-bottom: 4px;
}
.buynow-upsell span { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.buynow-upsell b { color: #e0c97a; }

/* ── Form ── */
.buynow-form { display: flex; flex-direction: column; gap: 14px; }

.buynow-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.buynow-optional { font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.55; }

.buynow-field input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: 4px;
  font-size: 16px; /* 16px prevents iOS zoom */
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.buynow-field input:focus { border-color: var(--charcoal); }
.buynow-field input::placeholder { color: var(--gray); }

/* ── Submit / WhatsApp button ── */
.buynow-submit {
  width: 100%;
  background: #25D366;
  color: white;
  border: none;
  padding: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  min-height: 52px;
  transition: background 0.15s;
  margin-top: 4px;
  -webkit-tap-highlight-color: transparent;
}
.buynow-submit:hover { background: #1da851; }

/* Desktop: centered modal */
@media (min-width: 769px) {
  .buynow-overlay { align-items: center; }
  .buynow-modal {
    border-radius: 8px;
    transform: translateY(20px);
    padding: 40px 36px;
    max-height: 88vh;
  }
  .buynow-modal::before { display: none; }
  .buynow-overlay.open .buynow-modal { transform: translateY(0); }
}

/* Mobile: ensure ATC sticky bar doesn't overlap */
@media (max-width: 768px) {
  .buy-now-btn { font-size: 12px; padding: 14px; min-height: 48px; }
}
