/* ==========================================
   HARD CRACK — Chrome Hearts Dark Luxury
   ========================================== */

:root {
  --gold: #C4912A;
  --gold-light: #e0b44e;
  --black: #000000;
  --near-black: #0a0a0a;
  --white: #ffffff;
  --off-white: #e8e2d9;
  --muted: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Cinzel', serif;
  overflow-x: hidden;
}

/* ── Announcement bar ──────────────────────── */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  background: var(--gold);
  overflow: hidden;
  padding: 9px 0;
}

.announce-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: announceTicker 18s linear infinite;
}

.announce-track span {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--black);
  flex-shrink: 0;
}

@keyframes announceTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Custom cursor ─────────────────────────── */
* { cursor: none !important; }

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(196,145,42,0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, border-color 0.25s, background 0.25s;
  will-change: left, top;
}

.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  will-change: left, top;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--gold);
  background: rgba(196,145,42,0.08);
}

/* ── Loading screen ────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.35em;
  color: var(--gold);
  animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.7rem, 1.5vw, 0.95rem);
  font-style: italic;
  letter-spacing: 0.3em;
  color: rgba(196,145,42,0.5);
  animation: loaderPulse 1.4s ease-in-out 0.2s infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* Subtle grain overlay — luxury texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* ==========================================
   MUSIC BUTTON
   ========================================== */

.music-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(196, 145, 42, 0.4);
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
}

.music-btn:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(196, 145, 42, 0.3);
}

.music-btn.playing {
  border-color: var(--gold);
}

.music-icon {
  font-size: 0.85rem;
  color: var(--gold);
  animation: none;
}

.music-btn.playing .music-icon {
  animation: pulse 1.5s ease-in-out infinite;
}

.music-label {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--off-white);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ==========================================
   NAV
   ========================================== */

nav {
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 40px;
  transition: background 0.4s ease, padding 0.4s ease, top 0.4s ease;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 16px 40px;
  border-bottom: 1px solid rgba(196, 145, 42, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-logo:hover { opacity: 0.7; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 56px;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: rgba(232,226,217,0.6);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* ==========================================
   HERO — full-bleed, logo fills screen height
   ========================================== */

.hero {
  height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  position: relative;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Constrained by both dimensions — image always fits fully, zero clipping */
.hero-logo-img {
  max-height: 82vh;
  max-width: 90vw;
  width: auto;
  height: auto;
  display: block;
  animation: fadeIn 1.2s ease forwards;
}

.hero-content {
  text-align: center;
}

.hero-cta {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(196,145,42,0.5);
  text-decoration: none;
  padding: 18px 56px;
  transition: border-color 0.4s, box-shadow 0.4s, color 0.4s;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

.hero-cta:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 40px rgba(196, 145, 42, 0.25), inset 0 0 40px rgba(196,145,42,0.05);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* ==========================================
   TICKER
   ========================================== */

.ticker-wrap {
  overflow: hidden;
  background: var(--near-black);
  border-top: 1px solid rgba(196, 145, 42, 0.3);
  border-bottom: 1px solid rgba(196, 145, 42, 0.3);
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================
   SHOP — editorial full-width layout
   ========================================== */

.shop {
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 80px 80px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.7em;
  color: rgba(196,145,42,0.5);
  text-align: center;
  margin-bottom: 100px;
  text-transform: uppercase;
}

/* ── Editorial product row ───────────────────── */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.product-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-row.reverse {
  direction: rtl;
}
.product-row.reverse > * {
  direction: ltr;
}

/* Floating product image */
.product-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-float-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  animation: floatImg 6s ease-in-out infinite;
  filter: drop-shadow(0 0 0px rgba(196,145,42,0));
}

@keyframes floatImg {
  0%, 100% {
    transform: translateY(0px);
    filter: drop-shadow(0 16px 48px rgba(196,145,42,0.3));
  }
  50% {
    transform: translateY(-14px);
    filter: drop-shadow(0 32px 80px rgba(196,145,42,0.6));
  }
}

.product-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,145,42,0.25), transparent);
  margin-bottom: 120px;
}

/* ── Product details panel ───────────────────── */
.product-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  color: var(--gold);
  border: 1px solid rgba(196,145,42,0.4);
  padding: 6px 14px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 24px;
}

.product-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--off-white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.product-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.product-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-price {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.klarna {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  display: block;
  margin-top: 4px;
  letter-spacing: 0;
}

.stock-warn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: #e05c4b;
  margin-bottom: 28px;
}

.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e05c4b;
  animation: blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Size Selector */
.size-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.size-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 20px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.size-btn:hover,
.size-btn.active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.size-guide-link {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 4px;
  transition: color 0.2s;
  margin-left: auto;
}

.size-guide-link:hover { color: var(--off-white); }

/* Size Guide accordion */
.size-guide {
  display: none;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid rgba(196,145,42,0.2);
  background: rgba(196,145,42,0.03);
}

.size-guide.open { display: block; }

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

.size-table th {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(196,145,42,0.3);
}

.size-table td {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--off-white);
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.size-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
}

