/* ── Launch Gate ── */
.launch-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.lg-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0010 50%, #0a0a0a 100%);
}
.lg-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255,0,110,0.18) 0%, transparent 60%);
}
.lg-content {
  position: relative; z-index: 1;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; padding: 40px 24px;
  max-width: 560px; width: 100%;
}
.lg-logo img { height: 64px; width: auto; }
.lg-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); opacity: 0.9;
}
.lg-title {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: clamp(56px, 12vw, 96px);
  line-height: 0.95; color: #fff; letter-spacing: 0.04em;
}
.lg-title span { color: var(--accent); }

.lg-timer {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 20px 36px;
}
.lg-unit {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-width: 64px;
}
.lg-unit span {
  font-family: 'Bebas Neue', monospace;
  font-size: 52px; line-height: 1; color: #fff; letter-spacing: 0.04em;
}
.lg-unit label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.lg-sep {
  font-size: 36px; color: var(--accent);
  font-family: 'Bebas Neue', sans-serif;
  margin-bottom: 18px; opacity: 0.7;
}
.lg-sub {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.6; max-width: 380px;
}
.lg-form {
  display: flex; gap: 0; width: 100%; max-width: 420px;
  border-radius: 100px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}
.lg-input {
  flex: 1; background: none; border: none; outline: none;
  padding: 14px 20px; font-size: 14px; color: #fff;
}
.lg-input::placeholder { color: rgba(255,255,255,0.35); }
.lg-btn {
  background: var(--accent); color: #fff; border: none;
  padding: 14px 24px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
  border-radius: 0 100px 100px 0;
}
.lg-btn:hover { background: var(--accent2); }
.lg-note {
  font-size: 11px; color: rgba(255,255,255,0.3);
}
.lg-socials {
  display: flex; gap: 20px;
}
.lg-socials a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.lg-socials a:hover { color: var(--accent); }

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

:root {
  --bg: #ffffff;
  --bg2: #f6f6f6;
  --bg3: #efefef;
  --surface: #ffffff;
  --surface2: #f2f2f2;
  --border: rgba(0,0,0,0.08);
  --border2: rgba(0,0,0,0.14);
  --text: #0a0a0a;
  --text-muted: rgba(10,10,10,0.52);
  --text-dim: rgba(10,10,10,0.28);
  --accent: #FF006E;
  --accent2: #ff3388;
  --radius: 16px;
  --radius-sm: 10px;
  --nav-h: 64px;
  --banner-h: 33px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Google font for display headlines */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex: 1;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
}
.logo-hex-svg {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(255,0,110,0.18));
}

.logo-vbar {
  width: 1.5px;
  height: 32px;
  background: var(--border2);
  margin: 0 14px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 28px;
  letter-spacing: 0.12em;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}

.lw-pink {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  padding: 8px 14px;
  border-radius: 100px;
}
.nav-links a:hover {
  color: var(--accent);
  background: rgba(255,0,110,0.06);
}

.btn-shop {
  background: var(--text);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-shop:hover { background: var(--accent); transform: translateY(-1px); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 8px;
  border-radius: 8px;
  display: flex;
  transition: color 0.2s, background 0.2s;
}
.icon-btn:hover { color: var(--text); background: var(--surface); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-muted);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:first-child { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 20px;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  animation: slideDown 0.3s var(--ease);
}
@keyframes slideDown { from { opacity:0; transform:translateY(-8px); } }
.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu.open { display: flex; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + var(--banner-h) + 40px) 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(255,0,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 15% 80%, rgba(255,0,110,0.04) 0%, transparent 55%);
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  flex: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--accent);
}
.hero-title {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.br-d { display: block; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255,0,110,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255,0,110,0.38);
  background: var(--accent2);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-ghost:hover {
  background: var(--bg3);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-2px);
}
.btn-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.btn-link:hover { color: var(--accent2); }

