/* ============================================
   DEFENSE SAFETY SOLUTIONS — Master Stylesheet
   v3 — Total redesign: premium, clean, logo-forward
   Brand:
     Dark BG:    #0B0C0E
     Gold:       #C8A032
     Tac Green:  #3D6B4F
     Light Text: #E8E6E1
   ============================================ */

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

:root {
  --dark: #0B0C0E;
  --dark-2: #14161a;
  --dark-3: #1c1f24;
  --gold: #C8A032;
  --gold-light: #dab94f;
  --gold-dark: #a8862a;
  --green: #3D6B4F;
  --green-light: #4a7d5e;
  --light: #EDEBE6;
  --dim: #9b9a94;
  --red: #C43C3C;
  --white: #ffffff;
  --line: rgba(255,255,255,0.08);
  --line-gold: rgba(200,160,50,0.35);
  --shadow: 0 16px 40px rgba(0,0,0,0.45);
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1240px;
  --nav-height: 92px;
  --radius: 12px;
  --transition: 0.25s ease;
}

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.12;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

/* --- UTILITY --- */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-dim { color: var(--dim); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 2rem; }
.section-padding { padding: 96px 0; }

.badge {
  display: inline-block; padding: 5px 12px; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; border-radius: 100px;
}
.badge-gold { background: var(--gold); color: var(--dark); }
.badge-green { background: var(--green); color: var(--white); }
.badge-red { background: var(--red); color: var(--white); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px; font-family: var(--font-heading); font-size: 0.92rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid transparent; border-radius: 100px; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #14110a; border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(200,160,50,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px); color: #14110a;
  box-shadow: 0 12px 32px rgba(200,160,50,0.38);
}
.btn-outline {
  background: transparent; color: var(--light); border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.78rem; }
.btn-block { width: 100%; }

