/* ============================================================
   Sathik Groups — Mobile-First Responsive Stylesheet
   Priority: Mobile users (< 768px) get the best experience
   ============================================================ */

/* Hide mobile nav actions container on desktop */
.nav-mobile-actions {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.625rem;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 101;
  border-radius: var(--radius-md);
  transition: background 0.2s;
  /* large tap target for thumbs */
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.mobile-toggle:active {
  background: rgba(15, 23, 42, 0.1);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: #0F172A;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

/* X animation when menu is open */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ──────────────────────────────────────────────────────────
   MOBILE STICKY BOTTOM ACTION BAR
   ────────────────────────────────────────────────────────── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #ffffff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.10);
  padding: 0.4rem 0.625rem;
  /* safe area inset for iOS home indicator */
  padding-bottom: calc(0.4rem + env(safe-area-inset-bottom, 0px));
  gap: 0.375rem;
  height: 3.8rem;
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  padding: 0.2rem 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.005em;
  min-height: auto;
  text-align: center;
  line-height: 1.15;
  transition: opacity 0.15s, transform 0.15s;
}

.mobile-bar-btn .btn-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.mobile-bar-btn .btn-text {
  display: block;
}

.mobile-bar-btn:active {
  opacity: 0.85;
  transform: scale(0.97);
}

.mobile-bar-btn.bath-kitchen {
  background-color: var(--accent);
  color: #ffffff;
}

.mobile-bar-btn.plumbing {
  background-color: #0b5294;
  color: #ffffff;
}

.mobile-bar-btn.hardware {
  background-color: #1e293b;
  color: #ffffff;
}

/* ──────────────────────────────────────────────────────────
   NAVBAR SCROLL STATE
   ────────────────────────────────────────────────────────── */
.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.1);
}

/* ──────────────────────────────────────────────────────────
   BODY LOCK WHEN MENU / MODAL IS OPEN
   ────────────────────────────────────────────────────────── */
body.menu-open,
body.modal-open {
  overflow: hidden;
  /* prevent iOS bounce scroll */
  position: fixed;
  width: 100%;
}

/* ============================================================
   TABLET BREAKPOINT — max-width: 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-ticker-wrapper {
    padding: 0.25rem 0;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .nav-menu {
    gap: 1.1rem;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .nav-phone-btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
    gap: 0.35rem;
  }
  .brand-name {
    font-size: 1.15rem;
    letter-spacing: 0.16em;
    width: 100%;
  }
  .brand-sub {
    font-size: 0.54rem;
    letter-spacing: 0.065em;
    width: 100%;
  }
}

/* ============================================================
   MOBILE BREAKPOINT — max-width: 768px
   Priority zone: Most of your users are HERE
   ============================================================ */
