/* ==========================================================================
   MELBAN HARDWARE - RESPONSIVE STYLES
   Breakpoints: 1200px, 992px, 768px, 576px
   ========================================================================== */

@media (max-width: 1200px) {
  .hero-slide {
    padding: 3rem 2rem;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .nav-links, .header-search {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-slide {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }
  .hero-slide-content {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-slide-image {
    max-height: 280px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .shop-container {
    grid-template-columns: 1fr !important;
  }
  .shop-sidebar {
    display: none;
  }
  .shop-sidebar.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 200;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
  }
  .product-detail-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.35rem; }

  .section-padding {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow.prev { left: 0.5rem; }
  .slider-arrow.next { right: 0.5rem; }

  .cart-grid, .checkout-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .grid-auto-fit {
    grid-template-columns: 1fr;
  }
}
