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

/* ══════════════════════════════════════════
   VARIABLES & RESET
══════════════════════════════════════════ */
:root {
  --red:       #FF2800;
  --red-dark:  #CC1F00;
  --black:     #080808;
  --dark:      #111111;
  --dark-2:    #181818;
  --white:     #FFFFFF;
  --off-white: #F8F6F2;
  --gold:      #C9A96E;
  --gray-1:    #888888;
  --gray-2:    #444444;
  --gray-light:#E8E8E8;
  --radius:    12px;
  --radius-lg: 20px;
  --pill:      999px;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  --transition: 0.22s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size:16px; }
body { font-family:'Inter',sans-serif; color:var(--black); background:var(--white); -webkit-font-smoothing:antialiased; overflow-x:hidden; }
img  { display:block; max-width:100%; }
a    { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
h1,h2,h3,h4,h5 { line-height:1.2; }
em { font-style:italic; color:var(--gold); }

/* ══════════════════════════════════════════
   LAYOUT HELPERS
══════════════════════════════════════════ */
.container       { max-width:1160px; margin:0 auto; padding:0 24px; }
.container-narrow{ max-width:740px;  margin:0 auto; padding:0 24px; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:var(--red); color:var(--white);
  font-weight:700; font-size:15px; letter-spacing:.3px;
  padding:13px 28px; border-radius:var(--pill);
  transition:background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow:0 4px 20px rgba(255,40,0,.35);
}
.btn-primary:hover { background:var(--red-dark); transform:translateY(-2px); box-shadow:0 8px 32px rgba(255,40,0,.45); }
.btn-primary:active{ transform:translateY(0); }
.btn-primary.btn-lg  { font-size:16px; padding:15px 36px; }
.btn-primary.btn-xl  { font-size:18px; padding:18px 48px; }
.btn-primary.btn-full{ width:100%; }

.btn-ghost {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:transparent; color:var(--white);
  font-weight:600; font-size:15px;
  padding:13px 28px; border-radius:var(--pill);
  border:1.5px solid rgba(255,255,255,.45);
  transition:border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color:var(--white); }
.btn-ghost.btn-lg { font-size:16px; padding:15px 36px; }

.btn-nav-cta {
  background:var(--red); color:var(--white);
  font-size:13px; font-weight:700;
  padding:9px 20px; border-radius:var(--pill);
  transition:background var(--transition);
}
.btn-nav-cta:hover { background:var(--red-dark); }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.site-header {
  position:fixed; top:0; left:0; right:0; z-index:200;
  transition:background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background:rgba(8,8,8,.94);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 1px 0 rgba(255,255,255,.06);
}

.nav-inner {
  max-width:1160px; margin:0 auto; padding:0 24px;
  height:68px; display:flex; align-items:center; gap:32px;
}

.nav-logo {
  display:flex; align-items:center; gap:10px; flex-shrink:0;
}
.nav-logo img { height:34px; width:auto; }
.nav-logo span { font-family:'Playfair Display',serif; font-size:15px; font-weight:700; color:var(--gold); letter-spacing:.5px; }

.nav-links {
  display:flex; align-items:center; gap:28px; flex:1; justify-content:center;
}
.nav-links a { font-size:14px; font-weight:500; color:rgba(255,255,255,.75); transition:color var(--transition); }
.nav-links a:hover { color:var(--white); }

.nav-actions { display:flex; align-items:center; gap:12px; flex-shrink:0; }

.nav-burger { display:none; flex-direction:column; gap:5px; padding:4px; }
.nav-burger span { display:block; width:22px; height:2px; background:var(--white); border-radius:2px; transition:var(--transition); }

@media(max-width:768px){
  .nav-links { display:none; position:fixed; top:68px; left:0; right:0; background:rgba(8,8,8,.97); flex-direction:column; padding:24px; gap:20px; align-items:flex-start; border-top:1px solid rgba(255,255,255,.07); }
  .nav-links.open { display:flex; }
  .nav-links a { font-size:16px; }
  .nav-burger { display:flex; }
  .btn-nav-cta { display:none; }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position:relative; width:100%; height:100vh; min-height:600px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; background:var(--black);
}

.hero-video-wrap { position:absolute; inset:0; }
.hero-video-wrap video { width:100%; height:100%; object-fit:cover; }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.75) 100%);
}

