/* ── BENNY'S FRAGRANCES — MOBILE RESPONSIVE ── */

/* Hide currency selector that shouldn't be there */
[class*="currency"], .shopify-currency, .currency-selector { display: none !important; }

/* ── MOBILE: up to 768px ── */
@media (max-width: 768px) {

  /* HEADER */
  .header-top {
    padding: 12px 16px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .logo-name { font-size: 11px; letter-spacing: 3px; }
  .header-icons {
    display: flex !important;
    align-items: center;
    gap: 14px;
    margin-left: auto;
  }
  .header-icons svg { width: 18px; height: 18px; }

  /* Hamburger stays left */
  .hamburger-btn { order: -1; }

  /* NAV — hide desktop, show hamburger */
  nav {
    display: none !important;
    flex-direction: column;
    gap: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    border-bottom: 1px solid #e8e4dd;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  nav.mobile-open { display: flex !important; }
  nav > a, nav > span {
    padding: 14px 20px !important;
    border-bottom: 1px solid #f0ede8 !important;
    font-size: 11px !important;
    text-align: left !important;
    width: 100%;
    display: block !important;
  }
  nav > a:last-child, nav > span:last-child { border-bottom: none !important; }

  /* Nav dropdowns on mobile */
  .nav-dropdown-trigger { position: relative !important; }
  .nav-dropdown {
    position: static !important; transform: none !important;
    box-shadow: none !important; border: none !important;
    display: none !important; background: #faf8f4 !important;
    padding: 0 !important; min-width: 100% !important;
  }
  .nav-dropdown-trigger:hover .nav-dropdown,
  .nav-dropdown-trigger.open .nav-dropdown { display: block !important; }
  .nav-dropdown a {
    padding: 12px 20px 12px 36px !important;
    font-size: 11px !important;
    border-bottom: 1px solid #f0ede8 !important;
  }

  /* Hamburger button */
  .hamburger-btn {
    display: flex !important;
    background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px;
  }
  .hamburger-btn span {
    display: block; width: 20px; height: 1.5px;
    background: #1a1a1a; transition: transform 0.3s, opacity 0.3s;
  }

  /* HERO SECTIONS */
  .page-hero { padding: 48px 20px 36px !important; }
  .page-hero-title { font-size: 42px !important; }
  .page-hero-eyebrow { font-size: 9px !important; }
  .page-hero-sub { font-size: 10px !important; }
  .back-link { font-size: 9px !important; margin-bottom: 20px !important; }

  /* PRODUCT GRIDS */
  .products-section { padding: 32px 16px !important; }
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    margin-top: 24px !important;
  }
  .prod-name { font-size: 16px !important; }
  .prod-brand { font-size: 9px !important; }
  .prod-price { font-size: 12px !important; }
  .prod-badge { font-size: 8px !important; padding: 4px 8px !important; top: 8px !important; left: 8px !important; }

  /* Section headings */
  .products-section h2 { font-size: 28px !important; }

  /* PRODUCT DETAIL PAGE */
  .product-layout { grid-template-columns: 1fr !important; gap: 24px !important; padding: 20px 16px !important; }
  .product-image-wrap { max-height: 400px; }
  .product-title { font-size: 28px !important; }
  .size-options { gap: 8px !important; }
  .size-btn { padding: 10px 16px !important; font-size: 11px !important; }

  /* FOOTER */
  footer {
    grid-template-columns: 1fr !important;
    padding: 40px 20px !important;
    gap: 32px !important;
  }
  .footer-brand-name { font-size: 18px !important; }
  .footer-bottom {
    padding: 14px 20px !important;
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center;
  }

  /* CONTACT / REQUEST FORMS */
  .contact-section, .request-section { padding: 40px 20px !important; }
  .contact-form input, .contact-form textarea { font-size: 14px !important; }

  /* POLICY PAGES */
  .policy-section { padding: 40px 20px !important; }

  /* HOME PAGE SPECIFICS */
  .hero-section { min-height: 70vh !important; }
  .hero-title { font-size: 48px !important; }
  .hero-subtitle { font-size: 11px !important; }
  .brand-ticker { font-size: 10px !important; padding: 10px !important; }
  .announcement-bar { font-size: 10px !important; padding: 8px 12px !important; letter-spacing: 1.5px !important; }
}

/* ── SMALL PHONES: up to 400px ── */
@media (max-width: 400px) {
  .page-hero-title { font-size: 32px !important; }
  .hero-title { font-size: 36px !important; }
  .products-grid { gap: 12px !important; }
  .prod-name { font-size: 14px !important; }
  .footer-brand-name { font-size: 16px !important; }
}

/* ── DESKTOP: hamburger hidden but keeps space ── */
@media (min-width: 769px) {
  .hamburger-btn { visibility: hidden !important; }
}
