/* Responsive Media Queries */

@media (max-width: 1200px) {
  .nav-container {
    padding: 0 20px;
  }
  .nav-links {
    gap: 25px;
  }
}

@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }
  
  /* Hide standard header links, show hamburger */
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Grid reductions */
  .collections-grid {
    grid-template-columns: 1fr !important;
  }
  .collections-card {
    height: 400px !important;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .category-card {
    height: 300px !important;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .slide-item {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  
  .offer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .lookbook-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }
  .footer-newsletter {
    grid-column: span 2;
  }
  
  .shop-page-wrapper {
    grid-template-columns: 1fr !important;
  }
  
  .shop-sidebar {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 40px;
  }
  
  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .cart-page-wrapper {
    grid-template-columns: 1fr !important;
  }
  
  .checkout-steps-wrapper {
    grid-template-columns: 1fr !important;
  }
  .checkout-summary-box {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
  
  .tracking-timeline {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    padding-left: 30px;
  }
  
  .tracking-timeline::before {
    top: 0;
    left: 25px;
    width: 2px;
    height: 100%;
  }
  
  .tracking-timeline-progress {
    top: 0;
    left: 25px;
    width: 2px;
    height: 60%;
  }
  
  .timeline-node {
    flex-direction: row;
    gap: 20px;
    width: 100%;
    text-align: left;
  }
  
  .tracking-meta-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.6rem !important;
  }
  
  .categories-grid {
    grid-template-columns: 1fr !important;
  }
  .category-card {
    height: 250px !important;
  }
  
  .products-grid {
    grid-template-columns: 1fr !important;
  }
  .slide-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-newsletter {
    grid-column: span 1;
  }
  
  .cart-table th:nth-child(2),
  .cart-table td:nth-child(2),
  .cart-table th:nth-child(4),
  .cart-table td:nth-child(4) {
    display: none; /* Hide prices on very small screens for layout spacing */
  }
  
  .form-row {
    grid-template-columns: 1fr !important;
  }
  
  .step-header {
    flex-direction: column;
    gap: 10px;
  }
}