.hero-content {
  position:relative; z-index:2;
  text-align:center; padding:0 24px;
  max-width:820px;
}
.hero-label {
  font-size:12px; font-weight:700; letter-spacing:3px; text-transform:uppercase;
  color:var(--gold); margin-bottom:16px;
}
.hero-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(40px,7vw,80px); font-weight:700;
  color:var(--white); margin-bottom:20px;
  text-shadow:0 2px 16px rgba(0,0,0,.6);
}
.hero-title em { color:var(--gold); }
.hero-sub {
  font-size:clamp(15px,2vw,18px); color:rgba(255,255,255,.85);
  line-height:1.65; margin-bottom:36px;
  text-shadow:0 1px 8px rgba(0,0,0,.6);
}
.hero-ctas { display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; }

.sound-btn {
  position:absolute; bottom:32px; right:24px; z-index:10;
  width:40px; height:40px; border-radius:50%;
  background:rgba(0,0,0,.5); backdrop-filter:blur(8px);
  color:white; display:flex; align-items:center; justify-content:center;
  transition:background var(--transition);
}
.sound-btn:hover { background:rgba(0,0,0,.75); }

.hero-scroll-hint {
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%); z-index:10;
  color:rgba(255,255,255,.5); animation:scrollBounce 2s ease-in-out infinite;
  transition:color var(--transition);
}
.hero-scroll-hint:hover { color:var(--white); }
@keyframes scrollBounce { 0%,100%{ transform:translateX(-50%) translateY(0); } 50%{ transform:translateX(-50%) translateY(6px); } }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar { background:var(--black); border-bottom:1px solid rgba(255,255,255,.07); overflow:hidden; }
.trust-bar-inner {
  max-width:1160px; margin:0 auto; padding:14px 24px;
  display:flex; align-items:center; justify-content:center;
  gap:0; flex-wrap:wrap;
}
.trust-item {
  display:flex; align-items:center; gap:8px;
  font-size:13px; font-weight:500; color:rgba(255,255,255,.7);
  padding:6px 20px; white-space:nowrap;
}
.trust-item svg { color:var(--gold); flex-shrink:0; }
.trust-divider { width:1px; height:20px; background:rgba(255,255,255,.12); }
@media(max-width:600px){ .trust-divider{ display:none; } .trust-item{ padding:6px 12px; font-size:12px; } }

/* ══════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════ */
.section-light { background:var(--white); padding:100px 0; }
.section-dark  { background:var(--dark);  padding:100px 0; }
.section-cta   { background:var(--black); padding:100px 0; }
@media(max-width:768px){ .section-light,.section-dark,.section-cta{ padding:70px 0; } }

.section-tag {
  display:inline-block; font-size:11px; font-weight:700; letter-spacing:2.5px;
  text-transform:uppercase; color:var(--red);
  background:rgba(255,40,0,.08); padding:5px 14px; border-radius:var(--pill);
  margin-bottom:14px;
}
.section-tag-light { color:var(--gold); background:rgba(201,169,110,.1); }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(26px,4vw,44px); font-weight:700; margin-bottom:14px; }
.section-title.light { color:var(--white); }
.section-sub  { font-size:16px; color:var(--gray-1); line-height:1.7; max-width:600px; margin:0 auto; text-align:center; }
.section-sub.light { color:rgba(255,255,255,.6); }
.section-header-wrap { text-align:center; margin-bottom:56px; }
.section-light .section-tag,
.section-light .section-title,
.section-light .section-sub { display:block; text-align:center; }

/* ══════════════════════════════════════════
   PRODUCT SHOWCASE
══════════════════════════════════════════ */
.product-showcase {
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
  margin-top:60px;
}
@media(max-width:900px){ .product-showcase{ grid-template-columns:1fr; gap:40px; } }

