/* ==========================================================================
   PASTICCERIA ANTICA DOLCERIA - DESIGN SYSTEM & STYLESHEET
   100% Autonomous Vanilla CSS
   ========================================================================== */

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

:root {
  /* Color Palette */
  --bg-primary: #FDFBF7;
  --bg-secondary: #E8DCCB;
  --bg-dark: #1B110A;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F7F3EB;
  
  --text-main: #2A1B10;
  --text-muted: #6B5B52;
  --text-light: #FDFBF7;
  
  --gold-primary: #C9A66B;
  --gold-hover: #D8B77D;
  --gold-border: rgba(201, 166, 107, 0.4);
  --gold-glow: rgba(201, 166, 107, 0.25);
  
  --accent-brown: #5A3A22;
  --nav-bg: rgba(42, 27, 16, 0.92);
  --nav-border: rgba(255, 255, 255, 0.12);
  
  --shadow-sm: 0 2px 8px rgba(27, 17, 10, 0.06);
  --shadow-md: 0 8px 24px rgba(27, 17, 10, 0.12);
  --shadow-lg: 0 16px 40px rgba(27, 17, 10, 0.2);

  /* Typography */
  --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;

  /* Layout */
  --header-height: 80px;
  --container-max: 1400px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Mode Overrides */
html.dark {
  --bg-primary: #1B110A;
  --bg-secondary: #2A1B10;
  --bg-card: #24160E;
  --bg-card-alt: #2D1D13;
  
  --text-main: #FDFBF7;
  --text-muted: #BAA99D;
  --text-light: #FDFBF7;
  
  --nav-bg: rgba(27, 17, 10, 0.94);
  --nav-border: rgba(201, 166, 107, 0.2);
  --gold-border: rgba(201, 166, 107, 0.35);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img, video {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

/* Common Layout Elements */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-pad {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.eyebrow {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-primary);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Buttons */
.gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold-primary);
  color: #1B110A !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.95rem 2rem;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 14px var(--gold-glow);
}

.gold-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.95rem 2rem;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.outline-btn:hover {
  background: var(--gold-primary);
  color: #1B110A;
}

/* Header & Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--nav-border);
  color: var(--text-light);
  height: var(--header-height);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 10px rgba(201, 166, 107, 0.3);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.15;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.brand-text .gold {
  color: var(--gold-primary);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: rgba(253, 251, 247, 0.85);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-primary);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.action-btn:hover {
  color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.08);
}

.lang-btn {
  border: 1px solid rgba(201, 166, 107, 0.4);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.cart-icon-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-primary);
  color: #1B110A;
  font-size: 0.7rem;
  font-weight: 700;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
  padding: 0.5rem;
  color: var(--text-light);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5.5rem;
  padding-top: calc(var(--header-height) + 2rem);
  overflow: hidden;
  color: #FDFBF7;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 17, 10, 0.95) 0%, rgba(27, 17, 10, 0.55) 45%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  max-width: 900px;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 680px;
  color: rgba(253, 251, 247, 0.85);
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Page Banner / Mini Hero */
.page-banner {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  color: #FDFBF7;
}

.page-banner .hero-video-bg {
  z-index: 1;
}

.page-banner .hero-overlay {
  background: rgba(27, 17, 10, 0.65);
  z-index: 2;
}

.page-banner .hero-content {
  z-index: 3;
}

.page-banner h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

/* Product Cards Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.product-image-wrap {
  aspect-ratio: 1 / 1;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-primary);
  color: #1B110A;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-border);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.add-cart-btn {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--gold-primary);
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.add-cart-btn:hover {
  background: var(--gold-primary);
  color: #1B110A;
}

/* Category Filter Chips */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.filter-chip {
  padding: 0.65rem 1.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  border: 1px solid var(--gold-border);
  background: transparent;
  color: var(--text-main);
  border-radius: var(--radius-sm);
}

.filter-chip:hover {
  border-color: var(--gold-primary);
}

.filter-chip.active {
  background: var(--gold-primary);
  color: #1B110A;
  border-color: var(--gold-primary);
}

/* Split Video / Lab Section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--accent-brown);
  color: #FDFBF7;
  overflow: hidden;
}

.split-video-wrap {
  min-height: 520px;
  position: relative;
}

.split-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  align-items: center;
  padding: 4.5rem 3.5rem;
}

.split-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.25rem;
}

.split-content p {
  color: rgba(253, 251, 247, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Feature Grid 4 Pillars */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
}

.feature-box {
  background: var(--bg-card);
  padding: 2.75rem 1.75rem;
  text-align: center;
  transition: var(--transition);
}

.feature-box:hover {
  background: var(--bg-card-alt);
}

.feature-icon {
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
  font-size: 2rem;
}

.feature-box h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Masonry / Photo Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-secondary);
  cursor: pointer;
}

.gallery-item.row-span-2 {
  grid-row: span 2;
  aspect-ratio: unset;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Testimonials / Reviews */
.reviews-section {
  background: var(--bg-secondary);
}

html.dark .reviews-section {
  background: #23160D;
}

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

.review-card {
  border: 1px solid var(--gold-border);
  background: var(--bg-primary);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
}

.star-rating {
  color: var(--gold-primary);
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.review-author {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--gold-primary);
}

/* Contact & Map Section */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-block h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}

.contact-details-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.contact-details-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.contact-details-list svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.map-frame {
  width: 100%;
  height: 300px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
}

/* Forms */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  padding: 2.5rem;
  border-radius: var(--radius-sm);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.field {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: var(--bg-primary);
  border: 1px solid var(--gold-border);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.field:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px var(--gold-glow);
}

textarea.field {
  resize: vertical;
  min-height: 140px;
}

/* Footer */
.site-footer {
  background: #150C07;
  color: #FDFBF7;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(201, 166, 107, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(253, 251, 247, 0.7);
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-overlay.open .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-size: 1.25rem;
}

.close-btn {
  color: var(--text-main);
  font-size: 1.5rem;
  line-height: 1;
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem 1.75rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--gold-border);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.cart-footer {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--gold-border);
  background: var(--bg-card-alt);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #FDFBF7;
  font-size: 2rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: #1B110A;
  color: #FDFBF7;
  border: 1px solid var(--gold-primary);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer a {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-heading);
  color: #FDFBF7;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-menu-toggle { display: block; }
  
  .split-section { grid-template-columns: 1fr; }
  .split-video-wrap { min-height: 380px; }
  
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-height: 70px; }
  .section-pad { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.row-span-2 { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-drawer { max-width: 100%; }
}
