/* ═══════════════════════════════════════════
   AFFRANCHIS — style.css
   Palette: Black #080808 | Pink #d4478a | White #ffffff
═══════════════════════════════════════════ */

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

:root {
  --bg:       #080808;
  --bg2:      #111111;
  --bg3:      #1c1c1c;
  --white:    #ffffff;
  --pink:     #d4478a;
  --pink-l:   #e470a5;
  --gray:     #777777;
  --border:   rgba(255,255,255,0.07);
  --ff-head:  'Bebas Neue', sans-serif;
  --ff-body:  'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff-body);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared Buttons ── */
.btn-commander {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  font-family: var(--ff-head);
  font-size: 18px;
  letter-spacing: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-commander:hover { background: var(--pink-l); transform: translateY(-2px); }
.btn-commander.full { width: 100%; text-align: center; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: background 0.4s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
}
.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin-right: auto;
}
.nav-links a {
  font-family: var(--ff-head);
  font-size: 17px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.btn-nav-cta {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 10px 26px;
  font-family: var(--ff-head);
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.btn-nav-cta:hover { background: var(--pink-l); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  background: rgba(8,8,8,0.98);
  border-top: 1px solid var(--border);
  padding: 28px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a {
  font-family: var(--ff-head);
  font-size: 28px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--pink); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.25) 0%,
    rgba(8,8,8,0.55) 60%,
    rgba(8,8,8,0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-eyebrow {
  font-family: var(--ff-head);
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--pink);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(76px, 17vw, 200px);
  line-height: 0.88;
  letter-spacing: 8px;
  color: var(--white);
  text-shadow: 0 0 80px rgba(212,71,138,0.25);
}

.hero-tagline {
  font-family: var(--ff-body);
  font-size: clamp(15px, 2.5vw, 22px);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  letter-spacing: 5px;
  margin-top: 16px;
}

.btn-hero {
  display: inline-block;
  margin-top: 36px;
  padding: 16px 52px;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 18px;
  letter-spacing: 5px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn-hero:hover {
  background: var(--white);
  color: var(--bg);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
}
.hero-scroll-indicator span {
  font-family: var(--ff-head);
  font-size: 11px;
  letter-spacing: 4px;
}
.scroll-bar {
  width: 1px;
  height: 48px;
  background: var(--white);
  animation: scrollPulse 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ══════════════════════════════════════════
   TICKER
══════════════════════════════════════════ */
.ticker-wrapper {
  background: var(--pink);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 22s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--ff-head);
  font-size: 17px;
  letter-spacing: 3px;
  color: var(--white);
  margin: 0 18px;
}
.ticker-track .star { opacity: 0.7; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
.section { padding: 120px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-family: var(--ff-head);
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--pink);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 4px;
  line-height: 1;
}

/* ══════════════════════════════════════════
   COLLECTION
══════════════════════════════════════════ */
.collection { background: var(--bg2); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--bg3);
  cursor: pointer;
  transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-8px); }

.product-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.product-img-front,
.product-img-back {
  position: absolute;
  inset: 0;
  transition: opacity 0.45s ease;
}
.product-img-back { opacity: 0; }
.product-img-wrap:hover .product-img-front { opacity: 0; }
.product-img-wrap:hover .product-img-back  { opacity: 1; }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-img-wrap:hover .product-overlay { opacity: 1; }

.btn-add {
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 11px 28px;
  font-family: var(--ff-head);
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-add:hover { background: var(--pink); color: var(--white); }

.product-info {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-badge {
  font-family: var(--ff-head);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--pink);
}
.product-name {
  font-family: var(--ff-head);
  font-size: 20px;
  letter-spacing: 1px;
}
.product-price {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ══════════════════════════════════════════
   CATALOGUE
══════════════════════════════════════════ */
.catalogue-section {
  background: var(--bg2);
}
.catalogue-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.catalogue-img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.catalogue-cta {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.catalogue-cta p {
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}
.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  font-family: var(--ff-head);
  font-size: 20px;
  letter-spacing: 2px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.btn-primary:hover {
  background: var(--pink-l);
  transform: translateY(-2px);
}
@media (max-width: 720px) {
  .catalogue-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .btn-primary {
    align-self: stretch;
    text-align: center;
  }
}

/* ══════════════════════════════════════════
   MANIFESTO
══════════════════════════════════════════ */
.manifesto {
  padding: 100px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.manifesto-quote {
  font-family: var(--ff-body);
  font-size: clamp(18px, 3.5vw, 42px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  max-width: 820px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   LOOKBOOK
══════════════════════════════════════════ */
.lookbook { background: var(--bg2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 8px;
}
.gallery-item { overflow: hidden; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { transition: transform 0.55s ease; }
.gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 768px) {
  .gallery-item.focus-right img { object-position: 80% 18%; }
}

/* ══════════════════════════════════════════
   VIDEO REEL
══════════════════════════════════════════ */
.video-reel {
  position: relative;
  height: 75vh;
  min-height: 400px;
  overflow: hidden;
}
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.52);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.reel-title {
  font-family: var(--ff-head);
  font-size: clamp(52px, 11vw, 130px);
  letter-spacing: 8px;
  color: var(--white);
}
.reel-sub {
  font-style: italic;
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 5px;
  color: rgba(255,255,255,0.72);
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-body {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
}

/* ══════════════════════════════════════════
   SOCIAL STRIP
══════════════════════════════════════════ */
.social-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.social-strip-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.strip-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}
.strip-handle {
  font-family: var(--ff-head);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
}
.social-strip-icons { display: flex; gap: 16px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.65);
  transition: border-color 0.2s, color 0.2s;
}
.social-icon:hover { border-color: var(--pink); color: var(--pink); }
.social-icon svg { width: 20px; height: 20px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 72px 0 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}
.footer-tagline {
  font-style: italic;
  color: var(--gray);
  font-size: 14px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-family: var(--ff-head);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--pink);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 15px;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 24px;
  text-align: center;
}
.footer-bottom p { color: var(--gray); font-size: 12px; letter-spacing: 1px; }
.footer-credit { margin-top: 6px; opacity: 0.45; }
.footer-credit span { color: var(--pink); opacity: 1; }

/* ══════════════════════════════════════════
   FLOATING ORDER CTA
══════════════════════════════════════════ */
.float-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  font-family: var(--ff-head);
  font-size: 15px;
  letter-spacing: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 28px rgba(212,71,138,0.45);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.float-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.float-cta:hover {
  background: var(--pink-l);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(212,71,138,0.55);
}
.float-cta-arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s;
}
.float-cta:hover .float-cta-arrow { transform: translateY(3px); }

/* ══════════════════════════════════════════
   ORDER MODAL
══════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px;
  position: relative;
  animation: modalSlideIn 0.28s ease;
  scrollbar-width: none;
}
.modal::-webkit-scrollbar { display: none; }

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.modal-close:hover { opacity: 1; }

/* Steps indicator */
.modal-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}
.step-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 14px;
  color: var(--gray);
  flex-shrink: 0;
  transition: all 0.3s;
}
.step-dot.active { background: var(--pink); border-color: var(--pink); color: var(--white); }
.step-dot.done   { border-color: var(--pink); color: var(--pink); background: var(--bg3); }
.step-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 72px;
  margin: 0 6px;
}

/* Modal panes */
.modal-pane.hidden { display: none; }

.modal-heading {
  font-family: var(--ff-head);
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.modal-sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}

/* Form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: var(--ff-head);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}
.form-group input {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 13px 15px;
  font-family: var(--ff-body);
  font-size: 15px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus { border-color: var(--pink); }
.form-group input::placeholder { color: var(--gray); }

.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 13px 40px 13px 15px;
  font-family: var(--ff-body);
  font-size: 15px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  transition: border-color 0.2s;
}
.select-wrap select:focus { border-color: var(--pink); }
.select-wrap select option { background: var(--bg3); color: var(--white); }
.select-arrow {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gray);
  font-size: 14px;
}

/* Sizes */
.size-row { display: flex; gap: 8px; }
.size-btn {
  flex: 1;
  padding: 11px 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.7);
  font-family: var(--ff-head);
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 0;
}
.size-btn:hover  { border-color: var(--pink); color: var(--white); }
.size-btn.active { background: var(--pink); border-color: var(--pink); color: var(--white); }

/* Quantity */
.qty-row {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
}
.qty-btn {
  width: 42px; height: 42px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  border-radius: 0;
}
.qty-btn:hover { background: var(--pink); border-color: var(--pink); }
.qty-val {
  width: 54px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  font-weight: 600;
}

.order-total-line {
  font-family: var(--ff-head);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--pink);
  margin: 8px 0 20px;
}