.product-img-wrap {
  position:relative; border-radius:var(--radius-lg);
  background:var(--black);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/3;
  display:flex; align-items:center; justify-content:center; padding:32px;
}
.product-img-wrap img { width:100%; max-width:400px; height:auto; object-fit:contain; }
.product-img-badge {
  position:absolute; top:16px; left:16px;
  background:var(--gold); color:var(--black);
  font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  padding:5px 12px; border-radius:4px;
}

.product-stars { color:var(--gold); font-size:14px; margin-bottom:10px; }
.product-stars span { font-size:12px; color:var(--gray-1); font-style:normal; margin-left:6px; }
.product-title { font-family:'Playfair Display',serif; font-size:28px; font-weight:700; margin-bottom:6px; }
.product-tagline { font-size:15px; color:var(--gray-1); margin-bottom:24px; }

.color-picker { margin-bottom:24px; }
.picker-label { font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gray-1); margin-bottom:10px; }
.color-options { display:flex; gap:12px; }
.color-btn {
  width:36px; height:36px; border-radius:50%; border:2.5px solid transparent;
  transition:transform var(--transition), border-color var(--transition);
  position:relative;
}
.color-btn:hover { transform:scale(1.12); }
.color-btn.active { border-color:var(--red); transform:scale(1.12); }
.color-tooltip {
  position:absolute; bottom:-28px; left:50%; transform:translateX(-50%);
  font-size:10px; white-space:nowrap; color:var(--gray-1); display:none;
  font-weight:600;
}
.color-btn:hover .color-tooltip { display:block; }
.color-selected { font-size:13px; color:var(--red); font-weight:600; margin-top:8px; }

.product-includes { margin-bottom:24px; }
.includes-label { font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gray-1); margin-bottom:8px; }
.product-includes ul { list-style:none; display:flex; flex-direction:column; gap:5px; }
.product-includes li { font-size:14px; color:var(--gray-2); }

.product-price-row { margin-bottom:20px; }
.price-wrap { display:flex; align-items:baseline; gap:10px; margin-bottom:4px; }
.price-current { font-size:32px; font-weight:800; color:var(--black); }
.price-old { font-size:16px; color:var(--gray-1); text-decoration:line-through; }
.price-badge { background:var(--red); color:white; font-size:11px; font-weight:700; padding:3px 8px; border-radius:4px; }
.price-note { font-size:12px; color:var(--gray-1); }

.product-trust-row { display:flex; gap:16px; flex-wrap:wrap; margin-top:14px; }
.product-trust-row span { font-size:12px; color:var(--gray-1); }

/* ══════════════════════════════════════════
   HOW IT WORKS – STEPS
══════════════════════════════════════════ */
.steps-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px;
}
@media(max-width:900px){ .steps-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .steps-grid{ grid-template-columns:1fr; } }

.step-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-lg); padding:32px 28px;
  transition:border-color var(--transition), transform var(--transition);
  position:relative;
}
.step-card:hover { border-color:rgba(255,40,0,.35); transform:translateY(-4px); }
.step-number {
  font-size:11px; font-weight:800; letter-spacing:2px; color:var(--red);
  margin-bottom:12px;
}
.step-icon { font-size:32px; margin-bottom:14px; }
.step-card h3 { font-size:17px; font-weight:700; color:var(--white); margin-bottom:10px; }
.step-card p { font-size:14px; color:rgba(255,255,255,.6); line-height:1.65; }
.step-card p strong { color:rgba(255,255,255,.85); font-weight:600; }

/* ══════════════════════════════════════════
   USP GRID
══════════════════════════════════════════ */
.usp-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px;
}
@media(max-width:900px){ .usp-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .usp-grid{ grid-template-columns:1fr; } }

