/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --black: #08080a;
  --black-soft: #121214;
  --black-card: #19191c;
  --black-card-2: #1f1f23;
  --border: rgba(212,175,55,0.16);
  --gold-light: #f7e199;
  --gold: #d4af37;
  --gold-deep: #96721c;
  --white: #f5f5f2;
  --muted: #a8a8ad;
  --radius: 18px;
  --shadow-gold: 0 8px 30px rgba(212,175,55,0.18);
  --font-display: 'Anton', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input { font: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 6vw, 42px);
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-transform: uppercase;
}
.section-head p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 15px;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: #1a1300;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 12px 34px rgba(212,175,55,0.3); }
.btn-gold:active { transform: translateY(0); }
.btn-outline {
  border: 1.5px solid rgba(245,245,242,0.25);
  color: var(--white);
  background: rgba(255,255,255,0.03);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,10,0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { background: rgba(8,8,10,0.92); box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo { display: flex; align-items: center; gap: 8px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-text em { font-style: normal; color: var(--white); background: none; -webkit-text-fill-color: var(--white); margin-left: 3px; font-size: 1em; }

.nav { display: none; gap: 30px; }
.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav a:hover { color: var(--white); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease;
}
.icon-btn:hover { background: rgba(212,175,55,0.12); color: var(--gold-light); }

.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 16px; height: 16px;
  padding: 0 3px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1300;
  font-size: 10px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.cart-count.show { transform: scale(1); }
.cart-count.pulse { animation: cart-pulse 0.4s ease; }
@keyframes cart-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.hamburger {
  width: 38px; height: 38px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.hamburger span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* drip dividers */
.drip-divider {
  display: block;
  width: 100%;
  height: 32px;
  filter: drop-shadow(0 4px 10px rgba(212,175,55,0.35));
}
.hero-drip { position: absolute; bottom: -1px; left: 0; height: 46px; z-index: 3; }
.footer-drip { position: relative; top: 1px; height: 38px; }

/* ============ MOBILE MENU ============ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 150;
}
.overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(78vw, 320px);
  background: linear-gradient(180deg, var(--black-soft), var(--black));
  border-left: 1px solid var(--border);
  z-index: 200;
  padding: 90px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 22px; }
.mobile-menu nav a { font-size: 18px; font-weight: 700; }
.mobile-menu-cta { align-self: flex-start; margin-top: auto; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -20%; left: 50%;
  width: 700px; height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.hero-content { text-align: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(212,175,55,0.06);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 11vw, 64px);
  line-height: 1.02;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.drip-text {
  position: relative;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 14px rgba(212,175,55,0.35));
}
.hero-copy {
  margin-top: 20px;
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stats div { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong { font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--white); }
.hero-stats .star { color: var(--gold); }
.hero-stats span { font-size: 12px; color: var(--muted); }

.hero-image { position: relative; display: flex; justify-content: center; }
.hero-image-glow {
  position: absolute;
  bottom: 0; left: 50%;
  width: 80%; height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(212,175,55,0.28), transparent 70%);
  filter: blur(10px);
}
.hero-image img {
  position: relative;
  max-width: 280px;
  width: 65%;
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============ MARQUEE ============ */
.marquee {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 50%, var(--gold-deep));
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  gap: 14px;
  white-space: nowrap;
  width: max-content;
  animation: scroll-marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  color: #1a1300;
}
@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SHOP / PRODUCTS ============ */
.shop { padding: 70px 0 40px; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.product-card {
  background: linear-gradient(180deg, var(--black-card), var(--black-card-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,175,55,0.15);
}
.product-card.featured { border-color: rgba(212,175,55,0.5); }

.product-media {
  position: relative;
  height: 260px;
  background: radial-gradient(ellipse at 50% 30%, #1c1c1f, #0c0c0e 75%);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-media img {
  width: auto;
  height: 100%;
  max-width: 60%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-media img { transform: scale(1.05) translateY(-4px); }

.tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}
.tag-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1300;
  border: none;
}

.product-body { padding: 20px 22px 26px; }
.product-rating { font-size: 12px; color: var(--gold); letter-spacing: 1px; }
.product-rating span { color: var(--muted); letter-spacing: normal; margin-left: 4px; }
.product-body h3 { font-size: 19px; font-weight: 800; margin-top: 8px; }
.product-desc { font-size: 13px; color: var(--muted); margin-top: 4px; }

.product-price { display: flex; align-items: baseline; gap: 10px; margin-top: 14px; }
.price-now { font-family: var(--font-display); font-weight: 400; font-size: 24px; color: var(--gold-light); }
.price-was { font-size: 14px; color: var(--muted); text-decoration: line-through; }

.btn-add { width: 100%; margin-top: 18px; }
.btn-add.added { background: linear-gradient(135deg, #7fdca4, #3fae6d); color: #06210f; }

/* ============ FEATURES ============ */
.features { padding: 70px 0; background: var(--black-soft); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.feature-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.4); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,175,55,0.1);
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); }

/* ============ HOW IT WORKS ============ */
.how { padding: 70px 0; }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 30px 20px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.step-num {
  width: 44px; height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: #1a1300;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.step h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 70px 0; background: var(--black-soft); }
.testimonial-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14.5px; color: #d8d8d8; margin-bottom: 16px; }
.t-name { font-size: 13px; font-weight: 700; color: var(--muted); }

/* ============ NEWSLETTER ============ */
.newsletter { padding: 70px 0; }
.newsletter-inner {
  text-align: center;
  max-width: 520px;
  background: linear-gradient(180deg, var(--black-card), var(--black-card-2));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 28px;
}
.newsletter-inner h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 6vw, 32px); text-transform: uppercase; }
.newsletter-inner p { color: var(--muted); margin-top: 12px; font-size: 14.5px; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}
.newsletter-form input {
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--white);
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.form-msg { display: block; margin-top: 14px; font-size: 13px; color: var(--gold-light); min-height: 16px; }

/* ============ FAQ ============ */
.faq { padding: 70px 0 100px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 700px; margin: 0 auto; }
.faq-item {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.25s ease;
  margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ============ FOOTER ============ */
.site-footer { background: var(--black-soft); padding-top: 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 50px 20px 40px;
}
.footer-brand p { color: var(--muted); font-size: 13.5px; margin: 14px 0 18px; max-width: 280px; }
.socials { display: flex; gap: 10px; }
.socials .icon-btn { border: 1px solid var(--border); }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 12px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 20px 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.footer-disclaimer { max-width: 560px; margin: 0 auto; opacity: 0.7; }

/* ============ MOBILE STICKY CTA ============ */
.mobile-sticky-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: #1a1300;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--white);
  color: #111;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 300;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ TABLET / DESKTOP ============ */
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .testimonial-track { grid-template-columns: repeat(3, 1fr); }
  .newsletter-form { flex-direction: row; }
  .newsletter-form input { flex: 1; }
}

@media (min-width: 860px) {
  .hero-inner { flex-direction: row; align-items: center; }
  .hero-content { flex: 1; }
  .hero-image { flex: 1; }
  .hero-image img { max-width: 380px; }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (min-width: 1000px) {
  .nav { display: flex; }
  .hamburger { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .mobile-sticky-cta { display: none; }
  .footer-bottom { padding-bottom: 30px; }
}

/* ============ BREADCRUMB ============ */
.breadcrumb-bar { padding: 16px 0; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span:last-child { color: var(--white); font-weight: 600; }

/* ============ LEGAL PAGES ============ */
.legal-page { padding: 60px 0 100px; }
.legal-page h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 800; margin-bottom: 6px; }
.legal-page .legal-updated { font-size: 13px; color: var(--muted); margin-bottom: 48px; }
.legal-page h2 { font-size: 18px; font-weight: 700; margin: 40px 0 12px; color: var(--gold-light); }
.legal-page p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.legal-page ul { padding-left: 20px; margin-bottom: 14px; display: flex; flex-direction: column; gap: 8px; }
.legal-page ul li { font-size: 15px; color: var(--muted); line-height: 1.7; }
.legal-page a { color: var(--gold-light); text-decoration: underline; }
.legal-notice-box { background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.2); border-radius: 10px; padding: 18px 22px; margin-bottom: 32px; }
.legal-notice-box p { margin: 0; font-size: 14px; }
.checkout-payment-icons { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.payment-unavailable { display: flex; gap: 14px; align-items: flex-start; background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.2); border-radius: 10px; padding: 16px 18px; margin-top: 4px; }
.payment-unavailable p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.6; }
.payment-unavailable a { color: var(--gold-light); }

/* ============ PRODUCT DETAIL PAGE ============ */
.pdp { padding: 36px 0 10px; }
.pdp-inner { display: grid; grid-template-columns: 1fr; gap: 34px; }

.pdp-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 30px;
  background: radial-gradient(ellipse at 50% 30%, #1c1c1f, #0c0c0e 75%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pdp-media-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(212,175,55,0.16), transparent 65%);
}
.pdp-media img { position: relative; max-height: 380px; width: auto; max-width: 62%; filter: drop-shadow(0 25px 30px rgba(0,0,0,0.6)); }
.pdp-badge { position: absolute; top: 18px; left: 18px; }

.pdp-info { display: flex; flex-direction: column; }
.pdp-info > .tag { align-self: flex-start; margin-bottom: 14px; }
.pdp-info h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 7vw, 40px);
  text-transform: uppercase;
  line-height: 1.05;
}
.pdp-rating { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 13px; color: var(--muted); }
.pdp-rating .stars { color: var(--gold); letter-spacing: 2px; }
.pdp-price { font-family: var(--font-display); font-weight: 400; font-size: 30px; color: var(--gold-light); margin-top: 16px; }
.pdp-short-desc { color: var(--muted); margin-top: 14px; font-size: 15px; max-width: 480px; }

.pdp-buybox { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; flex-shrink: 0; }
.qty-btn { width: 40px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; transition: background 0.2s ease; }
.qty-btn:hover { background: rgba(212,175,55,0.12); }
.qty-value { min-width: 30px; text-align: center; font-weight: 700; font-size: 15px; }
.pdp-add-btn { flex: 1; min-width: 180px; }

.pdp-features { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
.pdp-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }

.pdp-cosmetic-notice { margin-top: 20px; font-size: 12px; color: var(--muted); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 10px 14px; line-height: 1.5; }

.pdp-accordion { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; }

.related-shop { padding-top: 20px; }

/* ============ CART DRAWER ============ */
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%;
  width: min(92vw, 400px);
  background: linear-gradient(180deg, var(--black-soft), var(--black));
  border-left: 1px solid var(--border);
  z-index: 220;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.active { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border); }
