/* Responsive styles */
@media (max-width: 1199px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .carousel-track .product-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
  .featured-carousel .carousel-track .product-card {
    flex: 0 0 220px;
    max-width: 220px;
  }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight { gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    box-shadow: var(--shadow-md);
    transition: left var(--transition);
    z-index: 999;
    gap: 0;
  }
  .main-nav.open { left: 0; }
  .main-nav a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .mobile-toggle { display: block; z-index: 1001; }
  .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,22,18,0.5);
    z-index: 998;
    display: none;
  }
  .nav-overlay.show { display: block; }

  .hero-slider { height: 450px; }
  .hero-content { margin-left: 20px; max-width: 90%; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-track .product-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
  .featured-carousel .carousel-track .product-card {
    flex: 0 0 200px;
    max-width: 200px;
  }
  .promo-grid { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }

  .banner-content { padding: 40px; }
  .banner-content h2 { font-size: 2rem; }

  .cart-table thead { display: none; }
  .cart-table tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px;
  }
  .cart-table td {
    display: block;
    padding: 8px 0;
    border: none;
    text-align: right;
  }
  .cart-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: 600;
    color: var(--text-heading);
  }
  .cart-product { justify-content: flex-end; }
}

@media (max-width: 767px) {
  .section { padding: 50px 0; }
  .hero-slider { height: 380px; }
  .hero-content h1 { font-size: 1.75rem; }
  .hero-nav { width: 36px; height: 36px; font-size: 16px; }

  .product-grid { grid-template-columns: 1fr; }
  .carousel-track .product-card {
    flex: 0 0 calc(100% - 8px);
    max-width: calc(100% - 8px);
  }
  .featured-carousel .carousel-track .product-card {
    flex: 0 0 170px;
    max-width: 170px;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .trust-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .spotlight-features { grid-template-columns: 1fr; }

  .brand-strip { gap: 24px; }
  .brand-strip span { font-size: 14px; }

  .full-banner { min-height: 280px; margin: 0 10px; }
  .banner-content { padding: 30px; }
  .banner-content h2 { font-size: 1.5rem; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius-pill); }
  .newsletter-form button { border-radius: var(--radius-pill); }

  .header-actions { gap: 8px; }
  .header-icon { width: 36px; height: 36px; }

  .product-actions { flex-direction: column; }
  .product-actions .btn { width: 100%; }
}
