/* ============================================
   ALTA MODA ITALIANA — Responsive Design
   ============================================ */

/* ---- Mobile (< 768px) ---- */
@media (max-width: 767px) {
  :root {
    --nav-height: var(--nav-height-mobile);
  }

  .navbar__nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .lang-switcher {
    display: none;
  }

  .mobile-menu .lang-switcher {
    display: flex;
    margin-top: auto;
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-gray-100);
  }

  /* Hero */
  .hero {
    min-height: 500px;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero__desc {
    font-size: var(--text-base);
  }

  /* Grids */
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }

  .designers-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

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

  /* Product */
  .product-layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .product-gallery {
    position: static;
  }

  .product-info__actions {
    flex-direction: column;
  }

  /* Cart */
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .cart-item__image {
    width: 90px;
    height: 120px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  /* Shows */
  .show-card {
    width: 280px;
  }

  /* Sections */
  .section, .home-section {
    padding: var(--space-10) 0;
  }

  .section-header {
    margin-bottom: var(--space-8);
  }

  /* Collections */
  .collections-header {
    height: 280px;
  }

  .collections-header__name {
    font-size: var(--text-2xl);
  }
}

/* ---- Tablet (768px - 1023px) ---- */
@media (min-width: 768px) and (max-width: 1023px) {
  .hamburger {
    display: flex;
  }

  .navbar__nav {
    display: none;
  }

  .designers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-layout {
    gap: var(--space-8);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .cart-layout {
    grid-template-columns: 1fr 300px;
    gap: var(--space-8);
  }
}

/* ---- Desktop (1024px+) ---- */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .navbar__nav {
    display: flex;
  }

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

/* ---- Wide (1440px+) ---- */
@media (min-width: 1440px) {
  .container {
    padding: 0 var(--space-12);
  }
}

/* ---- Touch Devices ---- */
@media (hover: none) {
  .card:hover {
    transform: none;
    box-shadow: none;
  }

  .card:hover .card__image {
    transform: none;
  }
}

/* ---- Print ---- */
@media print {
  .navbar, .footer, .mobile-menu, .toast {
    display: none !important;
  }

  .main-content {
    padding-top: 0;
  }

  .screen {
    display: block !important;
    opacity: 1 !important;
  }
}
