/* =============================================
   SOUNDLAB & GEAR HUB — style.css
   Dark premium music/studio aesthetic
   ============================================= */

/* --- CSS Variables --- */
:root {
  --bg:         #0a0a0a;
  --bg-2:       #111111;
  --bg-3:       #161616;
  --bg-card:    #131313;
  --border:     rgba(255,255,255,0.07);
  --border-glow:rgba(212,175,55,0.3);

  --gold:       #d4af37;
  --gold-light: #f0d060;
  --gold-dim:   rgba(212,175,55,0.15);
  --blue:       #4a9eff;
  --blue-dim:   rgba(74,158,255,0.12);
  --purple:     #9b6dff;
  --purple-dim: rgba(155,109,255,0.1);

  --text:       #e8e8e8;
  --text-muted: #777;
  --text-dim:   #555;

  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-card: 0 4px 40px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 30px rgba(212,175,55,0.15);
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* --- Typography helpers --- */
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.section-title span { color: var(--gold); }
.section-desc { color: var(--text-muted); max-width: 520px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8960d 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.btn--small {
  padding: 9px 20px;
  font-size: 0.82rem;
}

.btn--blue {
  background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(74,158,255,0.3);
}
.btn--blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,158,255,0.45);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo em { color: var(--gold); font-style: normal; }
.logo-icon { color: var(--gold); font-size: 1.3rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #b8960d 100%) !important;
  color: #0a0a0a !important;
  padding: 10px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.nav-cta:hover { box-shadow: 0 6px 28px rgba(212,175,55,0.5) !important; }

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 12px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  animation: float1 8s ease-in-out infinite;
}
.hero-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,158,255,0.15) 0%, transparent 70%);
  bottom: 100px; right: -100px;
  animation: float2 10s ease-in-out infinite;
}
.hero-orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(155,109,255,0.12) 0%, transparent 70%);
  bottom: 150px; left: -50px;
  animation: float1 12s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

@keyframes float1 { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-30px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold);
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.15s both;
}
.hero-title--accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: fadeInUp 0.8s ease 0.25s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: fadeInUp 0.8s ease 0.45s both;
}
.hero-stat { padding: 0 36px; text-align: center; }
.hero-stat span {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat p { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.8)} 50%{opacity:1;transform:scaleY(1)} }

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 100px 0;
  background: var(--bg-2);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.service-card--featured {
  border-color: rgba(212,175,55,0.3);
  background: linear-gradient(145deg, #161610 0%, #131313 100%);
}
.service-card--featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.service-featured-label {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: inline-block;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tag {
  font-size: 0.75rem;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products {
  padding: 100px 0;
  background: var(--bg);
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
}
.filter-btn:hover { border-color: rgba(212,175,55,0.3); color: var(--text); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(212,175,55,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 30px rgba(212,175,55,0.08);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0d0d0d;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 2;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-info {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
}
.product-price span {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 400;
  margin-left: 2px;
}

.order-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #b8960d 100%);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
  white-space: nowrap;
}
.order-btn:hover {
  box-shadow: 0 6px 24px rgba(212,175,55,0.5);
  transform: translateY(-2px);
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 100px 0;
  background: var(--bg-2);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,158,255,0.4), transparent);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.15;
}
.about-text h2 span { color: var(--gold); }
.about-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.about-text .btn { margin-top: 16px; }

.about-features { display: flex; flex-direction: column; gap: 28px; }
.about-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-feature:hover { border-color: var(--border-glow); }

.af-icon {
  width: 32px; height: 32px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.about-feature p { font-size: 0.85rem; color: var(--text-muted); }

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 100px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-item span { font-size: 1.4rem; }
.contact-item h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  font-size: 0.9rem;
}
.contact-item p { color: var(--text-muted); font-size: 0.9rem; }

.contact-cta-box {
  margin-top: 40px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(74,158,255,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  text-align: center;
}
.contact-cta-box p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(74,255,128,0.08);
  border: 1px solid rgba(74,255,128,0.2);
  border-radius: var(--radius);
  color: #4ade80;
  font-size: 0.9rem;
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.footer-copy { color: var(--text-dim); font-size: 0.83rem; }

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

/* =============================================
   MODAL / CART
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.modal-close:hover { background: var(--border); color: #fff; }

.modal-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--border);
}
.modal-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.modal-header p { color: var(--text-muted); font-size: 0.88rem; }

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 36px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.modal-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cart-section { margin-bottom: 28px; }
.order-section { border-top: 1px solid var(--border); padding-top: 24px; }

/* Cart empty state */
.cart-empty {
  text-align: center;
  padding: 40px;
  color: var(--text-dim);
}
.cart-empty span { font-size: 2rem; display: block; margin-bottom: 12px; }
.cart-empty p { font-size: 0.9rem; }

/* Cart item */
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 70px; height: 55px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 0.82rem;
  color: var(--gold);
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
}
.qty-btn {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.qty-btn:hover { background: var(--gold); color: #0a0a0a; }

.qty-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
  color: #fff;
}

.cart-item-subtotal {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.cart-item-remove {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: underline;
  transition: var(--transition);
}
.cart-item-remove:hover { color: #ff5555; }

/* Cart total */
.cart-total {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cart-total-row--main {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
  margin-bottom: 0;
}
.cart-total-row--main span:last-child { color: var(--gold); }

/* Modal footer */
.modal-footer {
  padding: 20px 36px 28px;
  border-top: 1px solid var(--border);
}
#modalFooterEmpty, #modalFooterCart {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Success state */
.order-success {
  text-align: center;
  padding: 16px 0;
}
.success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.order-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.order-success p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

/* Floating cart FAB */
.cart-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8960d 100%);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(212,175,55,0.45);
  z-index: 1500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(212,175,55,0.6);
}
.cart-fab span {
  background: #0a0a0a;
  color: var(--gold);
  border-radius: 50%;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }

  .nav-inner { padding: 16px 20px; }

  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 20px; }
  .hero-stat span { font-size: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

  .modal { border-radius: var(--radius-lg); }
  .modal-header { padding: 24px 24px 20px; }
  .modal-body { padding: 20px 24px; }
  .modal-footer { padding: 16px 24px 24px; }

  .cart-item { grid-template-columns: 60px 1fr auto; gap: 12px; }

  .footer-inner { flex-direction: column; text-align: center; }

  .contact-form { padding: 28px 20px; }

  #modalFooterCart { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .hero-stat-divider { display: none; }
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.78rem; }
  .product-grid { grid-template-columns: 1fr; }
  .cart-fab { bottom: 20px; right: 20px; padding: 12px 18px; font-size: 0.85rem; }
}
