/* =========================================================
   STAY STRONG — Core Stylesheet
   Palette: white (primary), black (secondary) — strict monochrome, no color hue
   Layout language matched to reference: wearandbuild.com
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root{
  --black: #000000;
  --ink: #202020;
  --white: #ffffff;
  --text: #000000;
  --text2: #505050;
  --grey: #808080;
  --grey-light: #e6e6e6;
  --grey-lighter: #f4f4f4;
  --offwhite: #f6f6f4;

  --accent: #1a1a1a;
  --accent-dark: #000000;
  --accent-light: #f0f0f0;

  --font-body: 'Jost', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Jost', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --container: 1320px;
  --nav-h: 86px;
  --radius-pill: 28px;

  --ease: cubic-bezier(.65,0,.35,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
input, textarea, select{ font-family: inherit; }

.container{
  width:100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Typography helpers ---------- */
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.5px;
  line-height: 1.12;
  margin: 0;
  color: var(--black);
}
.eyebrow{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  display:inline-block;
  margin-bottom: 12px;
}
.section-title{
  font-size: clamp(30px, 4vw, 46px);
  text-transform: uppercase;
}
.section-sub{
  font-family: var(--font-body);
  color: var(--text2);
  font-size: 15.5px;
  font-weight: 400;
  max-width: 540px;
  margin-top: 12px;
  line-height: 1.75;
}

/* ---------- Buttons (pill, Wear&Build style) ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 16px 36px;
  min-height: 56px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  border-radius: var(--radius-pill);
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn:hover{ background: var(--accent); border-color: var(--accent); color: var(--white); }
.btn-outline{
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover{ background: var(--black); color: var(--white); border-color:var(--black); }
.btn-light{
  border-color: var(--white);
  color: var(--black);
  background: var(--white);
}
.btn-light:hover{ background: var(--accent); color: var(--white); border-color:var(--accent); }
.btn-accent{
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover{ background: var(--white); color: var(--accent); }
.btn-red{ border-color:#e2231a; background:#e2231a; color: var(--white); }
.btn-red:hover{ background:#c81e1e; border-color:#c81e1e; color: var(--white); }
.btn-full{ width:100%; }

@keyframes btn-vibrate{
  0%, 62%, 100% { transform: translateX(0) rotate(0); }
  64% { transform: translateX(-3px) rotate(-1.5deg); }
  68% { transform: translateX(3px) rotate(1.5deg); }
  72% { transform: translateX(-3px) rotate(-1.5deg); }
  76% { transform: translateX(3px) rotate(1.5deg); }
  80% { transform: translateX(-2px) rotate(-1deg); }
  84% { transform: translateX(2px) rotate(1deg); }
  88% { transform: translateX(0) rotate(0); }
}
#buyNowBtn{ animation: btn-vibrate 3.2s ease-in-out infinite; }
#buyNowBtn:hover{ animation-play-state: paused; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }

/* =========================================================
   UTILITY TOP BAR
========================================================= */
.topbar{
  background: var(--black);
  border-bottom: 1px solid #222;
  font-size: 12px;
  color: rgba(255,255,255,.85);
}
.topbar-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.topbar-call{ display:flex; align-items:center; gap:8px; font-weight:500; white-space:nowrap; color: rgba(255,255,255,.85); }
.topbar-call svg{ width:13px; height:13px; }
.topbar-announce{ font-weight:600; letter-spacing:.3px; text-align:center; flex:1; color: rgba(255,255,255,.9); }
.topbar-announce span{ color: var(--white); font-weight:800; text-decoration: underline; text-underline-offset:2px; }
.topbar-lang{ white-space:nowrap; font-weight:500; color: rgba(255,255,255,.7); }
@media (max-width: 860px){
  .topbar-call{ display:none; }
  .topbar-lang{ display:none; }
}

/* =========================================================
   NAVBAR
========================================================= */
.navbar{
  position: sticky;
  top:0; left:0; right:0;
  z-index: 1000;
  height: var(--nav-h);
  display:flex;
  align-items:center;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  transition: box-shadow .3s var(--ease), height .3s var(--ease);
}
.navbar.is-scrolled{ box-shadow: 0 6px 20px rgba(0,0,0,.06); height: 72px; }

.nav-inner{
  width:100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 30px;
}
.nav-logo{
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--black);
  flex-shrink:0;
  display:flex;
  align-items:center;
  gap: 0px;
}
.nav-logo span{ color: var(--accent); }
.nav-logo-badge{
  display:flex; align-items:center; justify-content:center;
  width: 54px; height: 54px;
  flex-shrink:0;
  transition: width .3s var(--ease), height .3s var(--ease);
}
.nav-logo-badge img{ width:100%; height:100%; object-fit:contain; display:block; }
.navbar.is-scrolled .nav-logo-badge{ width:46px; height:46px; }