/* Navigation buttons */
.btn-next {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--pink);
  color: var(--white);
  border: none;
  font-family: var(--ff-head);
  font-size: 19px;
  letter-spacing: 3px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s;
}
.btn-next:hover { background: var(--pink-l); }
.btn-next.half { flex: 1; }

.btn-back {
  padding: 13px 22px;
  background: none;
  border: 1px solid var(--border);
  color: var(--gray);
  font-family: var(--ff-head);
  font-size: 17px;
  cursor: pointer;
  border-radius: 0;
  transition: border-color 0.2s, color 0.2s;
}
.btn-back:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }

.modal-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

/* Payment methods */
.pay-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.pay-method-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: var(--bg3);
  border: 2px solid var(--border);
  color: var(--white);
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
}
.pay-method-btn:hover { border-color: rgba(212,71,138,0.5); }
.pay-method-btn.active {
  border-color: var(--pink);
  background: rgba(212,71,138,0.08);
}
.pm-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-dot.orange { background: #ff6600; }
.pm-dot.mtn    { background: #ffcc00; }
.pm-dot.visa   { font-size: 18px; background: none; }
.pm-label { flex: 1; }
.pm-check { font-size: 16px; color: var(--pink); opacity: 0; transition: opacity 0.2s; }
.pay-method-btn.active .pm-check { opacity: 1; }
.pm-check::after { content: '✓'; }

.pay-detail {
  background: rgba(212,71,138,0.06);
  border: 1px solid rgba(212,71,138,0.25);
  padding: 22px 20px;
  margin-bottom: 8px;
}
.pay-detail.hidden { display: none; }
.pay-detail p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
  line-height: 1.6;
}
.pay-number {
  font-family: var(--ff-head);
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--pink);
  text-align: center;
  margin: 16px 0;
}
.pay-ref { font-size: 13px !important; color: rgba(255,255,255,0.55) !important; }
.pay-note { font-size: 12px !important; color: var(--gray) !important; }