/* --- TOP BAR --- */
.top-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: #14110a; text-align: center;
  padding: 9px 16px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.03em;
}
.top-bar a { color: #14110a; text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }

/* --- HEADER / NAV --- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(11,12,14, 0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height); max-width: var(--max-width);
  margin: 0 auto; padding: 0 28px;
}
.nav-logo { display: flex; align-items: center; gap: 16px; }
.nav-logo img {
  height: 60px; width: auto;
  filter: drop-shadow(0 2px 10px rgba(200,160,50,0.25));
}
.nav-logo-text {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--white);
  line-height: 1.12;
}
.nav-logo-text span {
  display: block; color: var(--gold); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.42em;
}

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--light);
  transition: color var(--transition); position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; border-radius: 2px;
  background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-cart {
  position: relative; background: var(--dark-2); border: 1px solid var(--line);
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  color: var(--light); font-size: 1.1rem; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.nav-cart:hover { border-color: var(--line-gold); transform: translateY(-1px); }
.cart-count {
  position: absolute; top: -5px; right: -5px;
  background: var(--gold); color: var(--dark); font-size: 0.62rem;
  width: 19px; height: 19px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; border-radius: 2px;
  background: var(--light); transition: all var(--transition);
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--dark-2); flex-direction: column;
    padding: 20px 28px; gap: 0;
    transform: translateY(-130%); transition: transform 0.35s ease;
    border-bottom: 1px solid var(--line-gold);
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 16px 0; font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a::after { display: none; }
  .nav-logo img { height: 48px; }
  .nav-logo-text { font-size: 1.1rem; }
}

/* --- HERO --- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% 30%, rgba(200,160,50,0.13), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(61,107,79,0.12), transparent 60%),
    var(--dark);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px;
  align-items: center; padding: 96px 0 64px;
}
.hero-badge {
  display: inline-block; padding: 9px 20px;
  border: 1px solid var(--line-gold); border-radius: 100px;
  background: rgba(200,160,50,0.07);
  color: var(--gold); font-size: 0.74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 26px;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .gold {
  color: var(--gold);
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.12rem; color: var(--dim); max-width: 560px;
  margin-bottom: 36px; line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-emblem { position: relative; display: flex; justify-content: center; }
.hero-emblem::before {
  content: ''; position: absolute; inset: -12%;
  background: radial-gradient(circle at center, rgba(200,160,50,0.18), transparent 62%);
  filter: blur(8px);
}
.hero-emblem img {
  position: relative; width: min(340px, 70vw);
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 28px rgba(200,160,50,0.22));
  animation: emblemFloat 7s ease-in-out infinite;
}
@keyframes emblemFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(20,22,26,0.75); backdrop-filter: blur(10px);
  margin-bottom: 72px; overflow: hidden;
}
.hero-stats > div {
  padding: 26px 24px; text-align: center;
  border-right: 1px solid var(--line);
}
.hero-stats > div:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1.15;
}
.hero-stat-label {
  font-size: 0.74rem; color: var(--dim); text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 600;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding: 64px 0 48px; gap: 40px; }
  .hero-emblem { order: -1; }
  .hero-emblem img { width: min(220px, 55vw); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats > div:nth-child(2) { border-right: none; }
  .hero-stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* --- SECTION HEADER --- */
.section-header { margin-bottom: 52px; }
.section-header .overline {
  display: inline-block;
  color: var(--gold); font-size: 0.76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.24em; margin-bottom: 14px;
}
.section-header p { color: var(--dim); max-width: 620px; font-size: 1.05rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 14px auto 0; }

/* --- CATEGORY CARDS --- */
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.category-card {
  position: relative; background: linear-gradient(180deg, var(--dark-2), var(--dark));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 30px; text-align: left;
  transition: all var(--transition);
}
.category-card:hover {
  border-color: var(--line-gold); transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.category-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: rgba(200,160,50,0.1); border: 1px solid var(--line-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.category-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.category-card p { font-size: 0.9rem; color: var(--dim); margin-bottom: 18px; }
.category-card .card-link {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold);
}

/* --- PRODUCT CARDS --- */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--dark-2); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: all var(--transition);
}
.product-card:hover {
  border-color: var(--line-gold); transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-img {
  position: relative; background: var(--dark-3);
  background-image: radial-gradient(ellipse at center, rgba(200,160,50,0.07), transparent 70%);
  height: 230px; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-img img { width: 78%; height: 78%; object-fit: contain; transition: transform 0.35s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img .product-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.product-info { padding: 22px; }
.product-category {
  font-size: 0.7rem; color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.16em; font-weight: 700; margin-bottom: 8px;
}
.product-info h4 { font-size: 1.02rem; margin-bottom: 8px; color: var(--white); }
.product-info .product-desc {
  font-size: 0.86rem; color: var(--dim); margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.price-current {
  font-family: var(--font-heading); font-size: 1.4rem;
  font-weight: 700; color: var(--white);
}
.price-compare { font-size: 0.9rem; color: var(--dim); text-decoration: line-through; }
.product-actions { display: flex; gap: 8px; }
.product-actions .btn { flex: 1; padding: 11px 14px; font-size: 0.74rem; }

/* --- FEATURES / VALUE PROPS --- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 22px;
}
.feature-item {
  text-align: center; padding: 36px 26px;
  background: var(--dark-2); border: 1px solid var(--line); border-radius: var(--radius);
  transition: all var(--transition);
}
.feature-item:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(200,160,50,0.1); border: 1px solid var(--line-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.5rem;
}
.feature-item h4 { margin-bottom: 10px; }
.feature-item p { font-size: 0.9rem; color: var(--dim); margin-bottom: 0; }

/* --- CTA BANNER --- */
.cta-banner {
  position: relative;
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(200,160,50,0.16), transparent 60%),
    radial-gradient(600px 300px at 10% 100%, rgba(61,107,79,0.15), transparent 60%),
    var(--dark-2);
  border: 1px solid var(--line-gold); border-radius: 20px;
  padding: 72px 48px; text-align: center;
  box-shadow: var(--shadow);
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--dim); max-width: 600px; margin: 0 auto 30px; font-size: 1.05rem; }

/* --- ABOUT PAGE --- */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-intro-text h2 { margin-bottom: 20px; }
.about-intro-text p { color: var(--dim); }
.about-image-box {
  background: radial-gradient(circle at center, rgba(200,160,50,0.1), transparent 65%), var(--dark-2);
  border: 1px solid var(--line); border-radius: 20px;
  padding: 48px; display: flex; align-items: center;
  justify-content: center; min-height: 380px;
}
.about-image-box img {
  max-height: 280px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.5)) drop-shadow(0 0 24px rgba(200,160,50,0.18));
}

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}
.value-card {
  background: var(--dark-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.value-card h4 { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.value-card p { color: var(--dim); font-size: 0.9rem; margin-bottom: 0; }

@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; gap: 36px; }
}

/* --- FFL PAGE --- */
.ffl-steps {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px; counter-reset: step;
}
.ffl-step {
  background: var(--dark-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px; position: relative;
  counter-increment: step; transition: all var(--transition);
}
.ffl-step:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.ffl-step::before {
  content: counter(step); position: absolute; top: -16px; left: 26px;
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--dark);
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(200,160,50,0.3);
}
.ffl-step h4 { margin-bottom: 10px; margin-top: 6px; }
.ffl-step p { font-size: 0.9rem; color: var(--dim); margin-bottom: 0; }

/* --- CONTACT PAGE --- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 52px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--dim); margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 15px 18px; background: var(--dark-2);
  border: 1px solid var(--line); border-radius: 10px;
  color: var(--light); font-family: var(--font-body); font-size: 0.95rem;
  transition: all var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,160,50,0.15);
}
.form-group textarea { resize: vertical; min-height: 150px; }

.contact-info-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card {
  background: var(--dark-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  transition: all var(--transition);
}
.contact-info-card:hover { border-color: var(--line-gold); }
.contact-info-card h4 { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.contact-info-card p { color: var(--dim); font-size: 0.9rem; margin-bottom: 0; }

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

/* --- SHOP FILTERS --- */
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px; flex-wrap: wrap; gap: 16px;
}
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-tab {
  padding: 10px 22px; font-size: 0.85rem; font-weight: 600;
  font-family: var(--font-body);
  background: var(--dark-2); border: 1px solid var(--line);
  border-radius: 100px; color: var(--dim); cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover { color: var(--light); border-color: var(--line-gold); }
.filter-tab.active {
  background: var(--gold); color: var(--dark); border-color: var(--gold); font-weight: 700;
}
.shop-count { font-size: 0.85rem; color: var(--dim); }

/* --- LEGAL / POLICY PAGES --- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin-top: 44px; margin-bottom: 16px; color: var(--gold); }
.legal-content h3 { font-size: 1.1rem; margin-top: 28px; margin-bottom: 12px; }
.legal-content p { color: var(--dim); margin-bottom: 16px; line-height: 1.8; }
.legal-content ul { list-style: none; padding-left: 0; margin-bottom: 16px; }
.legal-content ul li { padding: 6px 0 6px 22px; color: var(--dim); position: relative; }
.legal-content ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}

/* --- PAGE HEADER / BANNER --- */
.page-banner {
  position: relative;
  background:
    radial-gradient(800px 320px at 80% 0%, rgba(200,160,50,0.1), transparent 60%),
    var(--dark-2);
  padding: 76px 0 56px; border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 10px; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.page-banner .breadcrumb { font-size: 0.85rem; color: var(--dim); margin-bottom: 14px; }
.page-banner .breadcrumb a { color: var(--dim); }
.page-banner .breadcrumb a:hover { color: var(--gold); }
.page-banner .breadcrumb .sep { margin: 0 8px; color: var(--gold); }

/* --- FOOTER --- */
.site-footer {
  background: var(--dark-2); border-top: 1px solid var(--line);
  padding: 72px 0 0; position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(560px, 80%); height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
}
.footer-brand p { color: var(--dim); font-size: 0.9rem; margin-top: 18px; max-width: 320px; }
.footer-col h4 {
  font-size: 0.8rem; color: var(--white); text-transform: uppercase;
  letter-spacing: 0.18em; margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: var(--dim); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--dim); margin-bottom: 0; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: var(--dim); font-size: 1.1rem; }
.footer-socials a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- CART SIDEBAR --- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(3px);
  z-index: 2000; opacity: 0; visibility: hidden; transition: all var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px;
  max-width: 90vw; background: var(--dark-2);
  border-left: 1px solid var(--line-gold);
  z-index: 2001; transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: -24px 0 60px rgba(0,0,0,0.5);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px; border-bottom: 1px solid var(--line);
}
.cart-header h3 { font-size: 1.1rem; margin: 0; }
.cart-close {
  background: var(--dark-3); border: 1px solid var(--line);
  width: 38px; height: 38px; border-radius: 50%;
  color: var(--dim); font-size: 1.1rem; cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.cart-close:hover { color: var(--white); border-color: var(--line-gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty { text-align: center; color: var(--dim); padding: 48px 0; }
.cart-item {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cart-item-img {
  width: 70px; height: 70px; background: var(--dark-3); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.5rem;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.85rem; margin-bottom: 4px; }
.cart-item-info .cart-item-price { font-size: 0.95rem; color: var(--gold); font-weight: 700; }
.cart-item-remove {
  background: none; border: none; color: var(--dim); font-size: 0.72rem;
  cursor: pointer; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px;
}
.cart-item-remove:hover { color: var(--red); }
.cart-footer { padding: 24px; border-top: 1px solid var(--line); }
.cart-total {
  display: flex; justify-content: space-between; margin-bottom: 20px;
  font-family: var(--font-heading); font-size: 1.15rem;
}
.cart-total span:last-child { color: var(--gold); }

/* --- NEWSLETTER --- */
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 15px 20px; background: var(--dark);
  border: 1px solid var(--line); border-radius: 100px;
  color: var(--light); font-size: 0.92rem;
}
.newsletter-form input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,160,50,0.15);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
