/* ── Responsive Breakpoints ── */

/* Tablet landscape */
@media (max-width: 1280px) {
  .hero-slider { height: 420px; }
  .search-wrapper { display: none; }
  .category-card { flex: 0 0 calc((100% - 4 * var(--space-4)) / 5); }
  .product-card { flex: 0 0 calc((100% - 2 * var(--space-4)) / 3); }
  .review-card { flex: 0 0 calc((100% - 2 * var(--space-4)) / 3); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1180px) {
  :root { --header-height: 64px; }
  .header-top { display: none; }

  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-logo { width: 84px; }
  .site-logo-img { width: 68px; height: auto; max-width: none; }
}

/* Tablet */
@media (max-width: 992px) {
  :root { --header-height: 64px; }

  h2, .section-title { font-size: 32px; }

  .hero-slider { height: 360px; }

  .category-card { flex: 0 0 calc((100% - 3 * var(--space-3)) / 4); }

  .occasion-grid { grid-template-columns: repeat(3, 1fr); }

  .trend-card { flex: 0 0 calc((100% - var(--space-4)) / 2); }
  .product-card { flex: 0 0 calc((100% - var(--space-4)) / 2); }
  .review-card { flex: 0 0 calc((100% - var(--space-4)) / 2); }

  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --header-height: 56px; }

  .container { padding: 0 var(--space-4); }
  .header-logo { width: 72px; }
  .site-logo-img { width: 58px; height: auto; max-width: none; }
  .mobile-logo-img { width: 68px; height: auto; max-width: none; }

  .search-wrapper { display: none; }

  .hero-slider { height: 260px; }
  .hero-arrow { width: 36px; height: 36px; font-size: 14px; }

  h2, .section-title { font-size: 24px; }

  .category-card { flex: 0 0 calc((100% - 2 * var(--space-3)) / 3); }

  .occasion-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-2); }

  .trend-card { flex: 0 0 calc(85%); }
  .product-card { flex: 0 0 calc(70%); }
  .review-card { flex: 0 0 calc(85%); }

  .footer-cols { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  .shop-by-category,
  .shop-by-occasion,
  .shop-by-trend,
  .customer-favourites,
  .testimonials { padding: var(--space-8) 0; }

  .shop-by-occasion::before,
  .customer-favourites::before,
  .site-footer::before {
    background-size: 150px auto, 150px auto;
    opacity: 0.28;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .category-card { flex: 0 0 calc((100% - var(--space-3)) / 2); }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
  h2, .section-title { font-size: 20px; }
}