.btn-confirm {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  background: var(--pink);
  color: var(--white);
  border: none;
  font-family: var(--ff-head);
  font-size: 18px;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s;
}
.btn-confirm:hover { background: var(--pink-l); }

/* Success */
.success-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 16px 0 8px;
}
.success-check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 8px;
}
.success-title {
  font-family: var(--ff-head);
  font-size: 30px;
  letter-spacing: 2px;
}
.success-msg {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.success-detail {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   NEW DROP + CLASSIQUES
══════════════════════════════════════════ */
.new-drop-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.new-drop-meta { display: flex; flex-direction: column; gap: 10px; }
.new-drop-tag {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 13px;
  letter-spacing: 4px;
  padding: 5px 14px;
  width: fit-content;
}
.new-drop-title {
  font-family: var(--ff-head);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 3px;
  line-height: 1;
}
.new-drop-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.7;
}

.products-grid-ls {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 48px;
}
.product-card.product-featured .product-img-wrap { aspect-ratio: 4 / 5; }

.product-badge.new {
  color: var(--pink);
  font-size: 12px;
  letter-spacing: 4px;
}

.classiques-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 32px;
}
.classiques-divider::before,
.classiques-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.classiques-divider span {
  font-family: var(--ff-head);
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--gray);
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   INLINE ORDER FORM SECTION
══════════════════════════════════════════ */
.order-form-section {
  background: var(--bg2);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.order-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.order-form-left {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-form-title {
  font-family: var(--ff-head);
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 4px;
  color: var(--white);
}

.order-form-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 260px;
}

/* Form fields */
.inline-order-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.iof-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.iof-group label {
  font-family: var(--ff-head);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}

.iof-group input {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-bottom-color: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 15px 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.iof-group input:focus {
  border-color: var(--pink);
  background: rgba(212,71,138,0.04);
}
.iof-group input::placeholder { color: rgba(255,255,255,0.25); }

.iof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.iof-half { margin-bottom: 0; }

.size-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.size-line .select-wrap {
  flex: 1;
}
.size-line .select-wrap select {
  padding: 11px 36px 11px 12px;
  font-size: 14px;
}
.size-line .qty-row { flex-shrink: 0; }
.size-line .qty-btn {
  width: 36px;
  height: 38px;
  font-size: 18px;
}
.size-line .qty-val {
  width: 40px;
  height: 38px;
  font-size: 15px;
}
.btn-remove-line {
  width: 36px;
  height: 38px;
  background: none;
  border: 1px solid var(--border);
  color: var(--gray);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.btn-remove-line:hover { border-color: #e05; color: #e05; }

.btn-add-size {
  background: none;
  border: 1px dashed var(--border);
  color: var(--gray);
  width: 100%;
  padding: 10px;
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  margin-top: 2px;
}
.btn-add-size:hover { border-color: var(--pink); color: var(--white); }

.iof-total-line {
  font-family: var(--ff-head);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--pink);
  margin: 4px 0 24px;
}

.btn-iof-submit {
  width: 100%;
  padding: 18px;
  background: var(--pink);
  color: var(--white);
  border: none;
  font-family: var(--ff-head);
  font-size: 20px;
  letter-spacing: 3px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s, transform 0.2s;
}
.btn-iof-submit:hover {
  background: var(--pink-l);
  transform: translateY(-2px);
}

.iof-success {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 20px;
  background: rgba(212,71,138,0.08);
  border: 1px solid rgba(212,71,138,0.3);
}
.iof-success.hidden { display: none; }
.iof-success-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.iof-success strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.iof-success p {
  font-size: 13px;
  color: var(--gray);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { aspect-ratio: 16/9; max-height: 420px; order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .order-form-grid { grid-template-columns: 1fr; gap: 48px; }
  .order-form-left { position: static; }
  .order-form-title { font-size: clamp(56px, 12vw, 80px); }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  .section { padding: 80px 0; }
  .order-form-section { padding: 80px 0; }
  .iof-row { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item.tall { grid-row: span 1; }

  .social-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; }

  .modal { padding: 28px 20px; }
}

@media (max-width: 520px) {
  .products-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .hero-title { font-size: clamp(52px, 14vw, 68px); letter-spacing: 2px; }
}