/* ── Hero Two-Path Options ── */
.hero-options {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 36px;
  border: 1.5px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
}
.hero-option {
  flex: 1;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-option--order {
  border-right: 1.5px solid var(--border2);
  background: rgba(255,0,110,0.03);
}
.hero-option--loop {
  background: var(--bg2);
}
.hero-option-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.opt-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.opt-tag.loop { color: #94d2bd; }
.opt-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,0,110,0.1);
  border: 1px solid rgba(255,0,110,0.25);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 100px;
}
.opt-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.opt-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.opt-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.opt-original {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: line-through;
}
.opt-save {
  font-size: 11px;
  font-weight: 700;
  color: #52b788;
  background: rgba(82,183,136,0.12);
  border: 1px solid rgba(82,183,136,0.25);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.opt-btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 13px;
}

.hero-option-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  position: relative;
}
.hero-option-divider::before {
  content: '';
  position: absolute;
  top: 20px; bottom: 20px;
  width: 1px;
  background: var(--border);
}
.hero-option-divider span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg);
  padding: 4px 2px;
  position: relative;
  z-index: 1;
}

.hero-nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-nl-form input {
  background: var(--bg);
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 13px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.hero-nl-form input::placeholder { color: var(--text-dim); }
.hero-nl-form input:focus { border-color: var(--accent); }
.hero-nl-fine {
  font-size: 10.5px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── Hero Floating Product Cards ── */
.hero-float-group {
  position: relative;
  flex: 0 0 auto;
  width: 420px;
  height: 500px;
  margin-left: auto;
  z-index: 2;
}
.float-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
  background: var(--bg3);
}
.float-card:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
  z-index: 10;
}
.float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.float-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 100px;
}

/* Card positions — staggered scatter layout */
.float-card--1 {
  width: 185px;
  height: 220px;
  top: 20px;
  left: 20px;
  transform: rotate(-4deg);
  z-index: 4;
  animation: floatA 5s ease-in-out infinite;
}
.float-card--2 {
  width: 200px;
  height: 240px;
  top: 0;
  right: 10px;
  transform: rotate(3deg);
  z-index: 3;
  animation: floatB 6s ease-in-out infinite;
}
.float-card--3 {
  width: 175px;
  height: 210px;
  bottom: 60px;
  left: 0;
  transform: rotate(2deg);
  z-index: 2;
  animation: floatC 5.5s ease-in-out infinite;
}
.float-card--4 {
  width: 190px;
  height: 228px;
  bottom: 20px;
  right: 30px;
  transform: rotate(-3deg);
  z-index: 1;
  animation: floatD 6.5s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: rotate(-4deg) translateY(0px); }
  50%       { transform: rotate(-4deg) translateY(-14px); }
}
@keyframes floatB {
  0%, 100% { transform: rotate(3deg) translateY(0px); }
  50%       { transform: rotate(3deg) translateY(-18px); }
}
@keyframes floatC {
  0%, 100% { transform: rotate(2deg) translateY(0px); }
  50%       { transform: rotate(2deg) translateY(-10px); }
}
@keyframes floatD {
  0%, 100% { transform: rotate(-3deg) translateY(0px); }
  50%       { transform: rotate(-3deg) translateY(-16px); }
}

/* ── Hero DTF Background Image ── */
.hero-dtf-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-dtf-bg img {
  width: 100%;
  height: 115%;
  margin-top: -7%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}
.hero-dtf-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #ffffff 0%,
    #ffffff 26%,
    rgba(255,255,255,0.75) 44%,
    rgba(255,255,255,0.1) 65%,
    transparent 80%);
}

/* ── Hero Watch Illustration ── */
.hero-watch {
  position: relative;
  flex: 0 0 auto;
  width: 280px;
  height: 380px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.watch-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,0,110,0.15);
  animation: spin 20s linear infinite;
}
.watch-ring::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  top: -10px; left: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255,0,110,0.06);
}
@keyframes spin { to { transform: rotate(360deg); } }