.cart-drawer-head h3 { font-size: 17px; font-weight: 800; }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--muted); padding: 40px 20px; text-align: center; }
.cart-empty svg { opacity: 0.5; }
.cart-items { flex: 1; overflow-y: auto; padding: 14px 20px; display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; gap: 12px; position: relative; padding-bottom: 16px; padding-right: 20px; border-bottom: 1px solid var(--border); }
.cart-item img { width: 54px; height: auto; border-radius: 8px; background: #111; flex-shrink: 0; }
.cart-item-body { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-item-body h4 { font-size: 13.5px; font-weight: 700; }
.cart-item-size { font-size: 12px; color: var(--muted); }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; gap: 8px; }
.cart-item-row .qty-stepper { transform: scale(0.85); transform-origin: left center; }
.cart-item-row .qty-btn { width: 30px; height: 32px; font-size: 15px; }
.cart-item-price { font-weight: 700; color: var(--gold-light); font-size: 13.5px; white-space: nowrap; }
.cart-item-remove { position: absolute; top: 0; right: 0; color: var(--muted); width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.cart-item-remove:hover { color: var(--white); }
.cart-footer { padding: 18px 22px 22px; border-top: 1px solid var(--border); }
.cart-subtotal-row { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.cart-checkout { width: 100%; }

/* ============ SEARCH OVERLAY ============ */
.search-overlay {
  position: fixed; inset: 0; z-index: 250;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(3px); }
.search-panel {
  position: relative;
  max-width: 640px;
  margin: 90px auto 0;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  max-height: 70vh;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.search-input-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); }
.search-input-row input { flex: 1; background: none; border: none; color: var(--white); font-size: 16px; min-width: 0; }
.search-input-row input:focus { outline: none; }
.search-input-row input::placeholder { color: var(--muted); }
.search-results { margin-top: 14px; overflow-y: auto; display: flex; flex-direction: column; gap: 4px; }
.search-result { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 12px; transition: background 0.2s ease; }
.search-result:hover { background: rgba(212,175,55,0.08); }
.search-result img { width: 42px; height: auto; border-radius: 6px; background: #111; flex-shrink: 0; }
.search-result-body { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.search-result-name { font-size: 14px; font-weight: 700; }
.search-result-meta { font-size: 12px; color: var(--muted); }
.search-result-price { font-weight: 700; color: var(--gold-light); font-size: 14px; white-space: nowrap; }
.search-empty { text-align: center; color: var(--muted); padding: 30px 0; font-size: 14px; }

/* ============ PDP STICKY CTA ============ */
.pdp-sticky-price { font-family: var(--font-display); font-size: 18px; color: var(--gold-light); font-weight: 400; }
.pdp-sticky-cta .btn-add { flex-shrink: 0; padding: 12px 22px; }
@media (max-width: 999px) {
  .pdp-sticky-cta { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 14px; background: var(--black-card); border: 1px solid var(--border); }
}

@media (min-width: 700px) {
  .pdp-inner { grid-template-columns: 1fr 1fr; align-items: start; }
  .pdp-media { position: sticky; top: 90px; }
}

/* ============ CHECKOUT ============ */
.checkout { padding: 36px 0 80px; }

.checkout-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 80px 20px;
  color: var(--muted);
}
.checkout-empty svg { opacity: 0.5; }
.checkout-empty h2 { font-family: var(--font-display); font-weight: 400; font-size: 26px; color: var(--white); text-transform: uppercase; }

.checkout-form { display: grid; grid-template-columns: 1fr; gap: 26px; }
.checkout-col { display: flex; flex-direction: column; gap: 20px; }
.checkout-block { background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.checkout-block h3 { font-size: 14px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gold-light); }
.checkout-demo-note { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; padding: 10px 12px; border: 1px dashed var(--border); border-radius: 10px; }

.form-row { margin-bottom: 14px; }
.form-row:last-child { margin-bottom: 0; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkout-form label { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; color: var(--muted); font-weight: 600; min-width: 0; }
.checkout-form input, .checkout-form select {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
}
.checkout-form input::placeholder { color: #6b6b70; }
.checkout-form input:focus, .checkout-form select:focus { outline: none; border-color: var(--gold); }
.checkout-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%23a8a8ad' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.checkout-summary { background: var(--black-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; align-self: start; }
.checkout-summary h3 { font-size: 14px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.checkout-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; max-height: 320px; overflow-y: auto; }
.checkout-item { display: flex; align-items: center; gap: 12px; }
.checkout-item img { width: 46px; height: auto; border-radius: 8px; background: #111; flex-shrink: 0; }
.checkout-item-body { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.checkout-item-body h4 { font-size: 13px; font-weight: 700; }
.checkout-item-body span { font-size: 12px; color: var(--muted); }
.checkout-item-price { font-size: 13px; font-weight: 700; color: var(--gold-light); white-space: nowrap; }

.checkout-totals { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 4px; display: flex; flex-direction: column; gap: 10px; }
.checkout-total-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--muted); }
.checkout-total-final { font-size: 16px; font-weight: 800; color: var(--white); padding-top: 8px; border-top: 1px solid var(--border); }
.checkout-place-order { width: 100%; margin-top: 20px; }

.checkout-confirmation { display: none; flex-direction: column; align-items: center; text-align: center; padding: 100px 20px; }
.checkout-confirmation-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 420px; margin: 0 auto; }
.confirmation-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold)); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.checkout-confirmation h2 { font-family: var(--font-display); font-weight: 400; font-size: 30px; text-transform: uppercase; }
.checkout-confirmation p { color: var(--muted); font-size: 15px; }
.confirmation-order-num { color: var(--gold-light); font-weight: 700; font-size: 15px; }

@media (min-width: 860px) {
  .checkout-form { grid-template-columns: 1fr 380px; align-items: start; }
  .checkout-summary { position: sticky; top: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