@media (max-width: 768px) {

  /* ── Viewport & Global ── */
  .container {
    padding: 0 1rem;
    box-sizing: border-box;
    max-width: 100%;
  }

  .section {
    padding: 1.75rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  /* ── Mobile Navbar & Brand Alignment ── */
  .navbar {
    height: 3.5rem !important;
  }
  .navbar-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    padding: 0 0.75rem !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
  }
  .mobile-toggle {
    display: flex;
    margin-right: 0;
    padding: 0.4rem;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 105;
  }
  .navbar .nav-brand {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    max-width: calc(100% - 90px) !important;
    justify-content: center !important;
    white-space: nowrap !important;
    z-index: 101 !important;
    margin: 0 auto !important;
  }
  .brand-logo-icon {
    width: 2rem !important;
    height: 2rem !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
  }
  .brand-icon {
    width: 1.95rem !important;
    height: 1.95rem !important;
    font-size: 0.8rem !important;
    border-radius: 5px !important;
    flex-shrink: 0;
  }
  .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    text-align: left;
  }
  .brand-name {
    font-size: 0.95rem !important;
    line-height: 1.15 !important;
    letter-spacing: 0.14em !important;
    color: #0F172A !important;
    width: 100% !important;
  }
  .brand-sub {
    font-size: 0.45rem !important;
    letter-spacing: 0.04em !important;
    line-height: 1 !important;
    margin-top: 2px !important;
    color: #B45309 !important;
    width: 100% !important;
  }
  .mobile-sticky-bar {
    display: none !important;
  }

  /* Floating WhatsApp Button Mobile position */
  .whatsapp-fab {
    bottom: 1.5rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  }
  .whatsapp-fab-icon {
    width: 26px;
    height: 26px;
  }

  .nav-mobile-actions {
    display: flex !important;
    align-items: center;
    gap: 0.25rem;
    z-index: 105;
    margin-left: auto;
    flex-shrink: 0;
  }

  .mobile-nav-icon-btn,
  .mobile-cart-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    color: #0F172A !important;
    position: relative;
    z-index: 105;
    border-radius: var(--radius-md);
    transition: background 0.2s;
    text-decoration: none;
  }

  .mobile-nav-icon-btn:active,
  .mobile-cart-btn:active {
    background: rgba(15, 23, 42, 0.1) !important;
  }

  .cart-badge-mobile {
    position: absolute;
    top: 0;
    right: 0;
    background: #C2410C !important;
    color: white !important;
    font-size: 0.55rem;
    font-weight: 700;
    min-width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #BDC4BE !important;
  }

  .nav-actions-desktop {
    display: none !important;
  }

  /* Standard body padding without sticky bottom bar */
  body {
    padding-bottom: 0;
  }

  /* ── Mobile Navigation Drawer (Sage Gray Theme) ── */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #BDC4BE !important;
    border-top: 1px solid rgba(15, 23, 42, 0.12) !important;
    border-bottom: 2px solid #C2410C !important;
    padding: 1.25rem 1rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    animation: menuSlideDown 0.25s ease;
  }

  @keyframes menuSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.875rem 0.5rem;
    font-size: 1rem;
    font-weight: 650;
    color: #0F172A !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
    min-height: 48px;
  }

  .nav-link:hover, .nav-link.active {
    color: #C2410C !important;
  }

  .nav-link:last-child {
    border-bottom: none !important;
  }

  .nav-link.active::after {
    display: none;
  }

  /* Mobile Products dropdown — always visible inline */
  .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0.5rem 1rem;
    min-width: auto;
    background: rgba(15, 23, 42, 0.06) !important;
    border-left: 2px solid #C2410C !important;
    margin: 0 0 0.25rem 0.25rem;
  }

  .dropdown-item {
    padding: 0.625rem 0.75rem;
    font-size: 0.9375rem;
    color: #0F172A !important;
    min-height: 44px;
  }

  .dropdown-item:hover {
    color: #C2410C !important;
  }

  /* Mobile-only CTA buttons inside menu */
  .mobile-only-actions {
    display: flex !important;
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.25rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.12) !important;
  }

  /* ── Splash Screen ── */
  .splash-title {
    font-size: 2.25rem;
    letter-spacing: 0.08em;
  }
  .splash-crest {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2rem;
  }
  .splash-progress-bar {
    width: 80vw;
    max-width: 280px;
  }

  /* ── Hero Section ── */
  .hero {
    padding: 0;
    font-family: 'Times New Roman', Times, serif !important;
  }
  .hero-title {
    font-size: clamp(1.65rem, 3.8vw, 2.35rem);
    line-height: 1.2;
    letter-spacing: 0.01em;
    font-family: 'Times New Roman', Times, serif !important;
    color: #ffffff !important;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.65rem;
    line-height: 1.55;
    font-family: 'Times New Roman', Times, serif !important;
    color: #ffffff !important;
  }
  .hero-actions {
    display: flex;
    flex-direction: row;
    gap: 0.85rem;
    margin-bottom: 1.65rem;
  }
  .hero-actions .btn {
    min-height: 44px;
    padding: 0.75rem 1.65rem;
    font-size: 0.82rem;
    font-family: 'Times New Roman', Times, serif !important;
  }

  /* ── Stats Bar (Translucent Glass & Horizontal 2x2 on Tablet) ── */
  .stats-strip-section {
    margin-top: -2.5rem !important;
    margin-bottom: 2rem !important;
  }
  .stats-glass-card {
    padding: 1.5rem 1.25rem !important;
    border-radius: 16px !important;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem 1rem !important;
  }
  .stat-card:not(:last-child)::after {
    display: none !important;
  }
  .stat-card:nth-child(1), .stat-card:nth-child(2) {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 0.75rem;
  }
  .stat-number {
    font-size: 2.1rem !important;
    color: #0F172A !important;
  }
  .stat-label {
    font-size: 0.75rem !important;
    color: #334155 !important;
  }

  /* ── Business Divisions ── */
  .business-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .business-header {
    height: 8rem;
    font-size: 3.5rem;
  }

  /* ── Brands Marquee Ticker ── */
  .brand-bar-section {
    padding: 2.75rem 0 2rem;
  }
  .brand-chip {
    padding: 0.75rem 1.25rem;
    min-width: 175px;
    height: 80px;
  }
  .brand-logo-raw {
    max-width: 140px;
    max-height: 58px;
  }
  .brand-logo-raw[alt*="GROHE"],
  .brand-logo-raw[alt*="Grohe"] {
    max-width: 105px;
    max-height: 40px;
  }

  /* ── Section Header Flex Alignment ── */
  .section-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }
  .section-header-flex .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Products Grid ── */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .product-card {
    flex-direction: row !important;
    align-items: stretch;
    min-height: 175px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    overflow: hidden;
  }
  .product-image {
    width: 150px !important;
    height: 100% !important;
    flex-shrink: 0;
    padding: 0.5rem !important;
    border-right: 1px solid var(--border);
    border-bottom: none !important;
    aspect-ratio: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-image img {
    object-fit: contain;
    max-height: 100%;
    max-width: 100%;
  }
  .product-info {
    padding: 0.75rem 1rem !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
  }
  .product-brand {
    font-size: 0.65rem !important;
    margin-bottom: 0.15rem !important;
  }
  .product-name {
    font-size: 0.85rem !important;
    margin-bottom: 0.25rem !important;
    line-height: 1.25;
  }
  .product-sku {
    font-size: 0.65rem !important;
    margin-bottom: 0.5rem !important;
  }
  .product-card-footer {
    flex-direction: column !important;
    gap: 0.35rem !important;
    margin-top: auto !important;
    width: 100% !important;
  }
  .product-card-footer .btn {
    width: 100% !important;
    flex: none !important;
    margin: 0 !important;
    min-height: 32px !important;
    font-size: 0.75rem !important;
    padding: 0.2rem 0.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Why Choose Us ── */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .trust-card {
    padding: 1.5rem 1.25rem;
  }

  /* ── Projects ── */
  .project-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* ── CTA Banner ── */
  .cta-banner {
    flex-direction: column;
    padding: 2rem 1.25rem;
    text-align: center;
    border-radius: var(--radius-lg);
    gap: 1.75rem;
  }
  .cta-banner-title {
    font-size: 1.5rem;
  }
  .cta-banner-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }
  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* ── Modal ── */
  .modal-card {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
  }
  .modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }
  .modal-body {
    max-height: 75vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* ── Forms ── */
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 1rem; /* prevents iOS auto-zoom on focus (must be ≥16px equiv) */
    padding: 0.875rem 1rem;
    min-height: 48px;
  }
  .form-textarea {
    min-height: 100px;
  }

}