/* Buy button */
.stripe-wrap { width: 100%; margin-bottom: 16px; }

.buy-btn-main {
  display: block;
  width: 100%;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 22px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  margin-top: 8px;
}

.buy-btn-main:hover {
  background: var(--gold-light);
  box-shadow: 0 0 50px rgba(196,145,42,0.4);
}

/* Trust row */
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.trust-row span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* Payment badges */
.pay-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-badges span {
  font-family: 'Cinzel', serif;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(196,145,42,0.4);
  border: 1px solid rgba(196,145,42,0.2);
  padding: 5px 10px;
}

/* ── Reviews section ─────────────────────────── */
.reviews-section {
  padding: 80px 80px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.review-card {
  padding: 40px 32px;
  border: 1px solid rgba(196,145,42,0.15);
  background: rgba(196,145,42,0.02);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-card:nth-child(2) { transition-delay: 0.12s; }
.review-card:nth-child(3) { transition-delay: 0.24s; }

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(232,226,217,0.8);
  margin-bottom: 20px;
}

.review-author {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  color: var(--muted);
}

/* ==========================================
   RULE DIVIDER
   ========================================== */

.rule-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,145,42,0.4), transparent);
}

.rule-mark {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ==========================================
   ABOUT
   ========================================== */

.about {
  padding: 120px 40px;
  text-align: center;
}

.about-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about .section-title { margin-bottom: 48px; }

.about-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  line-height: 2;
  color: rgba(232, 226, 217, 0.75);
  margin-bottom: 40px;
}

.about-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.6rem, 1.5vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-hash {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* ── Email capture ──────────────────────────── */
.email-section {
  padding: 100px 80px;
  text-align: center;
  background: var(--near-black);
  border-top: 1px solid rgba(196,145,42,0.15);
}

.email-inner { max-width: 600px; margin: 0 auto; }

.email-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.6em;
  color: var(--gold);
  margin-bottom: 20px;
}

.email-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--off-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.email-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 40px;
}

.email-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--off-white);
  background: transparent;
  border: 1px solid rgba(196,145,42,0.4);
  border-right: none;
  padding: 18px 24px;
  outline: none;
  transition: border-color 0.3s;
}

.email-input::placeholder { color: rgba(196,145,42,0.35); }
.email-input:focus { border-color: var(--gold); }

.email-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 18px 28px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.email-btn:hover { background: var(--gold-light); }

/* ── Sticky buy bar ─────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: -80px;
  left: 0;
  width: 100%;
  z-index: 500;
  background: rgba(5,5,5,0.97);
  border-top: 1px solid rgba(196,145,42,0.3);
  backdrop-filter: blur(12px);
  transition: bottom 0.4s ease;
  padding: 16px 40px;
}

.sticky-bar.visible { bottom: 0; }

.sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sticky-product {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sticky-name {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--off-white);
}

.sticky-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
}

.sticky-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.sticky-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px rgba(196,145,42,0.4);
}

/* ── Social proof popup ─────────────────────── */
.proof-popup {
  position: fixed;
  bottom: 100px;
  left: 32px;
  z-index: 400;
  background: rgba(10,10,10,0.95);
  border: 1px solid rgba(196,145,42,0.3);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
  max-width: 280px;
}

.proof-popup.show { transform: translateX(0); }

.proof-icon { font-size: 1.2rem; flex-shrink: 0; }

.proof-text { flex: 1; }

.proof-name {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--off-white);
  margin-bottom: 3px;
}

.proof-action {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--muted);
}