.watch-card {
  position: relative;
  width: 160px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 40px 80px rgba(212,175,55,0.2));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.watch-face {
  width: 130px;
  height: 155px;
  background: linear-gradient(145deg, #111, #222);
  border-radius: 40px;
  border: 2px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 20px 60px rgba(0,0,0,0.2);
}
.watch-dial {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #2a2a2e, #111114);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.watch-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 2px;
}
.watch-hand.hour {
  width: 2.5px;
  height: 24px;
  background: var(--accent);
  margin-left: -1.25px;
  transform: rotate(-60deg);
}
.watch-hand.minute {
  width: 2px;
  height: 32px;
  background: rgba(255,255,255,0.8);
  margin-left: -1px;
  transform: rotate(30deg);
}
.watch-center {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  z-index: 2;
}

.watch-band {
  width: 90px;
  height: 60px;
  background: linear-gradient(160deg, #1a3a5c, #0f2744);
  position: relative;
  z-index: 1;
}
.watch-band.top {
  border-radius: 6px 6px 0 0;
  margin-bottom: -4px;
  order: -1;
  background: linear-gradient(180deg, #0f2744, #1a3a5c);
}
.watch-band.bottom {
  border-radius: 0 0 12px 12px;
  margin-top: -4px;
}

.watch-lug {
  position: absolute;
  width: 12px;
  height: 8px;
  background: #2c2c2e;
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 3;
}
.watch-lug.tl { top: 56px; left: 15px; border-radius: 3px 3px 0 0; }
.watch-lug.tr { top: 56px; right: 15px; border-radius: 3px 3px 0 0; }
.watch-lug.bl { bottom: 56px; left: 15px; border-radius: 0 0 3px 3px; }
.watch-lug.br { bottom: 56px; right: 15px; border-radius: 0 0 3px 3px; }

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
/* hero sub */
.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Shipping Banner ── */
.shipping-banner {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 999;
  background: #00c853;
  overflow: hidden;
  padding: 8px 0;
  box-shadow: 0 2px 12px rgba(0,200,83,0.35);
}
.shipping-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  width: max-content;
  animation: shipping-scroll 18s linear infinite;
}
.shipping-track span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.sb-dot { color: rgba(255,255,255,0.5) !important; }
@keyframes shipping-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--text);
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.marquee-track .dot { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Shared ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.section-tag.light { color: rgba(255,0,110,0.7); }
.section-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.section-title.light { color: var(--text); }

/* ── Collections ── */
.collections {
  padding: 100px 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  row-gap: 28px;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}
.product-card.large {
  grid-row: span 1;
}
.product-image {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.product-badge.new { background: rgba(17,153,142,0.15); border-color: rgba(17,153,142,0.3); color: #11998e; }

.product-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-hover-overlay { opacity: 1; }
.quick-add {
  background: rgba(255,255,255,0.95);
  color: #000;
  border: none;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}
.quick-add:hover { transform: scale(1.04); }

.product-info { padding: 18px 18px 20px; }
.product-colors {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: transform 0.2s;
}
.color-dot[data-active] {
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.2);
}
.product-info h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-info p {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}
.price-group { display: flex; align-items: baseline; gap: 6px; }
.price {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.price-was {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: line-through;
}
.price-material {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
/* ── Product Photo Gallery ── */
.prod-img-wrap {
  position: relative;
  overflow: hidden;
}
.prod-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.prod-cover {
  z-index: 2;
  transition: opacity 0.5s ease;
}
.prod-main {
  z-index: 1;
}
.prod-img-wrap:hover .prod-cover {
  opacity: 0;
}
.prod-thumbs {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.2);
  overflow: hidden;
  cursor: pointer;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
  padding: 0;
  transition: border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb:hover {
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.08);
}
.thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

/* ── Almost Sold Out Banner ── */
.sold-out-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: linear-gradient(90deg, #ff006e, #ff3388);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 12px;
  animation: pulse-bar 2s ease-in-out infinite;
}
@keyframes pulse-bar {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.75; }
}

/* ── Material Options ── */
.material-options {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.mat-btn {
  flex: 1;
  padding: 7px 0;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--border2);
  background: transparent;
  color: var(--text-dim);
  font-family: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mat-btn:hover {
  border-color: var(--accent);
  color: var(--text-muted);
}
.mat-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.collections-cta {
  text-align: center;
  margin-top: 52px;
}

/* ── Product Watch Mini ── */
.prod-watch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.5));
  animation: float 5s ease-in-out infinite;
}
.prod-face {
  width: 80px;
  height: 96px;
  border-radius: 24px;
  border: 1.5px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.prod-face.dark { background: linear-gradient(145deg, #1c1c1e, #111); }
.prod-face.light { background: linear-gradient(145deg, #f5f5f5, #e8e8e8); }
.prod-face.warm { background: linear-gradient(145deg, #2c2018, #1a140f); }
.prod-face.silver { background: linear-gradient(145deg, #3a3a3c, #2c2c2e); }

.prod-dial {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}
.prod-dial { background: radial-gradient(circle at 40% 35%, #2a2a2e, #111); }
.prod-dial.gold { background: radial-gradient(circle at 40% 35%, #2a200a, #1a1408); }
.prod-dial.rose { background: radial-gradient(circle at 40% 35%, #2a1820, #1a0e14); }
.prod-dial.silver-d { background: radial-gradient(circle at 40% 35%, #4a4a4c, #2c2c2e); }

.prod-band {
  width: 55px;
  height: 38px;
  position: relative;
  z-index: 1;
}
.prod-band.top { border-radius: 4px 4px 0 0; margin-bottom: -3px; }
.prod-band.bottom { border-radius: 0 0 8px 8px; margin-top: -3px; }
.prod-band.navy { background: linear-gradient(180deg, #0a1f3a, #152e54); }
.prod-band.green { background: linear-gradient(180deg, #0a3d35, #0e5247); }
.prod-band.rose { background: linear-gradient(180deg, #5a1a24, #8b2a38); }
.prod-band.metal { background: linear-gradient(180deg, #3a3a3c, #555); }

/* ── Materials ── */
.materials {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.materials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.materials-text > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.material-list { display: flex; flex-direction: column; gap: 28px; }
.material-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.material-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,0,110,0.08);
  border: 1px solid rgba(255,0,110,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.material-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.material-item p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.materials-visual {
  position: relative;
  height: 480px;
}
.mat-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s var(--ease);
}
.mat-card:hover { transform: translateY(-4px) scale(1.02); }
.mat-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.mat-swatch {
  width: 100%;
  height: 90px;
  border-radius: 8px;
}
.mat-swatch.leather { background: linear-gradient(135deg, #6b3a2a, #4a2418, #8b4a30); }
.mat-swatch.titanium { background: linear-gradient(135deg, #9b9ba0, #6b6b70, #b8b8be); }
.mat-swatch.rubber { background: linear-gradient(135deg, #1a4a3a, #0f3028, #256050); }
.mat-swatch.nylon { background: repeating-linear-gradient(45deg, #2a1a40 0px, #2a1a40 4px, #1a0a2a 4px, #1a0a2a 8px); }

.card-1 { top: 0; left: 0; width: 160px; }
.card-2 { top: 30px; right: 20px; width: 170px; }
.card-3 { bottom: 80px; left: 30px; width: 155px; }
.card-4 { bottom: 40px; right: 0; width: 165px; }

.mat-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Craft ── */
.craft {
  padding: 100px 0;
  background: #0a0a0a;
  color: #fff;
}
.craft .section-title { color: #fff; }
.craft .craft-step p { color: rgba(255,255,255,0.5); }
.craft .craft-step h3 { color: #fff; }
.craft .step-number { color: var(--accent); }
.craft .step-bar { background: rgba(255,255,255,0.1); }
.craft-header {
  text-align: center;
  margin-bottom: 70px;
}
.craft-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.craft-step {
  display: flex;
  flex-direction: column;
}
.step-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-bar {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.step-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 40%;
  background: var(--accent);
  border-radius: 1px;
}
.craft-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.craft-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── Fit Illustration ── */
.fit-illustration-section {
  width: 100%;
  background: var(--bg);
  padding: 60px 0 0;
}
.fit-illustration-img {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-orb {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,0,110,0.08), transparent 70%);
  border: 1px solid rgba(255,0,110,0.1);
  position: relative;
}
.about-orb::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,0,110,0.06);
}
.about-orb::after {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,0,110,0.04);
}
.about-quote {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 320px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.about-quote blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin-bottom: 12px;
}
.about-quote cite {
  font-size: 12px;
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about-text > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.about-text em { color: var(--text); font-style: italic; }
.about-text .btn { margin-top: 12px; }

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-card > p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  flex: 0 0 auto;
}
.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.testi-author span {
  font-size: 12px;
  color: var(--text-dim);
}

/* ── Newsletter ── */
.newsletter {
  padding: 100px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.nl-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,0,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.newsletter > .newsletter-inner > p:not(.nl-fine) {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}
.nl-form {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.nl-form input {
  flex: 1;
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  border-radius: 100px;
  padding: 14px 22px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.nl-form input::placeholder { color: var(--text-dim); }
.nl-form input:focus { border-color: var(--accent); }
.nl-fine {
  font-size: 12px;
  color: var(--text-dim);
}

/* ── Footer ── */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo-link {
  flex: unset;
}
.footer-logo-link .logo-hex-svg {
  height: 44px;
  filter: drop-shadow(0 2px 8px rgba(255,0,110,0.30));
}
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-col h4 { color: rgba(255,255,255,0.9); }
.footer-col a { color: rgba(255,255,255,0.4); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top-color: rgba(255,255,255,0.06); }
.footer-bottom p, .footer-legal a { color: rgba(255,255,255,0.25); }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-links a:hover {
  color: var(--accent);
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.07);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 12.5px;
  color: var(--text-dim);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12.5px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-muted); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .craft-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .materials-inner { grid-template-columns: 1fr; gap: 60px; }
  .materials-visual { height: 340px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { height: 300px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; text-align: center; padding-bottom: 120px; }
  .hero-content { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-float-group { width: 320px; height: 360px; margin: 40px auto 0; }
  .hero-options { flex-direction: column; }
  .hero-option--order { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-option-divider { flex-direction: row; padding: 4px 0; }
  .hero-option-divider::before { top: 50%; bottom: auto; left: 20px; right: 20px; width: auto; height: 1px; }
  .opt-price-row { justify-content: center; }
  .hero-watch { width: 200px; height: 260px; margin: 40px auto 0; }
  .watch-ring { width: 220px; height: 220px; }
  .br-d { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .craft-steps { grid-template-columns: 1fr; gap: 36px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nl-form { flex-direction: column; }
  .about-visual { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .section-title { font-size: 28px; }
  .materials-visual { display: none; }
}

/* ── Designed To Fit ── */
.dtf-section {
  background: #c6ede6;
  padding: 90px 0;
  overflow: hidden;
  position: relative;
}
.dtf-watermark {
  position: absolute;
  bottom: -20px;
  left: -10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 400;
  color: rgba(0,0,0,0.06);
  letter-spacing: 0.04em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.dtf-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: center;
  gap: 48px;
}
.dtf-brand {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.dtf-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 9vw, 112px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: #0a0a0a;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.dtf-headline em {
  font-style: normal;
  color: var(--accent);
}
.dtf-tagline {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 32px;
}
.dtf-tagline p {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0a;
}
.dtf-yours { color: var(--accent) !important; }
.dtf-modular {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.18);
}
.dtf-mod-icon {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.dtf-mod-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 3px;
}
.dtf-mod-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Scatter grid */
.dtf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}
.dtf-pair {
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  padding: 12px 10px 34px;
}
.dtf-pair:nth-child(1) { transform: rotate(-1.5deg); }
.dtf-pair:nth-child(2) { transform: rotate(1deg) translateY(-8px); }
.dtf-pair:nth-child(3) { transform: rotate(-0.8deg) translateY(6px); }
.dtf-pair:nth-child(4) { transform: rotate(1.5deg) translateY(10px); }
.dtf-pair:nth-child(5) { transform: rotate(-1deg); }
.dtf-pair:nth-child(6) { transform: rotate(0.8deg) translateY(-6px); }
.dtf-pair:hover {
  transform: rotate(0deg) scale(1.05) translateY(-6px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  z-index: 5;
  background: rgba(255,255,255,0.85);
}
.dtf-pair-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.dtf-pair-imgs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.dtf-pair-label {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  text-align: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}

@media (max-width: 1024px) {
  .dtf-inner { grid-template-columns: 1fr; gap: 48px; }
  .dtf-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .dtf-grid { grid-template-columns: repeat(2, 1fr); }
  .dtf-inner { padding: 0 20px; }
}

/* ── Image Arrows (card gallery) ── */
.img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.95);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
  color: #111;
  padding: 0 0 1px;
}
.img-arrow--prev { left: 8px; }
.img-arrow--next { right: 8px; }
.prod-img-wrap:hover .img-arrow { opacity: 1; }
.img-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }

/* ── Cart Badge ── */
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 16px; height: 16px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.cart-count.hidden { display: none; }

/* ── Currency Switcher ── */
.currency-switcher { position: relative; }
.currency-btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1px solid var(--border2);
  border-radius: 100px; padding: 6px 12px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  color: var(--text); transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.currency-btn:hover { border-color: var(--accent); background: rgba(255,0,110,0.04); }
.currency-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  min-width: 210px; z-index: 1100;
  overflow: hidden;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.currency-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.currency-option {
  display: block; width: 100%; text-align: left;
  padding: 10px 16px; background: none; border: none;
  font-size: 13px; cursor: pointer; color: var(--text);
  transition: background 0.15s;
}
.currency-option:hover { background: var(--bg2); }
.currency-option.active { background: rgba(255,0,110,0.06); color: var(--accent); font-weight: 600; }

/* ── Floating Cart Button ── */
.float-cart-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0a0a0a;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}
.float-cart-btn:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,0,110,0.35);
}
.float-cart-label { white-space: nowrap; }
.float-cart-count {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  margin-left: 2px;
}
.float-cart-count.hidden { display: none; }

/* ── Cart Drawer ── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1900;
  background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  z-index: 1901;
  background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 {
  font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px;
}
.cart-drawer-count {
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 7px; border-radius: 100px;
}
.cart-drawer-close {
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px; color: var(--text-muted);
  transition: background 0.2s;
}
.cart-drawer-close:hover { background: var(--bg2); }

.cart-drawer-items {
  flex: 1; overflow-y: auto; padding: 16px 24px;
}

.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; height: 100%;
  text-align: center; color: var(--text-muted);
  padding: 60px 0;
}
.cart-empty p { font-size: 15px; }

.cart-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 72px; height: 72px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0; background: var(--bg2);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-size: 15px; font-weight: 700; color: var(--accent); }
.cart-item-remove {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--text-dim); line-height: 1;
  padding: 2px 6px; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.cart-item-remove:hover { color: var(--accent); background: rgba(255,0,110,0.06); }

.cart-drawer-footer {
  padding: 20px 24px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
}
.cart-subtotal {
  display: flex; justify-content: space-between;
  font-size: 16px; font-weight: 700;
}
.cart-shipping-note {
  font-size: 12px; color: var(--text-muted); text-align: center;
}
.cart-checkout-btn {
  width: 100%; padding: 16px;
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius);
  font-size: 16px; font-weight: 700; cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.cart-checkout-btn:hover { background: var(--accent2); transform: translateY(-1px); }
.cart-secure {
  font-size: 11px; color: var(--text-dim); text-align: center;
}

/* ── Product Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-panel {
  background: #fff;
  border-radius: 24px;
  max-width: 960px;
  width: 100%;
  height: min(88vh, 660px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s var(--ease);
  box-shadow: 0 40px 120px rgba(0,0,0,0.28);
}
.modal-overlay.open .modal-panel {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  background: rgba(0,0,0,0.08);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--text);
}
.modal-close:hover { background: rgba(0,0,0,0.16); }

/* Gallery */
.modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--bg2);
  overflow: hidden;
}
.modal-main-wrap {
  flex: 1;
  min-height: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg3);
}
.modal-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.18s ease;
}
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  padding: 0 0 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.15);
  color: #111;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}
.modal-nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.modal-nav--prev { left: 12px; }
.modal-nav--next { right: 12px; }

.modal-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-shrink: 0;
}
.modal-thumb {
  width: 54px; height: 54px;
  border-radius: 10px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  background: var(--bg3);
  padding: 0;
}
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-thumb.active { border-color: var(--accent); }
.modal-thumb:hover { transform: scale(1.07); border-color: var(--border2); }
.modal-thumb.active:hover { border-color: var(--accent); }

/* Info panel */
.modal-info {
  padding: 28px 26px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}
.modal-sold-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,0,110,0.08);
  border: 1px solid rgba(255,0,110,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}
.modal-sold-badge.hidden { display: none; }
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}
.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.modal-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.modal-was {
  font-size: 16px;
  color: var(--text-dim);
  text-decoration: line-through;
}
.modal-save {
  font-size: 11px;
  font-weight: 700;
  color: #52b788;
  background: rgba(82,183,136,0.12);
  border: 1px solid rgba(82,183,136,0.25);
  padding: 3px 10px;
  border-radius: 100px;
}
.modal-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: -6px;
}
.modal-mat-btns {
  display: flex;
  gap: 7px;
}
.modal-mat-btns .mat-btn { flex: 1; }

.modal-sizes {
  display: flex;
  gap: 8px;
}
.size-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border2);
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.size-btn:hover { border-color: var(--text-muted); }
.size-btn.active { background: var(--text); border-color: var(--text); color: #fff; }

/* Specs accordion */
.modal-specs-detail {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.modal-specs-detail summary {
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  background: var(--bg2);
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-specs-detail summary::after {
  content: '›';
  font-size: 18px;
  color: var(--text-dim);
  transform: rotate(90deg);
  display: inline-block;
  transition: transform 0.2s;
}
.modal-specs-detail[open] summary::after { transform: rotate(-90deg); }
.modal-specs-detail summary:hover { background: var(--bg3); }
.modal-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.spec-item {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.spec-item:nth-child(even) { border-right: none; }
.spec-item:nth-last-child(-n+2) { border-bottom: none; }
.spec-key {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 3px;
}
.spec-val {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
}

/* Bundles */
.modal-bundles {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}
.bundles-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.bundle-row {
  display: flex;
  gap: 8px;
}
.bundle-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 8px;
  border-radius: 12px;
  border: 1.5px solid var(--border2);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}
.bundle-btn.active {
  border-color: var(--accent);
  background: rgba(255,0,110,0.04);
}
.bqty {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.blabel {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bdisc {
  font-size: 10px;
  font-weight: 700;
  color: #52b788;
}
.bundle-btn:not(.active) .bdisc { color: var(--text-dim); }

/* Add to Cart */
.modal-atc {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
  box-shadow: 0 8px 28px rgba(255,0,110,0.28);
  flex-shrink: 0;
}
.modal-atc:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255,0,110,0.38);
}
.atc-arrow { font-size: 18px; transition: transform 0.2s; }
.modal-atc:hover .atc-arrow { transform: translateX(4px); }

.modal-shipping {
  font-size: 11.5px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
  flex-shrink: 0;
}

/* Modal responsive */
@media (max-width: 720px) {
  .modal-panel {
    grid-template-columns: 1fr;
    height: 95vh;
    overflow-y: auto;
  }
  .modal-gallery {
    height: 300px;
    flex-shrink: 0;
  }
  .modal-info { padding: 20px; }
  .modal-title { font-size: 28px; }
}