/* ============================================================
   Sathik Groups — Mobile & Responsive Style Overrides
   ============================================================ */

/* ── Homepage Stores Section ── */
.homepage-stores-section {
  display: block;
  padding: 4.5rem 0;
  background: var(--surface-light, #f8fafc);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.homepage-stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.homepage-store-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  background: var(--bg-surface, #ffffff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius-lg, 16px);
  padding: 2rem 1.5rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s ease, border-color 0.22s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.homepage-store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.homepage-store-card:active {
  transform: translateY(-2px);
}

.homepage-store-card.bath-kitchen {
  border-top: 4px solid var(--accent, #ea580c);
}
.homepage-store-card.bath-kitchen:hover {
  border-color: var(--accent, #ea580c);
}

.homepage-store-card.plumbing {
  border-top: 4px solid #0b5294;
}
.homepage-store-card.plumbing:hover {
  border-color: #0b5294;
}

.homepage-store-card.hardware {
  border-top: 4px solid #1e293b;
}
.homepage-store-card.hardware:hover {
  border-color: #1e293b;
}

.store-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  flex: 1;
}

.store-card-icon {
  font-size: 2.25rem;
  background: var(--surface-light, #f8fafc);
  padding: 0.625rem;
  border-radius: var(--radius-md, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
}

.store-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--text-dark, #0F172A);
  line-height: 1.3;
}

.store-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted, #64748B);
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

.store-card-arrow {
  font-size: 1.25rem;
  color: var(--primary-600, #0284c7);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: 700;
  margin-top: auto;
  transition: transform 0.2s ease;
}

.homepage-store-card:hover .store-card-arrow {
  transform: translateX(4px);
}

/* ============================================================
   SMALL MOBILE — max-width: 480px
   ============================================================ */
@media (max-width: 480px) {
  .splash-title {
    font-size: 1.75rem;
    letter-spacing: 0.06em;
  }
  .splash-sub {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
  }

  .hero-title {
    font-size: 1.45rem;
    font-family: 'Times New Roman', Times, serif !important;
    color: #ffffff !important;
  }

  .brand-chip {
    padding: 0.6rem 1rem;
    min-width: 145px;
    height: 70px;
    border-radius: 12px;
  }
  .brand-logo-raw {
    max-width: 120px;
    max-height: 48px;
  }
  .brand-logo-raw[alt*="GROHE"],
  .brand-logo-raw[alt*="Grohe"] {
    max-width: 88px;
    max-height: 34px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.875rem;
  }
}

/* ============================================================
   HERO BACKGROUND VIDEO RESPONSIVE TOGGLE
   ============================================================ */
@media (max-width: 768px) {
  .desktop-video {
    display: none !important;
  }
  .mobile-video {
    display: block !important;
  }
}

@media (max-width: 360px) {
  .brand-name {
    font-size: 0.875rem;
  }
  .mobile-bar-btn {
    font-size: 0.7rem;
    padding: 0.625rem 0.25rem;
  }
  .hero-title {
    font-size: 1.3rem;
    font-family: 'Times New Roman', Times, serif !important;
    color: #ffffff !important;
  }
}

/* ============================================================
   HERO PHONE LINK
   ============================================================ */
.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.hero-phone-link:hover {
  color: #ffffff;
}

/* ============================================================
   MOBILE HERO SLIDESHOW TOGGLE (< 768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    height: auto;
    display: block;
    padding: 0 !important;
  }

  .hero-slides {
    position: relative;
    height: 640px; /* Expansive, long luxury hero length on mobile */
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: flex-end !important; /* Moves wordings down to reveal the photo */
  }

  .hero-slide::before {
    background: linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.05) 0%,
      rgba(15, 23, 42, 0.15) 35%,
      rgba(15, 23, 42, 0.62) 65%,
      rgba(15, 23, 42, 0.90) 100%
    ) !important;
  }

  .hero-slides .hero-slide:nth-child(1) {
    background-image: url('/static/images/hero/hardware_slide_mobile.webp?v=200') !important;
    background-position: center top !important;
  }

  .hero-slides .hero-slide:nth-child(2) {
    background-image: url('/static/images/hero/plumbing_slide_mobile.webp?v=210') !important;
    background-position: center top !important;
  }

  .hero-slide.hero-slide-bath,
  .hero-slides .hero-slide:nth-child(3) {
    background-image: url('/static/images/hero/bath_kitchen_slide_mobile.webp?v=200') !important;
    background-position: center top !important;
  }

  .hero-slide .hero-inner {
    width: 100%;
    padding: 0 0 4.25rem 0 !important;
  }

  .hero-title {
    font-size: clamp(1.45rem, 5.8vw, 1.85rem);
    margin-bottom: 0.65rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
    font-family: 'Times New Roman', Times, serif !important;
    color: #ffffff !important;
  }

  .hero-desc {
    font-size: 0.825rem;
    margin-bottom: 1.25rem;
    line-height: 1.45;
    color: #ffffff !important;
    max-width: 100%;
    word-break: normal;
    font-family: 'Times New Roman', Times, serif !important;
  }

  .hero-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    width: 100%;
    max-width: 100%;
  }
  .hero-actions .btn,
  .hero-actions .btn-hero-gold,
  .hero-actions .btn-hero-translucent {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: 50% !important;
    padding: 0.72rem 0.15rem !important;
    font-size: 0.67rem !important;
    letter-spacing: 0.02em !important;
    text-align: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    font-family: 'Times New Roman', Times, serif !important;
  }

  .hero-divider {
    max-width: 100%;
    margin-bottom: 0.85rem;
  }

  .hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    max-width: 100%;
  }

  .trust-badge-item {
    font-size: 0.74rem;
    gap: 0.35rem;
    white-space: nowrap;
    font-family: 'Times New Roman', Times, serif !important;
    color: #DDD6CB !important;
  }

  .trust-badge-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .hero-indicators-wrap {
    bottom: 2.25rem;
  }

  /* ── Stats Strip (768px Mobile) ── */
  .stats-strip-section {
    margin-top: -2rem !important;
    margin-bottom: 1.75rem !important;
    padding: 0 0.75rem !important;
  }

  .stats-glass-card {
    padding: 1.35rem 1rem !important;
    border-radius: 16px !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem 0.75rem !important;
  }

  .stat-card {
    padding: 0.35rem !important;
  }

  .stat-card:nth-child(1), .stat-card:nth-child(2) {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 0.65rem;
  }

  .stat-number {
    font-size: 1.85rem !important;
    color: #0F172A !important;
  }

  .stat-label {
    font-size: 0.72rem !important;
    color: #334155 !important;
  }

  /* ── Homepage Stores Section Mobile Overrides ── */
  .homepage-stores-section {
    padding: 2rem 0;
  }
  
  .homepage-stores-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .homepage-store-card {
    flex-direction: row;
    align-items: center;
    padding: 1.25rem;
    border-top: 1px solid var(--border) !important;
    border-radius: var(--radius-lg, 16px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  }
  
  .homepage-store-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  }
  
  .homepage-store-card:active {
    transform: scale(0.985);
    background: var(--surface-light, #f8fafc);
  }
  
  .homepage-store-card.bath-kitchen {
    border-left: 5px solid var(--accent, #ea580c);
  }
  
  .homepage-store-card.plumbing {
    border-left: 5px solid #0b5294;
  }
  
  .homepage-store-card.hardware {
    border-left: 5px solid #1e293b;
  }
  
  .store-card-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .store-card-icon {
    font-size: 2rem;
    min-width: 44px;
    height: 44px;
    padding: 0.5rem;
  }
  
  .store-card-title {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
  }
  
  .store-card-desc {
    margin-bottom: 0;
  }
  
  .store-card-arrow {
    color: var(--text-muted, #64748B);
    margin-top: 0;
  }
  
  .homepage-store-card:hover .store-card-arrow {
    transform: none;
  }

  /* ── Product Detail Page Mobile Overrides ── */
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .main-image-frame {
    padding: 1.25rem;
    height: auto;
    max-height: 380px;
  }
  
  .product-detail-grid h1 {
    font-size: 1.85rem !important;
    margin-top: 1.25rem;
    line-height: 1.3;
  }
  
  .cta-box {
    padding: 1.25rem;
    margin: 1.25rem 0;
  }
  
  .specs-table td {
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 3.25rem !important;
  }
  .navbar .nav-brand {
    max-width: calc(100% - 90px) !important;
    gap: 0.35rem !important;
    position: relative !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
  }
  .brand-logo-icon {
    width: 1.75rem !important;
    height: 1.75rem !important;
  }
  .brand-icon {
    width: 1.75rem !important;
    height: 1.75rem !important;
    font-size: 0.72rem !important;
  }
  .brand-name {
    font-size: 0.78rem !important;
    letter-spacing: 0.13em !important;
    width: 100% !important;
  }
  .brand-sub {
    font-size: 0.38rem !important;
    letter-spacing: 0.035em !important;
    width: 100% !important;
  }
  .showrooms-section {
    padding: 1.75rem 0 !important;
  }
  .showrooms-stack {
    width: 100% !important;
    max-width: 100% !important;
    gap: 1.25rem !important;
  }
  .showroom-card-grid {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0.75rem !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .showroom-img-frame {
    width: 100% !important;
    max-width: 100% !important;
    height: 165px !important;
    overflow: hidden !important;
  }
  .showroom-details {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .hero-slides {
    height: 640px;
  }
  .hero-title {
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
    font-family: 'Times New Roman', Times, serif !important;
    color: #ffffff !important;
  }
  .stats-strip-section {
    margin-top: -1.5rem !important;
    margin-bottom: 1.5rem !important;
    padding: 0 0.5rem !important;
  }
  .stats-glass-card {
    padding: 1.15rem 0.65rem !important;
    border-radius: 14px !important;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem 0.4rem !important;
  }
  .stat-number {
    font-size: 1.6rem !important;
    color: #0F172A !important;
  }
  .stat-label {
    font-size: 0.65rem !important;
    color: #334155 !important;
    line-height: 1.25;
  }
}