.nav-links{
  display:flex;
  align-items:center;
  gap: 30px;
}
.nav-links a{
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:0; height:2px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after{ width:100%; }
.nav-links a.active{ color: var(--accent); }

.nav-search{
  position:relative;
  flex:1;
  max-width: 360px;
  display:flex;
  align-items:center;
  gap: 10px;
  background: var(--offwhite);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
}
.nav-search svg{ width:16px; height:16px; color: var(--grey); flex-shrink:0; }
.nav-search input{
  border:none; background:none; outline:none; font-size:13px; width:100%; color: var(--text);
}
.nav-search input::placeholder{ color: var(--grey); }

.search-results{
  position:absolute; top:calc(100% + 12px); left:0; right:0;
  background: var(--white); border-radius:14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  max-height:440px; overflow-y:auto;
  padding:10px; z-index:500;
  display:none;
}
.search-results.show{ display:block; }
.search-result-item{
  display:flex; align-items:center; gap:14px;
  padding:9px 10px; border-radius:10px;
  text-decoration:none; color: var(--text);
}
.search-result-item:hover{ background: var(--offwhite); }
.search-result-media{
  width:44px; height:56px; flex-shrink:0; border-radius:6px;
  background: var(--offwhite) center/cover no-repeat;
}
.search-result-info{ flex:1; min-width:0; }
.search-result-name{ font-size:13px; font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.search-result-meta{ font-size:11px; color: var(--grey); margin-top:3px; letter-spacing:.3px; }
.search-result-price{ font-size:12.5px; font-weight:700; flex-shrink:0; }
.search-empty{ padding:22px 10px; text-align:center; font-size:12.5px; color: var(--text2); }

.nav-actions{ display:flex; align-items:center; gap:18px; flex-shrink:0; }
.nav-icon-btn{
  background:none; border:none; color: var(--black);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.nav-icon-btn svg{ width:21px; height:21px; }
.nav-cart-count{
  position:absolute; top:-7px; right:-8px;
  background: var(--accent); color:#fff;
  font-size:10px; font-weight:700;
  width:17px; height:17px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}

.nav-burger{
  display:none;
  width: 28px; height: 20px;
  position: relative;
  background:none; border:none;
  z-index: 1100;
}
.nav-burger span{
  position:absolute; left:0; right:0; height:2px;
  background: var(--black);
  transition: all .35s var(--ease);
}
.nav-burger span:nth-child(1){ top:0; }
.nav-burger span:nth-child(2){ top:9px; }
.nav-burger span:nth-child(3){ top:18px; }
.nav-burger.open span:nth-child(1){ top:9px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity:0; }
.nav-burger.open span:nth-child(3){ top:9px; transform: rotate(-45deg); }

/* =========================================================
   MOBILE NAV OVERLAY
========================================================= */
.mobile-nav{
  position: fixed; inset:0;
  background: var(--white);
  z-index: 1050;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap: 26px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-nav.open{ transform: translateY(0); }
.mobile-nav a{
  font-family: var(--font-display);
  font-size: 30px;
  font-weight:700;
  text-transform: uppercase;
  color: var(--black);
}
.mobile-nav a:hover{ color: var(--accent); }
.mobile-nav .mobile-social{ display:flex; gap:24px; margin-top:16px; }
.mobile-nav .mobile-social a{ font-size: 13px; letter-spacing:1px; font-family: var(--font-body); font-weight:500; text-transform:none; }

/* =========================================================
   CART DRAWER
========================================================= */
.cart-backdrop{
  position:fixed; inset:0; background:rgba(0,0,0,.5);
  z-index:1150; opacity:0; pointer-events:none;
  transition: opacity .4s var(--ease);
}
.cart-backdrop.show{ opacity:1; pointer-events:auto; }

.cart-drawer{
  position:fixed; top:0; right:0; bottom:0;
  width: 420px; max-width:100vw;
  background: var(--white);
  z-index:1200;
  display:flex; flex-direction:column;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  box-shadow: -12px 0 40px rgba(0,0,0,.15);
}
.cart-drawer.open{ transform: translateX(0); }

.cart-drawer-head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 24px 28px; border-bottom:1px solid var(--grey-light); flex-shrink:0;
}
.cart-drawer-head h3{ font-size:18px; margin:0; text-transform:uppercase; letter-spacing:.5px; }
.cart-drawer-close{
  background:none; border:none; font-size:26px; line-height:1; cursor:pointer;
  color: var(--text2); width:32px; height:32px;
  display:flex; align-items:center; justify-content:center;
}
.cart-drawer-close:hover{ color: var(--black); }

.cart-shipping-banner{
  display:flex; align-items:center; gap:10px; flex-shrink:0;
  padding:12px 28px; background: var(--offwhite);
  border-bottom:1px solid var(--grey-light);
  font-size:12px; font-weight:600; color: var(--text2);
}
.cart-shipping-banner svg{ width:17px; height:17px; color:#e2231a; flex-shrink:0; }

.cart-drawer-body{ flex:1; overflow-y:auto; padding: 6px 28px; }

.cart-item{ display:flex; gap:16px; padding:20px 0; border-bottom:1px solid var(--grey-light); }
.cart-item-media{
  width:70px; height:88px; flex-shrink:0; border-radius:8px;
  background: var(--offwhite) center/cover no-repeat;
}
.cart-item-info{ flex:1; display:flex; flex-direction:column; min-width:0; }
.cart-item-name{ font-size:13.5px; font-weight:600; color:var(--text); margin-bottom:4px; }
.cart-item-name:hover{ color: var(--accent); }
.cart-item-meta{ font-size:12px; color: var(--text2); margin-bottom:10px; }
.cart-item-row{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; gap:10px; flex-wrap:wrap; }
.cart-item-qty{ display:inline-flex; align-items:center; border:1.5px solid var(--grey-light); border-radius:var(--radius-pill); overflow:hidden; }
.cart-item-qty button{ width:26px; height:26px; background:none; border:none; font-size:15px; cursor:pointer; color:var(--text); }
.cart-item-qty button:hover{ background: var(--offwhite); }
.cart-item-qty span{ width:24px; text-align:center; font-size:12.5px; font-weight:600; }
.cart-item-price{ font-size:13px; font-weight:700; }
.cart-item-remove{
  background:none; border:none; cursor:pointer; color: var(--grey);
  font-size:11.5px; text-decoration:underline; padding:0;
}
.cart-item-remove:hover{ color:#e2231a; }

.cart-empty{ text-align:center; padding: 70px 20px; color: var(--text2); }
.cart-empty svg{ width:44px; height:44px; color: var(--grey-light); margin-bottom:16px; }
.cart-empty p{ font-size:13.5px; margin:0; }
.cart-order-ref{ margin-top:18px; font-size:12px; color: var(--text2); }
.cart-order-ref span{ font-weight:700; color: var(--black); letter-spacing:.5px; }

.cart-drawer-foot{ padding: 22px 28px 28px; border-top:1px solid var(--grey-light); flex-shrink:0; }
.cart-subtotal{ display:flex; justify-content:space-between; align-items:center; font-size:14px; font-weight:700; margin-bottom:16px; text-transform:uppercase; letter-spacing:.3px; }
.cart-continue{ display:block; text-align:center; font-size:12.5px; color: var(--text2); margin-top:14px; }
.cart-continue:hover{ color: var(--black); }

body.cart-open{ overflow:hidden; }

/* ---------- Checkout form (inside cart drawer) ---------- */
.checkout-recap{ padding: 14px 0 6px; border-bottom:1px solid var(--grey-light); margin-bottom:22px; }
.checkout-recap-item{ display:flex; justify-content:space-between; gap:12px; font-size:12.5px; color: var(--text2); padding:6px 0; }
.checkout-recap-total{ display:flex; justify-content:space-between; font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:.3px; padding:14px 0 8px; }
.checkout-form .form-group{ margin-bottom:16px; }
.checkout-error{ display:none; font-size:12.5px; color:#e2231a; background:rgba(226,35,26,.08); border-left:3px solid #e2231a; border-radius:6px; padding:12px 14px; margin-bottom:16px; }
.checkout-error.show{ display:block; }
.cart-back-btn{ background:none; border:none; width:100%; cursor:pointer; font-size:12.5px; }

@media (max-width: 480px){
  .cart-drawer{ width:100vw; }
}

body.nav-open{ overflow:hidden; }

/* =========================================================
   HERO — photo banner, bottom-left content
========================================================= */
.hero{
  position: relative;
  min-height: 560px;
  height: 78vh;
  max-height: 720px;
  display:flex;
  align-items:flex-end;
  background: var(--ink);
  overflow:hidden;
}
.hero-media{
  position:absolute; inset:0;
  background: linear-gradient(120deg, #0a0a0a 0%, #1c1c1c 55%, #2c2c2c 100%);
  background-size: cover;
  background-position: center;
  overflow:hidden;
}
/* Homepage hero now shows a rotating slideshow (.hero-slides) instead of
   one static photo, so its own background is cleared to let it show through. */
.hero .hero-media{ background: none; }

/* Homepage hero slideshow: drop images/hero-bg-1.png, hero-bg-2.png,
   hero-bg-3.png (see images/LISEZ-MOI.txt). Each slide shows for ~2s
   then the next one takes over automatically (main.js). The gradient on
   this container is the fallback shown behind/instead of missing files. */
.hero-slides{
  position:absolute; inset:0; z-index:0;
  background: linear-gradient(120deg, #0a0a0a 0%, #1c1c1c 55%, #2c2c2c 100%);
}
.hero-slide{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  opacity:0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active{ opacity:1; }

.hero-media svg.hero-icon{
  position:absolute; right:4%; bottom:-6%;
  width:42%; max-width:560px;
  color: rgba(255,255,255,.12);
}
.hero-media.has-photo svg.hero-icon{ display:none; }
.hero-media.has-photo::after{ display:none; }
.hero-media::after{
  content:'';
  position:absolute; inset:0;
  background: repeating-linear-gradient(115deg, transparent 0 120px, rgba(255,255,255,.045) 120px 122px);
}
.hero-shade{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,0) 70%);
}
.hero-content{
  position: relative;
  z-index: 2;
  padding: 0 32px 64px;
  max-width: var(--container);
  margin: 0 auto;
  width:100%;
  color: var(--white);
}
.hero-content .eyebrow{ color: var(--white); opacity:.9; }
.hero-title{
  font-size: clamp(34px, 5vw, 60px);
  color: var(--white);
  text-transform: uppercase;
  max-width: 620px;
}
.hero-text{
  max-width: 420px;
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
}
.hero-tagline{
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.hero-tagline span{ color: rgba(255,255,255,.5); margin: 0 4px; }
.hero-actions{ display:flex; gap:14px; margin-top: 26px; flex-wrap:wrap; }
.hero-dots{
  position:absolute; left:32px; bottom:24px; z-index:2;
  display:flex; gap:8px;
}
.hero-dots span{ width:7px; height:7px; border-radius:50%; background: rgba(255,255,255,.4); }
.hero-dots span.active{ background: var(--white); width:20px; border-radius:6px; }

/* =========================================================
   SECTION GENERIC
========================================================= */
.section{ padding: 86px 0; }
.section-tight{ padding: 56px 0; }
.section-dark{ background: var(--ink); color: var(--white); }
.section-dark .section-sub{ color: rgba(255,255,255,.65); }
.section-dark h2, .section-dark h3{ color: var(--white); }
.section-off{ background: var(--offwhite); }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 30px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

/* =========================================================
   MARQUEE
========================================================= */
.marquee-wrap{
  background: var(--black);
  overflow:hidden;
  padding: 16px 0;
}
.marquee{
  display:flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee span{
  font-family: var(--font-display);
  font-weight:700;
  font-size: 20px;
  text-transform:uppercase;
  color: var(--white);
  letter-spacing: 1px;
  padding: 0 26px;
  display:flex; align-items:center; gap:26px;
}
.marquee span i{ color: var(--accent); font-style:normal; }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* =========================================================
   PRODUCT GRID / CARD (sale-badge style)
========================================================= */
.products-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.products-row{
  display:grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 26px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.products-row::-webkit-scrollbar{ display:none; }

.product-card{
  position:relative; display:flex; flex-direction:column;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 16px;
  padding: 10px 10px 18px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.product-card:hover{
  transform: translateY(-7px);
  box-shadow: 0 22px 40px rgba(0,0,0,.11);
  border-color: var(--white);
}
.product-media{
  position:relative;
  overflow:hidden;
  aspect-ratio: 3/4;
  background: var(--offwhite);
  background-size: cover;
  background-position: center 20%;
  display:flex; align-items:center; justify-content:center;
  border-radius: 10px;
}
.product-media::before{
  content:'';
  position:absolute; inset:0;
  background: var(--ink);
  opacity:0;
  transition: opacity .4s var(--ease);
  z-index:1;
}
.product-card:hover .product-media::before{ opacity:1; }
.product-media.has-photo::before{ background: var(--black); }
.product-card:hover .product-media.has-photo::before{ opacity:.4; }
.product-media::after{
  content: attr(data-tag);
  position:absolute; top:14px; right:16px;
  font-size: 10.5px; letter-spacing:1.5px; text-transform:uppercase; font-weight:600;
  color: rgba(0,0,0,.28);
  z-index:2;
}
.product-media.has-photo::after{ display:none; }
.product-media-alt{
  position:absolute; inset:0;
  background-size: cover; background-position: center 20%;
  opacity:0; transition: opacity .4s var(--ease);
  z-index:1;
}
.product-card:hover .product-media-alt{ opacity:1; }
.product-media svg{
  position:relative; z-index:2;
  width: 44%;
  color: rgba(0,0,0,.65);
  transition: transform .5s var(--ease), color .4s var(--ease);
}
.product-media.has-photo svg{ display:none; }
.product-card:hover .product-media svg{ color: var(--white); transform: scale(1.06) translateY(-3px); }
.product-card:hover .product-media::after{ color: rgba(255,255,255,.3); }

.sale-badge{
  position:absolute; top:14px; left:14px; z-index:2;
  background: var(--accent); color: var(--white);
  font-size: 10.5px; font-weight:700; letter-spacing:.5px;
  padding: 6px 13px; border-radius: 30px; text-transform:uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.sale-badge.is-new{ background: var(--white); color: var(--black); border: 1.5px solid var(--black); }
.sale-badge.sold-out{ background: var(--grey); color: var(--white); }
.sale-badge.cotton{
  top:auto; bottom:14px; left:14px;
  font-size:9px; padding:4px 10px; font-weight:600;
}

/* Sold out state: dim the photo/icon and mute the price */
.product-card.sold-out .product-media{ filter: grayscale(80%); opacity:.5; }
.product-card.sold-out .product-name{ color: var(--grey); }
.product-card.sold-out .product-price{ color: var(--grey); }
.product-card.sold-out .product-price del{ display:none; }

.product-info{ padding-top: 16px; position:relative; display:flex; flex-direction:column; }
.product-info::after{
  content:'→';
  position:absolute; top:16px; right:0;
  font-size:15px; font-weight:700; color:#e2231a;
  opacity:0; transform:translateX(-8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.product-card:hover .product-info::after{ opacity:1; transform:translateX(0); }
.product-name{
  order:1;
  font-size: 15.5px; font-weight:700; color: var(--text); margin-bottom:4px;
  transition: color .3s var(--ease); padding-right:18px;
}
.product-card:hover .product-name{ color:#e2231a; }
.product-cat{
  order:2;
  font-size: 12px; letter-spacing:.2px; text-transform:none; color: var(--grey);
  margin-bottom:8px; display:block;
}
.product-price{
  order:3; display:flex; flex-direction:row-reverse; justify-content:flex-end; align-items:baseline; gap:8px;
  font-size: 18px; font-weight:800; color: var(--black);
}
.product-price del{ color: var(--grey); font-weight:500; font-size:14px; margin-right:0; }
.product-price del.price-red{ color:#e2231a; font-weight:600; }
.product-price.no-sale{ color: var(--text); }

/* =========================================================
   TOP CATEGORIES — poster cards
========================================================= */
.poster-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.poster-card{
  position:relative;
  aspect-ratio: 3/4.1;
  overflow:hidden;
  border-radius: 6px;
  display:flex; align-items:center; justify-content:center;
  isolation:isolate;
  background-size: cover;
  background-position: center;
}
.poster-card.has-photo{ border:none; }
.poster-card.has-photo::before{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
  z-index:0;
}
.poster-card.has-photo .poster-icon{ display:none; }
.poster-card.has-photo .poster-text{ color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,.4); }
.poster-card .poster-icon{
  position:absolute; width:78%; opacity:.18; color: #fff;
  transform: rotate(-8deg);
  transition: transform .6s var(--ease);
}
.poster-card:hover .poster-icon{ transform: rotate(-3deg) scale(1.06); }
.poster-card .poster-text{
  position:relative; z-index:1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px,2.6vw,30px);
  text-transform:uppercase;
  line-height:1.05;
  text-align:center;
  color: var(--white);
  letter-spacing: .5px;
  padding: 0 14px;
}
.poster-card-label{
  margin-top: 14px; text-align:center;
  font-size: 12.5px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
}
.poster-1{ background-image: linear-gradient(150deg,#0a0a0a,#2a2a2a); }
.poster-2{ background-color: var(--white); border: 1px solid var(--grey-light); }
.poster-2 .poster-text{ color: var(--black); }
.poster-2 .poster-icon{ color: #000; opacity:.14; }
.poster-3{ background-image: linear-gradient(150deg,#1a1a1a,#3a3a3a); }
.poster-4{ background-color: var(--white); border: 1px solid var(--grey-light); }
.poster-4 .poster-text{ color: var(--black); }
.poster-4 .poster-icon{ color: #000; opacity:.14; }

@media (max-width:1080px){ .poster-grid{ grid-template-columns: repeat(2,1fr); } }

/* =========================================================
   BRAND DNA SPLIT (photo left, story + features right)
========================================================= */
.dna-split{
  display:grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 50px;
  align-items:center;
  max-width: 1000px;
  margin: 0 auto;
}
.dna-photo{
  position:relative;
  max-width: 420px;
  border-radius: 8px;
  overflow:hidden;
}
/* Real photo shows at its own natural size/ratio (no cropping) once found.
   Hidden until then so no broken-image icon flashes on load. */
.dna-photo-img{ display:none; width:100%; height:auto; }
.dna-photo-img.has-photo{ display:block; }
.dna-photo-img.has-photo ~ .dna-photo-placeholder{ display:none; }
.dna-photo-placeholder{
  aspect-ratio: 4/4.6;
  background: linear-gradient(150deg,#0a0a0a,#1e1e1e,#303030);
  display:flex; align-items:center; justify-content:center;
}
.dna-photo-icon{ width:34%; color: rgba(255,255,255,.16); }
.dna-content{ max-width: 520px; }
.dna-title{
  font-size: clamp(32px,4vw,50px);
  text-transform: uppercase;
  margin-top: 4px;
}
.text-red{ color: #e2231a; }
.dna-text{ margin-top:18px; font-size:15px; color: var(--text2); line-height:1.8; }
.dna-features{ margin-top: 30px; border-top: 1px solid var(--grey-light); }
.dna-feature{
  display:flex; align-items:flex-start; gap:16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-light);
}
.dna-feature-icon{ color: var(--black); font-size:14px; margin-top:3px; flex-shrink:0; }
.dna-feature-title{ font-weight:700; font-size:15px; }
.dna-feature-sub{ font-size:13px; color: var(--grey); margin-top:3px; }
.dna-content .btn{ margin-top:32px; }

@media (max-width:1080px){
  .dna-split{ grid-template-columns: 1fr; gap:40px; }
  .dna-photo{ max-width:none; }
  .dna-photo-placeholder{ aspect-ratio: 16/9; }
}

/* =========================================================
   GENDER SPLIT SECTION (photo left, products right)
========================================================= */
.gender-section{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items:flex-start;
}
.gender-portrait{
  position:relative;
  max-width: 420px;
  border-radius: 6px;
  overflow:hidden;
}
/* Real photo shows at its own natural size/ratio (no cropping) once found. */
.gender-portrait-img{ display:none; width:100%; height:auto; }
.gender-portrait-img.has-photo{ display:block; }
.gender-portrait-img.has-photo ~ .gender-portrait-placeholder{ display:none; }
.gender-portrait-placeholder{
  min-height: 520px;
  background: linear-gradient(150deg,#0a0a0a,#1e1e1e,#303030);
  display:flex; align-items:center; justify-content:center;
}
.gender-portrait .hero-shade{ position:absolute; inset:0; }
.gender-portrait-content{ position:absolute; left:0; right:0; bottom:0; z-index:2; padding: 30px; color:var(--white); }
.gender-portrait-content .btn{ margin-top:14px; }
.gender-products{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width:1080px){
  .gender-section{ grid-template-columns:1fr; }
  .gender-portrait-placeholder{ min-height:340px; }
  .gender-products{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width:640px){
  .gender-products{ grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   FEATURE STRIP
========================================================= */
.features{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 26px;
}
.feature{
  text-align:center; padding: 28px 20px;
  background: var(--offwhite); border-radius: 6px;
}
.feature svg{ width:30px; height:30px; margin-bottom:16px; color: var(--accent); }
.feature h4{ font-size:14px; letter-spacing:.2px; margin-bottom:8px; text-transform:uppercase; }
.feature p{ font-size: 13px; color: var(--text2); line-height:1.6; margin:0; }

/* =========================================================
   TESTIMONIALS
========================================================= */
.testi-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.testi-card{
  background: var(--offwhite);
  border-radius: 8px;
  padding: 34px 30px;
  display:flex; flex-direction:column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testi-card:hover{ transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.07); }
.testi-stars{ display:flex; gap:4px; color: var(--accent); margin-bottom:18px; }
.testi-stars svg{ width:15px; height:15px; }
.testi-text{ font-size:14.5px; line-height:1.8; color: var(--text2); flex:1; }
.testi-foot{ display:flex; align-items:center; gap:14px; margin-top:24px; }
.testi-avatar{
  width:44px; height:44px; border-radius:50%;
  background: var(--accent); color: var(--white);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:15px; font-weight:700;
  flex-shrink:0;
}
.testi-name{ font-size:13.5px; font-weight:700; }
.testi-city{ font-size:12px; color: var(--grey); margin-top:2px; }
.testi-badge{
  margin-left:auto; font-size:10px; letter-spacing:.5px; text-transform:uppercase;
  color: var(--accent); border:1px solid var(--accent); border-radius:20px;
  padding: 4px 10px; white-space:nowrap;
}

@media (max-width: 1080px){ .testi-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .testi-grid{ grid-template-columns: 1fr; } }

/* =========================================================
   INSTAGRAM STRIP
========================================================= */
.insta-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap: 4px; align-items:start; }
.insta-grid a{ position:relative; overflow:hidden; display:block; }
/* Real photo shows at its own natural size/ratio (no crop, no letterbox gap). */
.insta-img{ display:none; width:100%; height:auto; }
.insta-img.has-photo{ display:block; }
.insta-img.has-photo ~ .insta-placeholder{ display:none; }
.insta-placeholder{
  aspect-ratio:1/1; display:flex;
  align-items:center; justify-content:center;
}
.insta-grid a:nth-child(1) .insta-placeholder{ background-color: var(--ink); }
.insta-grid a:nth-child(2) .insta-placeholder{ background-color: var(--offwhite); }
.insta-grid a:nth-child(3) .insta-placeholder{ background-color: var(--accent); }
.insta-grid a:nth-child(4) .insta-placeholder{ background-color: var(--ink); }
.insta-grid a:nth-child(5) .insta-placeholder{ background-color: var(--offwhite); }
.insta-placeholder svg{ width:32%; color: rgba(255,255,255,.55); transition: transform .5s var(--ease); }
.insta-grid a:nth-child(2) .insta-placeholder svg,
.insta-grid a:nth-child(5) .insta-placeholder svg{ color: rgba(0,0,0,.3); }
.insta-grid a:hover .insta-placeholder svg{ transform: scale(1.15) rotate(-5deg); }
.insta-grid a::after{
  content:'@STAYSTRONG';
  position:absolute; inset:0;
  background: rgba(0,0,0,.7);
  color:#fff; font-size:11px; font-weight:700; letter-spacing:1px;
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition: opacity .3s var(--ease);
}
.insta-grid a:hover::after{ opacity:1; }

/* =========================================================
   LIFESTYLE BANNER (single wide photo, collection page)
========================================================= */
.lifestyle-banner{
  position:relative; display:block; overflow:hidden;
  aspect-ratio: 1920 / 720;
  background: linear-gradient(135deg, var(--ink) 0%, var(--black) 100%);
  background-size: cover; background-position: center;
}
.lifestyle-shade{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 45%, transparent 75%);
}
.lifestyle-content{
  position:absolute; left:0; bottom:0; top:0; z-index:2;
  display:flex; flex-direction:column; justify-content:center;
  padding: 34px 6vw;
}
.lifestyle-content h3{
  color:var(--white); font-size: clamp(22px,2.6vw,34px); text-transform:uppercase;
  max-width: 420px;
}
.lifestyle-content p{
  color: rgba(255,255,255,.75); font-size:14px; margin-top:12px; max-width:380px;
}
.lifestyle-content .btn{ margin-top:22px; display:inline-flex; }
@media (max-width: 640px){
  .lifestyle-banner{ aspect-ratio:auto; height:auto; min-height:420px; }
  .lifestyle-shade{ background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.3) 55%, transparent 100%); }
  .lifestyle-content{ justify-content:flex-end; padding: 30px 24px; }
  .lifestyle-content h3, .lifestyle-content p{ max-width:none; }
}

/* =========================================================
   NEWSLETTER
========================================================= */
.newsletter{ background: var(--ink); color: var(--white); padding: 64px 0; text-align:center; }
.newsletter h2{ font-size: clamp(26px,3.4vw,38px); color:var(--white); text-transform:uppercase; }
.newsletter p{ margin-top:10px; opacity:.92; font-size:14.5px; }
.newsletter-form{
  margin-top: 26px; display:flex; justify-content:center; gap: 10px;
  max-width: 460px; margin-left:auto; margin-right:auto;
}
.newsletter-form input{
  flex:1; border:none; background: rgba(255,255,255,.15);
  padding: 15px 20px; color: var(--white); font-size:14px; outline:none;
  border-radius: var(--radius-pill);
}
.newsletter-form input::placeholder{ color: rgba(255,255,255,.8); }
.newsletter-form button{
  border:2px solid var(--white); background: var(--white); color: var(--accent);
  padding: 0 26px; font-size:13px; font-weight:700; text-transform:capitalize;
  border-radius: var(--radius-pill);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.newsletter-form button:hover{ background: transparent; color: var(--white); }

/* =========================================================
   FOOTER
========================================================= */
.footer{ background: var(--black); color: rgba(255,255,255,.75); padding-top: 80px; }
.footer-grid{
  display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo{ font-family: var(--font-display); font-size: 24px; font-weight:800; color: var(--white); }
.footer-logo span{ color: #e2231a; }
.footer-about{ margin-top:14px; font-size:13px; line-height:1.8; max-width:280px; color: rgba(255,255,255,.6); }
.footer-social{ display:flex; gap:12px; margin-top:22px; }
.footer-social a{
  width:36px; height:36px; border:1px solid rgba(255,255,255,.25); color: var(--white); border-radius:50%;
  display:flex; align-items:center; justify-content:center; transition: all .3s var(--ease);
}
.footer-social a:hover{ background: #e2231a; border-color: #e2231a; }
.footer-social svg{ width:15px; height:15px; }
.footer h5{
  font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color: #e2231a;
  margin-bottom:20px; font-weight:700;
}
.footer ul li{ margin-bottom:12px; }
.footer ul li a{ font-size:13.5px; color: rgba(255,255,255,.8); transition: color .25s; }
.footer ul li a:hover{ color: #e2231a; }
.footer-contact li{ font-size:13.5px; line-height:1.7; color: rgba(255,255,255,.8); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding: 24px 0; font-size:12px; color: rgba(255,255,255,.5); flex-wrap:wrap; gap:10px;
}
.footer-bottom .payments{ display:flex; gap:10px; align-items:center; }
.footer-bottom .payments span{
  border:1px solid rgba(255,255,255,.15); border-radius:4px; padding:4px 8px; font-size:11px;
}

/* =========================================================
   PAGE HEADER (sub pages)
========================================================= */
.page-header{
  position:relative;
  min-height: 360px;
  height: 46vh;
  max-height: 520px;
  display:flex; align-items:flex-end; justify-content:center;
  padding-bottom: 46px;
  overflow:hidden; text-align:center; color: var(--white);
}
.page-header-content{ position:relative; z-index:2; }
.page-header .eyebrow{ color:var(--white); opacity:.85; }
.page-header h1{ font-size: clamp(32px,5vw,56px); color: var(--white); text-transform:uppercase; }
.breadcrumb{ margin-top: 14px; font-size:12px; letter-spacing:1px; text-transform:uppercase; color: rgba(255,255,255,.7); }
.breadcrumb a:hover{ color: var(--white); }

/* =========================================================
   COLLECTION PAGE — Tabs / Filters
========================================================= */
.collection-toolbar{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:20px; padding: 38px 0 34px; border-bottom: 1px solid var(--grey-light);
}
.gender-tabs{ display:flex; gap: 10px; }
.gender-tabs button{
  background: var(--offwhite); border:none; border-radius: var(--radius-pill);
  padding: 12px 28px; font-family: var(--font-display); font-weight:700;
  font-size: 13.5px; text-transform:uppercase; letter-spacing:.5px; color: var(--black);
  transition: all .3s var(--ease);
}
.gender-tabs button.active{ background: var(--black); color: var(--white); }

.cat-filters{ display:flex; gap:10px; flex-wrap:wrap; }
.cat-filters button{
  background:none; border:1px solid var(--grey-light);
  padding: 10px 20px; font-size: 12px; font-weight:600; letter-spacing:.3px; text-transform:capitalize;
  border-radius: var(--radius-pill); transition: all .3s var(--ease);
}
.cat-filters button.active, .cat-filters button:hover{ background: var(--accent); border-color:var(--accent); color: var(--white); }

.results-count{ font-size:13px; color:var(--grey); }
.collection-grid-wrap{ padding: 44px 0 100px; }
.empty-state{ display:none; text-align:center; padding: 90px 20px; }
.empty-state h3{ font-size: 24px; margin-bottom:10px; text-transform:uppercase; }
.empty-state p{ color: var(--grey); }
.empty-state.show{ display:block; }

/* =========================================================
   ABOUT / NOTRE HISTOIRE
========================================================= */
.about-intro{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.about-panel{
  position:relative; height: 480px; border-radius:8px; overflow:hidden;
  color: var(--white); display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding: 50px;
}
.about-panel .hero-media{ background-image: linear-gradient(150deg,#0a0a0a,#1c1c1c,#2c2c2c); }
.about-panel .hero-media.has-photo::before{
  content:'';
  position:absolute; inset:0;
  background: rgba(0,0,0,.45);
}
.about-panel blockquote{
  position:relative; z-index:1; font-family: var(--font-display); font-weight:700;
  font-size: clamp(22px,2.4vw,30px); text-transform:uppercase; line-height:1.35; margin:0;
}
.about-panel cite{
  position:relative; z-index:1; display:block; margin-top:20px;
  font-style:normal; font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color: rgba(255,255,255,.7);
}
.about-stats{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 50px; padding-top: 44px; border-top: 1px solid var(--grey-light); }
.about-stats .num{ font-family: var(--font-display); font-weight:800; font-size: clamp(32px,3.6vw,48px); color: var(--accent); }
.about-stats .label{ font-size:12px; letter-spacing:1px; text-transform:uppercase; color: var(--grey); margin-top:6px; }

.values-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card{ background: var(--offwhite); border-radius:8px; padding: 44px 34px; transition: background .3s var(--ease), color .3s var(--ease); }
.value-card:hover{ background: var(--ink); color: var(--white); }
.value-card .num{ font-family: var(--font-display); font-weight:800; font-size:36px; color: var(--accent); }
.value-card:hover .num{ color: var(--white); }
.value-card h3{ font-size: 19px; margin: 16px 0 12px; text-transform:uppercase; }
.value-card:hover h3{ color: var(--white); }
.value-card p{ font-size: 13.5px; line-height:1.8; color: inherit; opacity:.78; margin:0; }

.timeline{ position:relative; max-width: 740px; margin: 0 auto; }
.timeline::before{ content:''; position:absolute; left:110px; top:0; bottom:0; width:1px; background: var(--grey-light); }
.timeline-item{ display:grid; grid-template-columns: 90px 36px 1fr; gap: 0 22px; padding-bottom: 50px; position:relative; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-year{ font-family: var(--font-display); font-weight:800; font-size:20px; text-align:right; padding-top:2px; }
.timeline-dot{ width:13px; height:13px; border-radius:50%; background: var(--accent); justify-self:center; margin-top:6px; position:relative; z-index:2; box-shadow: 0 0 0 6px var(--white); }
.timeline-text h4{ font-size:15px; letter-spacing:.3px; margin-bottom:8px; font-weight:700; text-transform:uppercase; }
.timeline-text p{ font-size:13.5px; color: var(--text2); line-height:1.7; margin:0; }

.quote-block{ text-align:center; max-width: 800px; margin: 0 auto; padding: 0 20px; }
.quote-block p{ font-family: var(--font-display); font-weight:700; font-size: clamp(22px,3.2vw,36px); line-height:1.35; text-transform:none; }
.quote-block span{ display:block; margin-top:22px; font-size:13px; letter-spacing:1.5px; text-transform:uppercase; color: rgba(255,255,255,.6); font-family: var(--font-body); }

/* =========================================================
   CONTACT PAGE
========================================================= */
.contact-wrap{ display:grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-info-item{ display:flex; gap:18px; padding: 24px 0; border-bottom:1px solid var(--grey-light); }
.contact-info-item:first-child{ padding-top:0; }
.contact-info-item svg{ width:22px; height:22px; color: var(--accent); flex-shrink:0; }
.contact-info-item h4{ font-size:12.5px; letter-spacing:1px; text-transform:uppercase; font-weight:700; margin-bottom:6px; }
.contact-info-item p{ font-size:13.5px; color: var(--text2); line-height:1.7; margin:0; }
.contact-info-item a{ display:block; }
.contact-info-item a:hover{ color: var(--accent); }

/* =========================================================
   LIVRAISON PAGE
========================================================= */
.city-grid{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:44px; }
.city-chip{
  padding: 11px 22px;
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  color: var(--text2);
  transition: all .25s var(--ease);
}
.city-chip:hover{ border-color: var(--black); color: var(--black); }
.city-chip-main{ background: var(--black); border-color: var(--black); color: var(--white); font-weight:600; }
.city-chip-main:hover{ background:#e2231a; border-color:#e2231a; color: var(--white); }

.features.feature-grid-3{ grid-template-columns: repeat(3,1fr); }
@media (max-width: 780px){
  .features.feature-grid-3{ grid-template-columns: 1fr; }
  .delivery-callout{ padding: 36px 28px; text-align:center; justify-content:center; }
  .delivery-callout p{ max-width:none; }
}

.delivery-callout{
  margin-top: 64px;
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  padding: 46px 44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.delivery-callout h3{ font-size:23px; margin:0 0 10px; }
.delivery-callout p{ color: rgba(255,255,255,.65); font-size:13.5px; line-height:1.75; max-width:480px; margin:0; }
.delivery-callout .btn{ flex-shrink:0; }

.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.form-group{ margin-bottom: 20px; }
.form-group label{ display:block; font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom: 9px; color: var(--text2); }
.form-group input, .form-group textarea, .form-group select{
  width:100%; border:1px solid var(--grey-light); border-radius: 10px;
  padding: 13px 16px; font-size:14px; background: var(--offwhite); outline:none;
  transition: border-color .3s var(--ease);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus{ border-color: var(--accent); }
.form-group textarea{ resize: vertical; min-height: 120px; }
.form-note{ font-size:12px; color: var(--grey); margin-top:14px; }
.form-success{ display:none; margin-top:16px; padding: 15px 18px; background: var(--accent-light); border-left:3px solid var(--accent); border-radius:6px; font-size:13px; color: var(--accent-dark); }
.form-success.show{ display:block; }
.form-error{ display:none; margin-top:16px; padding: 15px 18px; background: rgba(226,35,26,.08); border-left:3px solid #e2231a; border-radius:6px; font-size:13px; color:#e2231a; }
.form-error.show{ display:block; }

.faq-item{ border-bottom: 1px solid var(--grey-light); }
.faq-question{ width:100%; background:none; border:none; text-align:left; padding: 24px 0; display:flex; justify-content:space-between; align-items:center; font-size: 15.5px; font-weight:600; }
.faq-question .icon{ font-size: 20px; transition: transform .3s var(--ease); flex-shrink:0; margin-left:20px; color: var(--accent); }
.faq-item.open .faq-question .icon{ transform: rotate(45deg); }
.faq-answer{ max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-answer p{ padding-bottom: 24px; font-size:13.5px; color: var(--text2); line-height:1.8; max-width:600px; margin:0; }

/* =========================================================
   SCROLL REVEAL
========================================================= */
.reveal{ opacity:0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform: translateY(0); }

/* =========================================================
   SALES NOTIFICATION TOAST
========================================================= */
.sales-toast{
  position: fixed; left: 24px; bottom: 24px; z-index: 950;
  background: var(--white); color: var(--black);
  border: 1px solid var(--grey-light); border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
  padding: 16px 34px 16px 16px; display:flex; gap:14px; align-items:flex-start;
  max-width: 310px; transform: translateY(16px) scale(.97); opacity:0; pointer-events:none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.sales-toast.show{ transform: translateY(0) scale(1); opacity:1; pointer-events:auto; }
.sales-toast-icon{ width:38px; height:38px; border-radius:50%; flex-shrink:0; background: var(--accent); color: var(--white); display:flex; align-items:center; justify-content:center; }
.sales-toast-icon svg{ width:17px; height:17px; }
.sales-toast-title{ font-size:13px; font-weight:700; margin:0 0 4px; line-height:1.4; }
.sales-toast-title b{ color: var(--accent); }
.sales-toast-meta{ font-size:11.5px; color: var(--grey); margin:0; }
.sales-toast-close{ position:absolute; top:8px; right:10px; background:none; border:none; font-size:18px; line-height:1; color: var(--grey-light); }
.sales-toast-close:hover{ color: var(--black); }
@media (max-width:640px){ .sales-toast{ left:14px; right:14px; bottom:14px; max-width:none; } }

/* =========================================================
   BACK TO TOP
========================================================= */
.to-top{
  position:fixed; right:24px; bottom:24px; z-index: 900;
  width:46px; height:46px; border-radius:50%;
  background: var(--black); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transform: translateY(10px);
  transition: all .35s var(--ease);
}
.to-top.show{ opacity:1; pointer-events:auto; transform: translateY(0); }
.to-top svg{ width:18px; height:18px; }
.to-top:hover{ background: var(--accent); }

/* =========================================================
   WHATSAPP FLOAT
========================================================= */
.whatsapp-float{
  position:fixed; left:24px; bottom:24px; z-index: 900;
  width:52px; height:52px; border-radius:50%;
  background:#25D366; color:var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 18px rgba(37,211,102,.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whatsapp-float svg{ width:26px; height:26px; }
.whatsapp-float:hover{ transform: scale(1.08); box-shadow: 0 8px 22px rgba(37,211,102,.6); }
.whatsapp-float::before{
  content:''; position:absolute; inset:0; border-radius:50%;
  background:#25D366; opacity:.55;
  animation: whatsapp-pulse 2.2s ease-out infinite;
  z-index:-1;
}
@keyframes whatsapp-pulse{
  0%{ transform: scale(1); opacity:.55; }
  100%{ transform: scale(1.9); opacity:0; }
}

/* =========================================================
   PRODUCT DETAIL PAGE
========================================================= */
.pd-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:flex-start;
}
.pd-gallery{ display:flex; flex-direction:row-reverse; gap:16px; }
.pd-media{ position:relative; border-radius:8px; overflow:hidden; flex:1; min-width:0; }
.pd-media.sold-out .pd-img,
.pd-media.sold-out .pd-placeholder{ filter: grayscale(80%); opacity:.55; }
.pd-media .sale-badge.sold-out{ position:absolute; top:14px; left:14px; z-index:3; }
.pd-media::after{
  content:'🔍';
  position:absolute; bottom:14px; right:14px; z-index:3;
  width:42px; height:42px; border-radius:50%;
  background: rgba(255,255,255,.92);
  display:flex; align-items:center; justify-content:center;
  font-size:16px;
  opacity:0; transform:scale(.85);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  pointer-events:none;
}
.pd-media:hover::after{ opacity:1; transform:scale(1); }
.pd-media:has(.pd-img.zoomed)::after{ opacity:0; }
.pd-img{ display:none; width:100%; height:auto; cursor:zoom-in; transition: transform .15s ease-out; }
.pd-img.has-photo{ display:block; }
.pd-img.has-photo ~ .pd-placeholder{ display:none; }
.pd-placeholder{
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--offwhite) 0%, var(--grey-lighter) 100%);
  display:flex; align-items:center; justify-content:center;
}
.pd-icon{ width:44%; color: rgba(0,0,0,.65); }
.pd-thumbs{ display:none; flex-direction:column; gap:12px; flex-shrink:0; }
.pd-thumbs.show{ display:flex; }
.pd-thumb{
  width:76px; aspect-ratio:3/4; flex-shrink:0; padding:0;
  border-radius:6px; overflow:hidden;
  border:1.5px solid var(--grey-light); background:var(--offwhite);
  transition: border-color .2s var(--ease);
}
.pd-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.pd-thumb:hover{ border-color:var(--grey); }
.pd-thumb.active{ border-color:var(--black); }
.pd-swatches{ display:flex; gap:12px; flex-wrap:wrap; }
.pd-swatch{
  width:34px; height:34px; border-radius:50%; flex-shrink:0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
  border:2px solid var(--white); outline: 1px solid transparent;
  transition: outline-color .2s var(--ease);
  display:block;
}
.pd-swatch:hover{ outline-color: var(--grey-light); }
.pd-swatch.active{ outline: 2px solid var(--black); }
.pd-swatch.sold-out{ opacity:.35; }
.pd-offer-title{
  font-family: var(--font-display); font-size:18px; font-weight:800;
  text-transform:uppercase; letter-spacing:.3px; color:var(--black);
  margin-bottom:14px;
}
.pd-countdown{ display:flex; align-items:flex-start; gap:14px; }
.pd-count-unit{ text-align:center; min-width:38px; }
.pd-count-unit span{
  display:block; font-family: var(--font-display);
  font-size:30px; font-weight:800; color:var(--black); line-height:1;
}
.pd-count-unit small{
  display:block; margin-top:6px; font-size:10.5px; color:var(--grey);
  text-transform:uppercase; letter-spacing:.3px;
}
.pd-count-sep{ font-size:26px; font-weight:800; color:var(--black); line-height:1; }
.pd-title{ font-size: clamp(28px,3.4vw,42px); text-transform:uppercase; margin-top:10px; }
.pd-sku{ font-size:12px; color: var(--grey); letter-spacing:.5px; margin-top:8px; }
.pd-sku span{ font-weight:600; color: var(--text2); }
.pd-price{ margin-top:16px; font-size:24px; font-weight:800; color:var(--black); }
.pd-price del{ color: var(--grey); font-weight:400; font-size:17px; margin-right:10px; }
.pd-price del.price-red{ color:#ff0000; font-weight:800; }
.pd-desc{ margin-top:20px; font-size:14.5px; line-height:1.8; color:var(--text2); max-width:480px; }
.pd-block{ margin-top:28px; }
.pd-label{ font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--text2); margin-bottom:12px; }
.pd-sizes{ display:flex; gap:10px; }
.pd-size{
  width:48px; height:48px; border-radius:50%; border:1.5px solid var(--grey-light);
  background:var(--white); font-weight:700; font-size:13px; transition: all .25s var(--ease);
}
.pd-size:hover{ border-color:var(--black); }
.pd-size.active{ background:var(--black); border-color:var(--black); color:var(--white); }
.pd-size:disabled, .pd-qty button:disabled{ opacity:.35; cursor:not-allowed; border-color:var(--grey-light); background:var(--white); color:var(--text); }
.pd-qty{ display:inline-flex; align-items:center; gap:0; border:1.5px solid var(--grey-light); border-radius:var(--radius-pill); overflow:hidden; }
.pd-qty button{ width:44px; height:44px; background:none; border:none; font-size:18px; font-weight:700; }
.pd-qty button:hover{ background:var(--offwhite); }
.pd-qty span{ min-width:36px; text-align:center; font-weight:700; font-size:14px; }
.pd-wrap .btn{ margin-top:30px; }
.pd-wrap #addToCartBtn{ margin-top:12px; }
.pd-wrap .form-success{ margin-top:14px; }
.pd-perks{ margin-top:30px; display:flex; flex-direction:column; gap:14px; padding-top:26px; border-top:1px solid var(--grey-light); }
.pd-perk{ display:flex; align-items:center; gap:12px; font-size:13.5px; color:var(--text2); }
.pd-perk svg{ width:20px; height:20px; color:var(--accent); flex-shrink:0; }

/* =========================================================
   PRODUCT IMAGE ZOOM (in place — click to zoom, move mouse to look around)
========================================================= */
.pd-img.zoomed{ transform: scale(2.2); cursor: zoom-out; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1080px){
  .products-grid{ grid-template-columns: repeat(3,1fr); }
  .features{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 50px 30px; }
  .insta-grid{ grid-template-columns: repeat(3,1fr); }
  .about-intro{ grid-template-columns: 1fr; gap: 36px; }
  .about-panel{ height: 360px; }
  .contact-wrap{ grid-template-columns: 1fr; gap: 50px; }
  .values-grid{ grid-template-columns: 1fr; }
  .nav-search{ display:none; }
}

@media (max-width: 860px){
  .nav-links{ display:none; }
  .nav-burger{ display:block; }
  .section{ padding: 64px 0; }
  .timeline::before{ left: 56px; }
  .timeline-item{ grid-template-columns: 46px 28px 1fr; }
  .timeline-year{ font-size:15px; }
}

@media (max-width: 640px){
  .products-grid{ grid-template-columns: repeat(2,1fr); gap: 16px; }
  .products-row{
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-columns: unset;
    overflow-x: visible;
    gap: 16px;
  }
  .gender-products{ grid-template-columns: repeat(2,1fr); gap:16px; }
  .features{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 36px; }
  .insta-grid{ grid-template-columns: repeat(2,1fr); }
  .form-row{ grid-template-columns: 1fr; }
  .newsletter-form{ flex-direction:column; max-width: 320px; }
  .collection-toolbar{ flex-direction:column; align-items:flex-start; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .pd-wrap{ grid-template-columns: 1fr; gap: 28px; }
  .pd-sizes{ flex-wrap:wrap; }
  .pd-gallery{ flex-direction:column; }
  .pd-thumbs{ flex-direction:row; }
}

@media (max-width: 480px){
  .nav-inner{ padding: 0 16px; gap: 14px; }
  .nav-logo{ font-size: 19px; }
  .nav-logo-badge{ width: 40px; height: 40px; }
  .nav-actions{ gap: 12px; }
  .topbar-inner{ padding: 9px 16px; }
  .topbar-announce{ font-size: 11px; }
  .container{ padding: 0 18px; }
}

/* =========================================================
   ADMIN DASHBOARD
========================================================= */
.admin-body{ background: var(--offwhite); min-height:100vh; }

.admin-gate{
  position:fixed; inset:0; background: var(--black);
  display:flex; align-items:center; justify-content:center;
  z-index:10; padding:20px;
}
.admin-gate-form{
  background: var(--white); border-radius:16px; padding:44px 40px;
  width:100%; max-width:360px; text-align:center;
}
.admin-gate-logo{ font-family:var(--font-display); font-weight:800; font-size:20px; margin-bottom:22px; }
.admin-gate-logo span{ color:#e2231a; }
.admin-gate-form h1{ font-size:20px; margin-bottom:24px; text-transform:uppercase; letter-spacing:.5px; }
.admin-gate-form input{
  width:100%; border:1px solid var(--grey-light); border-radius:10px;
  padding:13px 16px; font-size:14px; background: var(--offwhite); outline:none;
  margin-bottom:16px; text-align:center;
}
.admin-gate-error{ display:none; color:#e2231a; font-size:12.5px; margin-top:14px; }
.admin-gate-error.show{ display:block; }

.admin-dashboard{ display:none; max-width:1320px; margin:0 auto; padding:40px 24px 80px; }
.admin-dashboard.show{ display:block; }
.admin-header{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:16px; margin-bottom:32px;
}
.admin-logo{ font-family:var(--font-display); font-weight:800; font-size:20px; }
.admin-logo span:first-of-type{ color:#e2231a; }
.admin-tag{ color: var(--text2); font-weight:500; font-size:13px; text-transform:uppercase; letter-spacing:.5px; margin-left:8px; font-family:var(--font-body); }
.admin-header-actions{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.admin-month-select{
  border:1px solid var(--grey-light); border-radius:var(--radius-pill);
  padding:10px 18px; font-size:13px; background: var(--white); outline:none;
}
.admin-header-actions .btn{ padding:12px 24px; min-height:auto; font-size:13px; }

.admin-stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:32px; }
.admin-stat-card{ background: var(--white); border-radius:14px; padding:24px 26px; }
.admin-stat-label{ display:block; font-size:11.5px; text-transform:uppercase; letter-spacing:.8px; color: var(--text2); margin-bottom:10px; }
.admin-stat-value{ display:block; font-size:28px; font-weight:800; }

.admin-loading, .admin-error{ text-align:center; padding:30px; font-size:13.5px; color: var(--text2); display:none; }
.admin-error{ color:#e2231a; }
.admin-loading.show, .admin-error.show{ display:block; }

.admin-table-wrap{ background: var(--white); border-radius:14px; overflow-x:auto; }
.admin-table{ width:100%; border-collapse:collapse; font-size:13px; }
.admin-table th{
  text-align:left; padding:16px 18px; font-size:11px; text-transform:uppercase;
  letter-spacing:.6px; color: var(--text2); border-bottom:1px solid var(--grey-light);
  white-space:nowrap;
}
.admin-table td{ padding:16px 18px; border-bottom:1px solid var(--grey-lighter); vertical-align:top; }
.admin-order-items{ max-width:260px; white-space:pre-wrap; font-size:12px; color: var(--text2); }
.admin-empty{ text-align:center; color: var(--text2); padding:40px; }
.admin-status-select{
  border:1px solid var(--grey-light); border-radius:8px; padding:7px 10px;
  font-size:12.5px; background: var(--offwhite); outline:none;
}

@media (max-width: 900px){
  .admin-stats{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 560px){
  .admin-stats{ grid-template-columns:1fr; }
  .admin-header{ flex-direction:column; align-items:flex-start; }
}

/* =========================================================
   AI CHAT WIDGET
========================================================= */
.ai-chat-toggle{
  position:fixed; right:24px; bottom:90px; z-index:900;
  width:52px; height:52px; border-radius:50%;
  background: var(--black); color:var(--white); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.ai-chat-toggle:hover{ transform: scale(1.08); background:#e2231a; }
.ai-chat-toggle svg{ width:23px; height:23px; }

.ai-chat-panel{
  position:fixed; right:24px; bottom:152px; z-index:950;
  width:360px; max-width:calc(100vw - 48px);
  height:480px; max-height:calc(100vh - 200px);
  background: var(--white); border-radius:16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  display:flex; flex-direction:column; overflow:hidden;
  transform: translateY(16px) scale(.96); opacity:0; pointer-events:none;
  transition: all .3s var(--ease);
}
.ai-chat-panel.open{ transform: translateY(0) scale(1); opacity:1; pointer-events:auto; }

.ai-chat-head{
  background: var(--black); color:var(--white); flex-shrink:0;
  padding:16px 20px; display:flex; align-items:center; justify-content:space-between;
}
.ai-chat-title{ display:flex; align-items:center; gap:9px; font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.4px; }
.ai-chat-dot{ width:7px; height:7px; border-radius:50%; background:#25D366; flex-shrink:0; }
.ai-chat-close{ background:none; border:none; color:var(--white); font-size:22px; cursor:pointer; line-height:1; padding:0; }

.ai-chat-messages{ flex:1; overflow-y:auto; padding:18px 16px; display:flex; flex-direction:column; gap:12px; }
.ai-chat-msg{ max-width:85%; padding:10px 14px; border-radius:14px; font-size:13px; line-height:1.55; white-space:pre-wrap; }
.ai-chat-msg-bot{ background: var(--offwhite); color:var(--text); align-self:flex-start; border-bottom-left-radius:4px; }
.ai-chat-msg-user{ background: var(--black); color:var(--white); align-self:flex-end; border-bottom-right-radius:4px; }
.ai-chat-msg-typing{ display:flex; gap:4px; align-items:center; padding:12px 14px; }
.ai-chat-msg-typing span{ width:6px; height:6px; border-radius:50%; background: var(--grey); animation: ai-chat-bounce 1.2s infinite; }
.ai-chat-msg-typing span:nth-child(2){ animation-delay:.15s; }
.ai-chat-msg-typing span:nth-child(3){ animation-delay:.3s; }
@keyframes ai-chat-bounce{ 0%,60%,100%{ transform:translateY(0); opacity:.4; } 30%{ transform:translateY(-4px); opacity:1; } }

.ai-chat-form{ display:flex; gap:8px; padding:14px; border-top:1px solid var(--grey-light); flex-shrink:0; }
.ai-chat-form input{
  flex:1; border:1px solid var(--grey-light); border-radius:var(--radius-pill);
  padding:10px 16px; font-size:13px; outline:none; background: var(--offwhite);
}
.ai-chat-form input:focus{ border-color: var(--accent); }
.ai-chat-form button{
  width:38px; height:38px; border-radius:50%; background: var(--black);
  border:none; color:var(--white); display:flex; align-items:center; justify-content:center;
  cursor:pointer; flex-shrink:0; transition: background .2s var(--ease);
}
.ai-chat-form button svg{ width:16px; height:16px; }
.ai-chat-form button:hover{ background:#e2231a; }
.ai-chat-form button:disabled{ opacity:.5; cursor:not-allowed; }

@media (max-width: 480px){
  .ai-chat-panel{ right:12px; left:12px; width:auto; bottom:140px; }
  .ai-chat-toggle{ right:16px; }
}
