/* ==========================================================================
   MAYFAIR HARROW - RESPONSIVE & MOBILE-FIRST OPTIMIZATIONS
   ========================================================================== */

/* Mobile Touch Target Standards (Min 48px height for all actions) */
button, 
.btn, 
.tab-btn, 
.form-input, 
.form-select, 
.radio-card, 
.accordion-header, 
.header-btn {
  min-height: 48px;
  touch-action: manipulation;
}

/* Mobile Screen Adjustments (< 600px) */
@media (max-width: 600px) {
  :root {
    --text-h1-size: 2.1rem;
    --text-h2-size: 1.65rem;
    --text-h3-size: 1.2rem;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 72px;
  }

  .site-header {
    height: 60px;
  }

  .brand-logo {
    height: 17px;
    max-width: 150px;
  }

  .footer-brand-logo {
    height: 18px;
    max-width: 180px;
  }

  .header-btn {
    font-size: 0.7rem;
    padding: 0 4px;
    letter-spacing: 0.18em;
  }

  .drawer {
    max-width: 100vw;
    width: 100vw;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-content {
    padding: var(--space-lg) var(--space-sm);
  }

  .statement-text {
    font-size: 1rem;
    line-height: 1.7;
  }

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

  .tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    min-width: 150px;
    padding: 12px 14px;
    font-size: 0.7rem;
  }

  .cart-item-row {
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
  }

  .cart-item-thumb {
    width: 64px;
    height: 64px;
  }
}

/* Tablet & Mid Screen (601px - 899px) */
@media (min-width: 601px) and (max-width: 899px) {
  .brand-logo {
    height: 20px;
    max-width: 180px;
  }

  .footer-brand-logo {
    height: 22px;
    max-width: 220px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Desktop Screens (>= 900px) */
@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .header-menu-btn {
    display: none;
  }

  .brand-logo {
    height: 24px;
    max-width: 240px;
  }

  .footer-brand-logo {
    height: 24px;
    max-width: 240px;
  }
}

@media (min-width: 1200px) {
  .desktop-nav {
    gap: 36px;
  }
}

/* Wide Desktop Screens (>= 1200px) */
@media (min-width: 1200px) {
  :root {
    --text-h1-size: 3rem;
  }
}

/* Print Stylesheet for broadsheet aesthetic */
@media print {
  .site-header, .site-footer, .drawer, .drawer-backdrop, .toast-container {
    display: none !important;
  }
  body {
    background: #FFFFFF !important;
    color: #000000 !important;
  }
}