.usp-card {
  padding:32px 28px; border:1px solid var(--gray-light);
  border-radius:var(--radius-lg);
  transition:border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.usp-card:hover { border-color:rgba(255,40,0,.25); box-shadow:0 8px 32px rgba(255,40,0,.08); transform:translateY(-3px); }
.usp-icon-wrap {
  width:52px; height:52px; border-radius:var(--radius);
  background:rgba(255,40,0,.07); display:flex; align-items:center; justify-content:center;
  color:var(--red); margin-bottom:18px;
}
.usp-card h4 { font-size:16px; font-weight:700; margin-bottom:10px; }
.usp-card p  { font-size:14px; color:var(--gray-1); line-height:1.65; }

/* ══════════════════════════════════════════
   BEFORE / AFTER
══════════════════════════════════════════ */
.ba-wrap {
  position:relative; max-width:700px; margin:56px auto 48px;
  border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.ba-image { width:100%; display:block; }
.ba-labels {
  position:absolute; bottom:0; left:0; right:0;
  display:flex; justify-content:space-between; padding:16px 20px;
  background:linear-gradient(to top, rgba(0,0,0,.6), transparent);
}
.ba-label { font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.8); }
.ba-label.after { color:var(--gold); }

.ba-stats {
  display:flex; justify-content:center; gap:64px; flex-wrap:wrap;
}
.ba-stat { text-align:center; }
.ba-stat-number { font-family:'Playfair Display',serif; font-size:42px; font-weight:700; color:var(--gold); }
.ba-stat-label  { font-size:13px; color:rgba(255,255,255,.5); margin-top:4px; }

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:48px;
}
@media(max-width:768px){ .reviews-grid{ grid-template-columns:1fr; } }

.review-card {
  border:1px solid var(--gray-light); border-radius:var(--radius-lg);
  padding:28px; transition:box-shadow var(--transition);
}
.review-card:hover { box-shadow:var(--shadow-lg); }
.review-stars { color:var(--gold); font-size:16px; margin-bottom:12px; }
.review-text  { font-size:14px; color:var(--gray-2); line-height:1.75; margin-bottom:20px; font-style:italic; }
.review-author{ display:flex; align-items:center; gap:12px; }
.review-avatar{
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:15px; color:white; flex-shrink:0;
}
.review-name { font-size:14px; font-weight:700; }
.review-meta { font-size:12px; color:var(--gray-1); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list { margin-top:48px; display:flex; flex-direction:column; gap:4px; }

.faq-item { border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); overflow:hidden; }
.faq-item.open .faq-chevron { transform:rotate(180deg); }

.faq-question {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:20px 24px; font-size:15px; font-weight:600; color:var(--white);
  text-align:left; gap:16px;
  transition:background var(--transition);
}
.faq-question:hover { background:rgba(255,255,255,.04); }
.faq-chevron { flex-shrink:0; transition:transform var(--transition); color:var(--gold); }

.faq-answer {
  max-height:0; overflow:hidden;
  transition:max-height .35s ease, padding .35s ease;
  padding:0 24px;
}
.faq-item.open .faq-answer {
  max-height:300px;
  padding:0 24px 20px;
}
.faq-answer p { font-size:14px; color:rgba(255,255,255,.65); line-height:1.7; }
.faq-answer p strong { color:rgba(255,255,255,.85); }