.proof-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
  background: var(--near-black);
  border-top: 1px solid rgba(196, 145, 42, 0.2);
  padding: 60px 40px;
  text-align: center;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(196, 145, 42, 0.3);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a, .footer-social a {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: rgba(232,226,217,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover, .footer-social a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.footer-copy {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: rgba(102,102,102,0.5);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* ── Stats bar ──────────────────────────────── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 48px 40px;
  border-bottom: 1px solid rgba(196,145,42,0.12);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.stat-label {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
}

.stat-sep {
  color: rgba(196,145,42,0.3);
  font-size: 0.7rem;
}

/* ── Shipping timer ─────────────────────────── */
.ship-timer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 20px;
  font-style: italic;
}

.ship-timer strong { color: var(--off-white); font-style: normal; }

/* ── Bundle section ─────────────────────────── */
.bundle-section {
  padding: 0 80px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.bundle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px;
  border: 1px solid rgba(196,145,42,0.2);
  background: rgba(196,145,42,0.03);
}

.bundle-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.bundle-img {
  width: 42%;
  height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 8px 32px rgba(196,145,42,0.3));
}

.bundle-plus {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
}

.bundle-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--off-white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.bundle-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 20px;
}

.bundle-price {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.bundle-was {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 8px;
}

.bundle-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ── Trust features ─────────────────────────── */
.features-section {
  padding: 100px 80px;
  border-top: 1px solid rgba(196,145,42,0.1);
  border-bottom: 1px solid rgba(196,145,42,0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.feature.visible { opacity: 1; transform: translateY(0); }
.feature:nth-child(2) { transition-delay: 0.1s; }
.feature:nth-child(3) { transition-delay: 0.2s; }
.feature:nth-child(4) { transition-delay: 0.3s; }

.feature-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  opacity: 0.7;
}

.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--off-white);
  margin-bottom: 12px;
}

.feature-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FAQ ────────────────────────────────────── */
.faq-section {
  padding: 100px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid rgba(196,145,42,0.15);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-item:nth-child(2) { transition-delay: 0.07s; }
.faq-item:nth-child(3) { transition-delay: 0.14s; }
.faq-item:nth-child(4) { transition-delay: 0.21s; }
.faq-item:nth-child(5) { transition-delay: 0.28s; }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--off-white);
  background: none;
  border: none;
  padding: 28px 0;
  text-align: left;
  transition: color 0.3s;
}

.faq-q:hover { color: var(--gold); }

.faq-arrow {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-q.open .faq-arrow { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding-bottom: 28px;
}

.faq-a p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: rgba(232,226,217,0.7);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
  .product-row { grid-template-columns: 1fr; gap: 48px; }
  .product-row.reverse { direction: ltr; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .shop { padding: 100px 40px 60px; }
  .reviews-section { padding: 40px 40px 80px; }
  .bundle-section { padding: 0 40px 80px; }
  .bundle-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-section { padding: 80px 40px; }
}

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { gap: 24px; }
  .shop { padding: 80px 24px; }
  .reviews-section { padding: 20px 24px 60px; }
  .about { padding: 80px 24px; }
  footer { padding: 40px 24px; }
  .hero-logo-img { max-height: 55vh; }
  .product-name { font-size: 1.4rem; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 24px; padding: 32px 24px; }
  .faq-section { padding: 60px 24px; }
  .bundle-section { padding: 0 24px 60px; }
  .bundle-inner { padding: 32px 24px; }
  .features-section { padding: 60px 24px; }
}

/* ── Tee photo mockups (override bracelet float treatment) ── */
.product-float-img.photo {
  mix-blend-mode: normal;
  animation: none;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.bundle-img.photo {
  mix-blend-mode: normal;
  border-radius: 10px;
  filter: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.view-toggle {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px);
  padding: 6px;
  border-radius: 4px;
}

.view-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.view-btn:hover { border-color: rgba(255,255,255,0.35); color: #fff; }

.view-btn.active {
  color: #0a0a0a;
  background: var(--gold, #c4912a);
  border-color: var(--gold, #c4912a);
}

/* ── Lookbook grid ── */
.lookbook-section {
  padding: 100px 5% 60px;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1400px;
  margin: 0 auto;
}

.lookbook-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lookbook-img:hover {
  transform: scale(1.025);
  box-shadow: 0 16px 48px rgba(196,145,42,0.18);
}

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