/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.cta-logo { width:120px; margin:0 auto; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer { background:#060606; border-top:1px solid rgba(255,255,255,.06); }
.footer-inner {
  max-width:1160px; margin:0 auto; padding:64px 24px 48px;
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px;
}
@media(max-width:900px){ .footer-inner{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .footer-inner{ grid-template-columns:1fr; } }

.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.footer-logo img { height:30px; }
.footer-logo span { font-family:'Playfair Display',serif; font-size:14px; color:var(--gold); }
.footer-tagline { font-size:13px; color:rgba(255,255,255,.4); margin-bottom:20px; }
.footer-social { display:flex; gap:14px; }
.footer-social a { color:rgba(255,255,255,.4); transition:color var(--transition); }
.footer-social a:hover { color:var(--white); }

.footer-links-col h5 { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:16px; }
.footer-links-col { display:flex; flex-direction:column; gap:10px; }
.footer-links-col a { font-size:13px; color:rgba(255,255,255,.5); transition:color var(--transition); }
.footer-links-col a:hover { color:var(--white); }

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.06); padding:20px 24px;
  text-align:center; font-size:12px; color:rgba(255,255,255,.3);
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity:0; transform:translateY(28px);
  transition:opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ══════════════════════════════════════════
   SHOP PAGE
══════════════════════════════════════════ */
.shop-page { background:var(--black); color:var(--white); min-height:100vh; }

.shop-header {
  position:sticky; top:0; z-index:100;
  background:rgba(8,8,8,.93); backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.shop-nav {
  max-width:1160px; margin:0 auto; padding:0 24px;
  height:64px; display:flex; align-items:center; justify-content:space-between;
}
.shop-logo { display:flex; align-items:center; gap:10px; }
.shop-logo img { height:34px; }
.shop-logo-text { font-family:'Playfair Display',serif; font-size:15px; font-weight:700; color:var(--gold); }
.shop-nav-links { display:flex; align-items:center; gap:20px; }
.nav-link { font-size:13px; font-weight:500; color:rgba(255,255,255,.65); cursor:pointer; transition:color var(--transition); }
.nav-link:hover { color:var(--white); }

.cart-btn { position:relative; width:38px; height:38px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.06); border-radius:50%; transition:background var(--transition); }
.cart-btn:hover { background:rgba(255,255,255,.12); }
.cart-badge { position:absolute; top:4px; right:4px; width:15px; height:15px; background:var(--red); border-radius:50%; font-size:9px; font-weight:700; display:none; align-items:center; justify-content:center; }
.cart-badge.visible { display:flex; }

.trust-banner { background:var(--red); padding:10px 0; overflow:hidden; }
.trust-ticker { display:flex; gap:60px; animation:ticker 22s linear infinite; white-space:nowrap; }
.trust-item-shop { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:600; flex-shrink:0; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.shop-hero { max-width:1160px; margin:0 auto; padding:60px 24px 40px; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
@media(max-width:768px){ .shop-hero{ grid-template-columns:1fr; gap:32px; padding:40px 16px; } }

.hero-visual { position:relative; aspect-ratio:1/1.05; background:radial-gradient(ellipse at 40% 30%,rgba(139,0,0,.6) 0%,transparent 60%),linear-gradient(135deg,#1a0000,var(--dark)); border-radius:var(--radius-lg); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.hero-visual-content { display:flex; flex-direction:column; align-items:center; gap:14px; padding:32px; }
.hero-logo-big { width:60%; max-width:200px; filter:drop-shadow(0 0 40px rgba(255,40,0,.5)); }
.hero-tagline-visual { font-family:'Playfair Display',serif; font-size:18px; font-style:italic; color:var(--gold); text-align:center; }
.hero-stars { display:flex; gap:3px; color:var(--gold); font-size:18px; }
.hero-reviews-count { font-size:12px; color:rgba(255,255,255,.5); }
.hero-label-shop { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--red); }
.hero-title-shop { font-family:'Playfair Display',serif; font-size:clamp(26px,4vw,46px); font-weight:700; color:var(--white); line-height:1.2; }
.hero-title-shop em { color:var(--gold); }
.hero-subtitle { font-size:15px; color:rgba(255,255,255,.65); line-height:1.65; }
.hero-benefits { display:flex; flex-direction:column; gap:10px; }
.benefit-item { display:flex; align-items:center; gap:10px; font-size:14px; color:rgba(255,255,255,.8); }
.benefit-icon { width:22px; height:22px; background:rgba(255,40,0,.12); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:11px; color:var(--red); font-weight:700; }

.products-section { max-width:1160px; margin:0 auto; padding:60px 24px; }
.section-header { text-align:center; margin-bottom:40px; }
.section-label { font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--red); margin-bottom:10px; }
.section-title-shop { font-family:'Playfair Display',serif; font-size:clamp(22px,3.5vw,36px); font-weight:700; color:var(--white); }
.section-title-shop em { color:var(--gold); }

.products-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }

.product-card { background:var(--dark); border-radius:var(--radius-lg); overflow:hidden; border:1px solid rgba(255,255,255,.06); transition:transform .25s,border-color .25s,box-shadow .25s; }
.product-card:hover { transform:translateY(-4px); border-color:rgba(255,40,0,.3); box-shadow:0 12px 40px rgba(255,40,0,.12); }
.product-card.featured { border-color:rgba(255,40,0,.4); }

.product-image { aspect-ratio:4/3; background:radial-gradient(ellipse at center,rgba(139,0,0,.4) 0%,transparent 70%),linear-gradient(135deg,#180000,#0a0a0a); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.product-image-inner { display:flex; flex-direction:column; align-items:center; gap:8px; }
.product-image img { width:100px; filter:drop-shadow(0 0 20px rgba(255,40,0,.3)); }
.product-badge { position:absolute; top:12px; left:12px; background:var(--red); color:white; font-size:10px; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:4px 10px; border-radius:4px; }
.product-badge.badge-gold { background:var(--gold); color:var(--black); }

.product-body { padding:20px; }
.product-name { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; margin-bottom:6px; }
.product-desc { font-size:13px; color:rgba(255,255,255,.55); line-height:1.55; margin-bottom:12px; }
.product-includes-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:16px; }
.include-tag { font-size:11px; background:#222222; border-radius:4px; padding:3px 8px; color:#cccccc; }

.product-footer { display:flex; align-items:center; justify-content:space-between; padding:0 20px 20px; }
.product-price { display:flex; flex-direction:column; }
.price-amount { font-size:22px; font-weight:800; color:var(--white); }
.price-old-shop { font-size:12px; color:rgba(255,255,255,.35); text-decoration:line-through; }

.add-to-cart { display:inline-flex; align-items:center; gap:6px; background:var(--red); color:white; font-size:13px; font-weight:700; padding:10px 18px; border-radius:var(--pill); cursor:pointer; border:none; font-family:inherit; transition:all .2s; white-space:nowrap; }
.add-to-cart:hover { background:var(--red-dark); transform:scale(1.03); }
.add-to-cart.added { background:#1a7a3c; }

.cart-overlay { position:fixed; inset:0; background:rgba(0,0,0,.7); z-index:200; opacity:0; pointer-events:none; transition:opacity .3s; backdrop-filter:blur(4px); }
.cart-overlay.open { opacity:1; pointer-events:all; }
.cart-drawer { position:fixed; top:0; right:0; bottom:0; width:100%; max-width:420px; background:#0f0f0f; border-left:1px solid rgba(255,255,255,.08); z-index:201; transform:translateX(100%); transition:transform .35s cubic-bezier(.4,0,.2,1); display:flex; flex-direction:column; }
.cart-drawer.open { transform:translateX(0); }
.cart-drawer-header { padding:20px 24px; border-bottom:1px solid rgba(255,255,255,.08); display:flex; align-items:center; justify-content:space-between; }
.cart-drawer-title { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; }
.cart-close-btn { width:32px; height:32px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.06); border-radius:50%; cursor:pointer; transition:background .2s; }
.cart-close-btn:hover { background:rgba(255,255,255,.12); }
.cart-items { flex:1; overflow-y:auto; padding:20px 24px; display:flex; flex-direction:column; gap:14px; }
.cart-empty { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; color:rgba(255,255,255,.35); font-size:14px; }
.cart-item { display:flex; gap:14px; align-items:flex-start; padding:14px; background:rgba(255,255,255,.04); border-radius:10px; border:1px solid rgba(255,255,255,.06); }
.cart-item-img { width:52px; height:52px; background:radial-gradient(ellipse at center,rgba(139,0,0,.4) 0%,#1a0000 100%); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cart-item-img img { width:36px; }
.cart-item-info { flex:1; }
.cart-item-name  { font-size:13px; font-weight:600; margin-bottom:4px; }
.cart-item-price { font-size:13px; color:var(--gold); font-weight:700; }
.cart-item-remove { font-size:18px; color:rgba(255,255,255,.25); cursor:pointer; transition:color .2s; padding:0 4px; }
.cart-item-remove:hover { color:var(--red); }
.cart-footer { padding:20px 24px; border-top:1px solid rgba(255,255,255,.08); }
.cart-total-row { display:flex; justify-content:space-between; margin-bottom:16px; }
.cart-total-label { font-size:14px; color:rgba(255,255,255,.55); }
.cart-total-amount { font-size:20px; font-weight:800; }

.checkout-section { max-width:600px; margin:0 auto; padding:60px 24px 80px; }
.checkout-title { font-family:'Playfair Display',serif; font-size:28px; font-weight:700; margin-bottom:32px; text-align:center; }
.form-group { margin-bottom:16px; }
.form-label { display:block; font-size:11px; font-weight:700; letter-spacing:.8px; text-transform:uppercase; color:rgba(255,255,255,.45); margin-bottom:7px; }
.form-input { width:100%; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:10px; padding:13px 16px; font-size:14px; color:var(--white); font-family:inherit; transition:border-color .2s,background .2s; outline:none; }
.form-input:focus { border-color:var(--red); background:rgba(255,40,0,.04); }
.form-input::placeholder { color:rgba(255,255,255,.22); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media(max-width:480px){ .form-row{ grid-template-columns:1fr; } }
.form-section-title { font-size:14px; font-weight:700; color:var(--gold); margin:26px 0 14px; display:flex; align-items:center; gap:8px; }
.form-section-title::after { content:''; flex:1; height:1px; background:rgba(201,169,110,.2); }
.card-icons { display:flex; gap:8px; margin-bottom:14px; flex-wrap:wrap; }
.card-icon { height:24px; padding:3px 8px; background:#252525; border-radius:4px; font-size:10px; font-weight:700; display:flex; align-items:center; color:#bbbbbb; }
.order-summary-mini { background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); border-radius:12px; padding:20px; margin-bottom:28px; }
.order-row { display:flex; justify-content:space-between; font-size:14px; padding:5px 0; color:rgba(255,255,255,.65); }
.order-row.total { border-top:1px solid rgba(255,255,255,.1); margin-top:8px; padding-top:14px; font-size:16px; font-weight:800; color:var(--white); }
.submit-order-btn { width:100%; padding:16px; background:var(--red); color:white; font-size:16px; font-weight:800; border:none; border-radius:var(--pill); cursor:pointer; font-family:inherit; transition:all .2s; box-shadow:0 6px 28px rgba(255,40,0,.45); display:flex; align-items:center; justify-content:center; gap:10px; }
.submit-order-btn:hover { background:var(--red-dark); transform:translateY(-1px); }
.security-badges { display:flex; justify-content:center; gap:20px; margin-top:16px; flex-wrap:wrap; }
.security-badge { display:flex; align-items:center; gap:6px; font-size:11px; color:rgba(255,255,255,.35); }
.order-success { display:none; position:fixed; inset:0; background:rgba(0,0,0,.85); z-index:300; align-items:center; justify-content:center; backdrop-filter:blur(8px); }
.order-success.show { display:flex; }
.success-card { background:var(--dark); border-radius:20px; padding:40px 36px; max-width:380px; width:90%; text-align:center; border:1px solid rgba(255,255,255,.1); animation:successPop .4s cubic-bezier(.34,1.56,.64,1); }
@keyframes successPop { from{transform:scale(.7);opacity:0} to{transform:scale(1);opacity:1} }
.success-icon { font-size:52px; margin-bottom:16px; }
.success-title { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; margin-bottom:10px; }
.success-text { font-size:14px; color:rgba(255,255,255,.55); line-height:1.65; margin-bottom:24px; }

.shop-footer { background:#060606; border-top:1px solid rgba(255,255,255,.06); padding:40px 24px 28px; text-align:center; }
.footer-logo-shop { display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:14px; }
.footer-logo-shop img { height:30px; }
.footer-logo-shop span { font-family:'Playfair Display',serif; font-size:14px; color:var(--gold); }
.footer-links-shop { display:flex; justify-content:center; gap:24px; flex-wrap:wrap; margin-bottom:18px; }
.footer-links-shop a { font-size:12px; color:rgba(255,255,255,.35); transition:color .2s; }
.footer-links-shop a:hover { color:rgba(255,255,255,.75); }
.footer-copy { font-size:11px; color:rgba(255,255,255,.2); }

/* Scrollbar */
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:transparent; }
::-webkit-scrollbar-thumb { background:rgba(255,255,255,.12); border-radius:2px; }
