/*
Theme Name: Shoppekart Ahmedabad
Theme URI: https://shoppekart.in
Author: Shoppekart
Author URI: https://shoppekart.in
Description: Shoppekart Ahmedabad — Kitchenware & Home Appliances. 3 showrooms — SBR, South Bopal & New CG Road.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.4
License: All rights reserved
License URI: https://shoppekart.in
Text Domain: shoppekart
*/

/* ============================================================
   DESIGN SYSTEM — colour tokens (OKLCH → sRGB fallbacks)
   ============================================================ */
:root {
  --radius: 0.625rem;

  /* Brand Accents — Used tastefully for actions, icons and subtle highlights */
  --brand:                  #0c61a2;   /* official logo blue */
  --brand-foreground:       #ffffff;
  --brand-deep:             #08497a;
  --brand-accent:           #0284c7;   /* subtle sky blue accent */

  /* Clean Light Canvas */
  --background:             #ffffff;
  --foreground:             #0f172a;   /* sharp slate dark charcoal */
  --card:                   #ffffff;
  --card-foreground:        #0f172a;
  --popover:                #ffffff;
  --popover-foreground:     #0f172a;

  /* Neutrals & Primary */
  --primary:                #0c61a2;
  --primary-foreground:     #ffffff;
  --secondary:              #f1f5f9;
  --secondary-foreground:   #0f172a;
  --muted:                  #f8fafc;
  --muted-foreground:       #64748b;

  /* State */
  --destructive:            #e03131;
  --destructive-foreground: #ffffff;

  /* Border / Input */
  --border:                 #e2e8f0;
  --input:                  #e2e8f0;
  --ring:                   #0c61a2;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
iframe { border: none; }

/* ============================================================
   LAYOUT UTILITY
   ============================================================ */
.container-page {
  margin-inline: auto;
  max-width: 80rem;
  padding-inline: 1.25rem;
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.text-xs  { font-size: 0.75rem;  line-height: 1rem; }
.text-sm  { font-size: 0.875rem; line-height: 1.25rem; }
.text-base{ font-size: 1rem;     line-height: 1.5rem; }
.text-lg  { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl  { font-size: 1.25rem;  line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem;   line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem;  line-height: 2.5rem; }
.text-5xl { font-size: 3rem;     line-height: 1; }
.text-6xl { font-size: 3.75rem;  line-height: 1; }
.text-7xl { font-size: 4.5rem;   line-height: 1; }

/* ============================================================
   COLOUR UTILITIES
   ============================================================ */
.text-brand          { color: var(--brand); }
.text-brand-foreground { color: var(--brand-foreground); }
.text-brand-accent   { color: var(--brand-accent); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-foreground     { color: var(--foreground); }
.bg-brand            { background: linear-gradient(135deg, #0c61a2 0%, #08497a 100%); }
.bg-brand-deep       { background-color: var(--brand-deep); }
.bg-brand-accent     { background-color: var(--brand-accent); }
.bg-card             { background-color: var(--card); }
.bg-secondary        { background-color: var(--secondary); }
.bg-background       { background-color: var(--background); }
.border-border       { border-color: var(--border); }
.border-brand        { border-color: var(--brand); }

/* ============================================================
   HEADER STYLES
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216,221,240,0.7);
  background-color: rgba(248,249,255,0.9);
  color: var(--foreground);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-topbar {
  border-bottom: 1px solid rgba(216,221,240,0.6);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 0.5rem;
}

.header-topbar-phone {
  display: none;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(26,35,64,0.8);
  text-decoration: none;
  flex-shrink: 0;
}
.header-topbar-phone:hover { color: var(--brand); }

@media (min-width: 768px) {
  .header-topbar-phone { display: flex; }
}

.header-nav-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;
}

@media (min-width: 1024px) {
  .header-nav-row {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
  }
}

.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 3.5rem; width: auto; display: block; }

@media (min-width: 640px)  { .site-logo img { height: 4rem; } }
@media (min-width: 1024px) { .site-logo img { height: 5rem; } }

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-link {
  white-space: nowrap;
  border-radius: var(--radius);
  padding: 0.5rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26,35,64,0.75);
  transition: color 0.15s;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--brand); }

.nav-mega-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  border-radius: var(--radius);
  padding: 0.5rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26,35,64,0.75);
  transition: color 0.15s;
  background: none;
  border: none;
}
.nav-mega-btn:hover, .nav-mega-btn[aria-expanded="true"] { color: var(--brand); }

.nav-chevron {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s;
}
.nav-mega-btn[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

/* Header right area */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.5rem;
  color: rgba(26,35,64,0.8);
  background: none;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

/* Mega dropdown */
.mega-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 40;
  border-top: 1px solid var(--border);
  background-color: var(--background);
  color: var(--foreground);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: none;
}
.mega-dropdown.open { display: block; }

.mega-inner {
  padding-block: 1.5rem;
}

.mega-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.mega-grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }

.mega-group-title {
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
}

.mega-list { display: flex; flex-direction: column; gap: 0.375rem; }
.mega-list a {
  font-size: 0.875rem;
  color: rgba(26,35,64,0.8);
  transition: color 0.15s;
}
.mega-list a:hover { color: var(--brand); }

.mega-brand-card {
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1rem;
  text-align: center;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
  color: var(--foreground);
}
.mega-brand-card:hover { border-color: var(--brand); color: var(--brand); }
.mega-brand-card-name { font-family: 'Montserrat', sans-serif; font-size: 1.125rem; }

/* ── Premium Store Card (mega dropdown) ── */
.mega-store-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-radius: 0.875rem;
  border: 1.5px solid var(--border);
  background: var(--card);
  padding: 1.25rem 1.375rem 1.125rem;
  text-decoration: none;
  color: var(--foreground);
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
  position: relative;
  overflow: hidden;
}
.mega-store-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,82,204,0.06) 0%, rgba(0,82,204,0) 70%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}
.mega-store-card:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 28px rgba(0,82,204,0.14), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.mega-store-card:hover::before { opacity: 1; }

.mega-store-card-badge {
  font-size: 0.675rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
}
.mega-store-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.1rem;
}
.mega-store-card-address {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.45;
  margin-top: 0.25rem;
}
.mega-store-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.mega-store-card-phone {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand);
}
.mega-store-card-cta {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.7;
  transition: opacity 0.18s, letter-spacing 0.18s;
}
.mega-store-card:hover .mega-store-card-cta {
  opacity: 1;
  letter-spacing: 0.01em;
}

/* Mobile nav */
.mobile-nav {
  border-top: 1px solid var(--border);
  display: none;
}
.mobile-nav.open { display: block; }

@media (min-width: 1024px) { .mobile-nav { display: none !important; } }

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding-block: 0.75rem;
  font-size: 0.875rem;
}

.mobile-nav-link {
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  color: rgba(26,35,64,0.8);
  transition: background-color 0.15s, color 0.15s;
  display: block;
}
.mobile-nav-link:hover { background-color: var(--muted); color: var(--brand); }

.mobile-nav-group {
  border-top: 1px solid var(--border);
  padding-block: 0.25rem;
}

.mobile-nav-group-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  background: none;
  border: none;
}

.mobile-nav-group-children {
  padding-left: 0.75rem;
  display: none;
}
.mobile-nav-group-children.open { display: block; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
}

.page-hero-bg {
  display: none;
}

.page-hero-inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-block: 4rem;
}

@media (min-width: 768px) { .page-hero-inner { padding-block: 5rem; } }
@media (min-width: 1024px) {
  .page-hero-inner {
    grid-template-columns: 1.15fr 1fr;
  }
}

.page-hero-eyebrow {
  margin-bottom: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #0c61a2;
}

.page-hero-title {
  max-width: 56rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) { .page-hero-title { font-size: 3.75rem; line-height: 1.05; } }

.page-hero-subtitle {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

@media (min-width: 768px) { .page-hero-subtitle { font-size: 1.125rem; } }

.page-hero-actions { margin-top: 2.5rem; }

.page-hero-image-wrap {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  outline: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 16/10.5;
}
@media (min-width: 1024px) { .page-hero-image-wrap { display: block; } }

.page-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-image-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(59,91,219,0.4), transparent, transparent);
}

.page-hero-accent-bar {
  height: 0.5rem;
  width: 100%;
  background-color: var(--brand-accent);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--muted-foreground); }
.breadcrumbs a { color: var(--muted-foreground); transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs li:last-child { color: var(--foreground); }

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-heading { }
.section-heading-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brand);
}
.section-heading-title {
  margin-top: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.875rem;
}
@media (min-width: 768px) { .section-heading-title { font-size: 2.25rem; } }
.section-heading-subtitle {
  margin-top: 0.75rem;
  max-width: 42rem;
  color: var(--muted-foreground);
}

/* ============================================================
   FEATURE CARDS (Home Features Section)
   ============================================================ */
.features-section {
  padding-block: 3rem;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
}

.feature-icon {
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0c61a2 0%, #08497a 100%);
  color: var(--brand-foreground);
}

.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  margin: 0;
}

.feature-body {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.category-section {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  padding-block: 5rem;
}

.category-section-inner { }

.category-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.category-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .category-grid { grid-template-columns: repeat(4, 1fr); } }

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  height: 260px;
  padding: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  text-decoration: none;
  color: #ffffff;
}
.category-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.75) 100%);
  transition: background 0.3s ease;
  z-index: 2;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}
.category-card:hover .category-card-bg {
  transform: scale(1.08);
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.85) 100%);
}



.category-card-content {
  position: relative;
  z-index: 3;
  margin-top: auto;
}

.category-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.category-card-tagline {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.category-card-footer {
  position: relative;
  z-index: 3;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.75rem;
  color: #ffffff;
}

.category-card-cta {
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Secondary categories block */
.secondary-cats-block {
  margin-top: 3.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: rgba(255,255,255,0.8);
  padding: 1.5rem;
}
@media (min-width: 768px) { .secondary-cats-block { padding: 2rem; } }

.secondary-cats-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .secondary-cats-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.secondary-cats-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brand);
}

.secondary-cats-title {
  margin-top: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin: 0.5rem 0 0;
}
@media (min-width: 768px) { .secondary-cats-title { font-size: 1.875rem; } }

.secondary-cats-note {
  margin-top: 0.5rem;
  max-width: 24rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) { .secondary-cats-note { margin-top: 0; text-align: right; } }

.secondary-cats-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.secondary-cat-tag {
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--background);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26,35,64,0.8);
  transition: transform 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.secondary-cat-tag:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* ============================================================
   BRAND STRIP
   ============================================================ */
.brand-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: rgba(238,240,250,0.6);
}

.brand-strip-inner { padding-block: 2rem; }

.brand-strip-label {
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted-foreground);
}

.brand-strip-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
  row-gap: 0.75rem;
}

.brand-strip-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  color: rgba(26,35,64,0.7);
  transition: color 0.15s;
  text-decoration: none;
}
@media (min-width: 768px) { .brand-strip-link { font-size: 1.5rem; } }
.brand-strip-link:hover { color: var(--brand); }

/* ============================================================
   SHOWROOM IMAGE STRIP
   ============================================================ */
.showroom-strip { padding-block: 5rem; }

.showroom-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .showroom-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .showroom-grid { grid-template-columns: repeat(3, 1fr); } }

.showroom-card {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--secondary), var(--background), rgba(245,239,0,0.2));
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  outline: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.showroom-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.showroom-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  transition: color 0.15s;
}
.showroom-card:hover .showroom-card-placeholder { color: var(--brand); }

.showroom-card-placeholder-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.showroom-card-overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  transform: translateY(100%);
  background: linear-gradient(to top, rgba(59,91,219,0.95), rgba(59,91,219,0.7), transparent);
  padding: 1.25rem;
  color: var(--brand-foreground);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.showroom-card:hover .showroom-card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.showroom-overlay-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.showroom-overlay-cta {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ============================================================
   STORES BLOCK
   ============================================================ */
.stores-block { padding-block: 4rem 6rem; }

.stores-block-header {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .stores-block-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.stores-block-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
}

.stores-block-title {
  margin-top: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  margin-bottom: 0;
}
@media (min-width: 768px) { .stores-block-title { font-size: 3rem; } }

.stores-block-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  padding: 0.375rem 0.75rem;
  color: inherit;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
}
.social-pill:hover { border-color: var(--brand); color: var(--brand); }

.stores-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .stores-grid { grid-template-columns: repeat(3, 1fr); } }

.store-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1.5px solid var(--border);
  background-color: var(--card);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.store-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 32px rgba(0,82,204,0.13), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.store-card-map {
  aspect-ratio: 4/3;
  width: 100%;
  background-color: var(--muted);
}
.store-card-map iframe { width: 100%; height: 100%; display: block; }

.store-card-body { padding: 1.25rem; }

.store-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
}

.store-card-neighborhood {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.store-card-details {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
}

.store-card-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.store-card-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
}
.store-card-phone:hover { text-decoration: underline; }

.store-card-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.store-card-actions {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0c61a2 0%, #08497a 100%);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-foreground);
  text-decoration: none;
  transition: background-color 0.15s;
  border: none;
}
.btn-primary:hover { background-color: var(--brand-deep); color: var(--brand-foreground); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: inherit;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
  background: none;
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background-color: var(--brand-accent);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-accent-foreground);
  text-decoration: none;
  transition: filter 0.15s;
  border: none;
}
.btn-accent:hover { filter: brightness(0.95); }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(248,249,255,0.3);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-foreground);
  text-decoration: none;
  transition: background-color 0.15s;
  background: none;
}
.btn-hero-outline:hover { background-color: var(--brand-deep); }

/* ============================================================
   SEO CONTENT SECTION
   ============================================================ */
.seo-content {
  padding-bottom: 4rem;
}

.seo-content-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .seo-content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.seo-content-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brand);
}

.seo-content-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.875rem;
  margin: 0 0 1.25rem;
}
@media (min-width: 768px) { .seo-content-heading { font-size: 2.25rem; } }

.seo-content-intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted-foreground);
}

.seo-content-faq-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.faq-list {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  divide-color: var(--border);
}

.faq-item {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
}
.faq-item:first-child { border-top: none; }

.faq-q {
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.375rem;
}

.faq-a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

.seo-highlights {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: rgba(238,240,250,0.4);
  padding: 1.5rem;
}

.seo-highlights-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.highlight-check {
  margin-top: 0.125rem;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: 6rem;
  border-top: 1px solid rgba(47,74,194,0.4);
  background-color: #0c61a2; /* Matches logo background */
  color: var(--brand-foreground);
}

.footer-main {
  padding-block: 4rem;
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-main { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .footer-main { grid-template-columns: repeat(5, 1fr); }
}

.footer-logo { height: 6rem; width: auto; }
@media (min-width: 640px) { .footer-logo { height: 7rem; } }

.footer-tagline {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(248,249,255,0.8);
}

.footer-venture {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(248,249,255,0.9);
}

.footer-socials {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-btn {
  border-radius: var(--radius);
  border: 1px solid rgba(248,249,255,0.2);
  padding: 0.5rem;
  color: var(--brand-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s;
}
.footer-social-btn:hover { background-color: var(--brand-deep); }

.footer-col-heading {
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-accent);
}

.footer-nav-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(248,249,255,0.8);
}
@media (min-width: 640px) {
  .footer-nav-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-nav-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-nav-list a {
  transition: color 0.15s;
  color: rgba(248,249,255,0.8);
}
.footer-nav-list a:hover { color: var(--brand-accent); }

.footer-contact-col { }
@media (min-width: 768px) { .footer-contact-col { grid-column: span 2; } }

.footer-contact-grid {
  display: grid;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(248,249,255,0.8);
}
@media (min-width: 640px) { .footer-contact-grid { grid-template-columns: repeat(2, 1fr); } }

.footer-store-name {
  font-weight: 600;
  color: var(--brand-foreground);
  margin-bottom: 0.375rem;
}

.footer-store-address {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer-store-phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: rgba(248,249,255,0.8);
  margin-top: 0.375rem;
}
.footer-store-phone:hover { color: var(--brand-accent); }

.footer-bottom {
  border-top: 1px solid rgba(248,249,255,0.1);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-block: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(248,249,255,0.7);
}
@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    text-align: left;
  }
}

/* ============================================================
   NEW ARRIVALS
   ============================================================ */
.arrivals-grid {
  display: grid;
  gap: 1.5rem;
  padding-block: 4rem;
}
@media (min-width: 640px)  { .arrivals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .arrivals-grid { grid-template-columns: repeat(3, 1fr); } }

.arrival-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  transition: border-color 0.15s;
}
.arrival-card:hover { border-color: rgba(59,91,219,0.4); }

.arrival-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.arrival-badge {
  border-radius: 9999px;
  background-color: rgba(245,239,0,0.4);
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
}

.arrival-brand {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.arrival-name {
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0;
}

.arrival-desc {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.arrival-footer {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.arrival-cat-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}
.arrival-cat-link:hover { text-decoration: underline; }

/* ============================================================
   OFFERS
   ============================================================ */
.offers-grid {
  display: grid;
  gap: 1.5rem;
  padding-block: 4rem;
}
@media (min-width: 768px)  { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .offers-grid { grid-template-columns: repeat(3, 1fr); } }

.offer-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
}

.offer-card-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0c61a2 0%, #08497a 100%);
  color: var(--brand-foreground);
  flex-shrink: 0;
}

.offer-tag {
  border-radius: 9999px;
  background-color: rgba(245,239,0,0.4);
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
}

.offer-title {
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0;
}

.offer-body {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.offer-cta {
  margin-top: 1.25rem;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}
.offer-cta:hover { text-decoration: underline; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  gap: 1rem;
  padding-block: 4rem;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-figure {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1rem;
  background-color: var(--secondary);
  margin: 0;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-figure:hover .gallery-img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2), transparent);
  padding: 1rem;
  color: white;
}

.gallery-caption-text {
  font-size: 0.875rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.gallery-caption-badge {
  border-radius: 9999px;
  background-color: var(--brand-accent);
  padding: 0.125rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-accent-foreground);
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  gap: 2rem;
  padding-block: 3.5rem;
}
@media (min-width: 768px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.blog-card-img-wrap {
  overflow: hidden;
  display: block;
}

.blog-card-img {
  aspect-ratio: 3/2;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
}

.blog-card-sep { color: var(--muted-foreground); }
.blog-card-read { color: var(--muted-foreground); font-weight: 400; }

.blog-card-title {
  margin-top: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0;
}

.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card:hover .blog-card-title a { color: var(--brand); }

.blog-card-desc {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.blog-card-date {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Single blog post */
.blog-post-header { padding-bottom: 1rem; }

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
}

.blog-post-title {
  margin-top: 0.75rem;
  max-width: 56rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  line-height: 1.15;
}
@media (min-width: 768px) { .blog-post-title { font-size: 3rem; } }

.blog-post-lead {
  margin-top: 1rem;
  max-width: 48rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.blog-post-cover {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.blog-post-layout {
  display: grid;
  gap: 2.5rem;
  padding-block: 2.5rem;
}
@media (min-width: 1024px) {
  .blog-post-layout {
    grid-template-columns: minmax(0, 1fr) 20rem;
  }
}

.blog-post-intro {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
}

.blog-post-section { margin-top: 2rem; }
.blog-post-section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.blog-post-section-body { color: rgba(26,35,64,0.8); }

.blog-tips {
  margin-top: 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: rgba(238,240,250,0.4);
  padding: 1.5rem;
}
.blog-tips-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.blog-tips-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(26,35,64,0.8);
}
.blog-tip-item { display: flex; gap: 0.5rem; }
.blog-tip-bullet { color: var(--brand); flex-shrink: 0; }

.blog-faqs { margin-top: 2.5rem; }
.blog-faqs-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.blog-faq-list { display: flex; flex-direction: column; gap: 1rem; }

.blog-faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.25rem;
}
.blog-faq-q { font-weight: 600; margin-bottom: 0.25rem; }
.blog-faq-a { font-size: 0.875rem; color: var(--muted-foreground); }

.blog-cta-box {
  margin-top: 2.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #0c61a2 0%, #08497a 100%);
  padding: 1.5rem;
  color: var(--brand-foreground);
}
.blog-cta-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.blog-cta-body { color: #475569; }
.blog-cta-actions { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

.blog-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-sidebar-box {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.25rem;
}
.blog-sidebar-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-tag {
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--background);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(26,35,64,0.7);
}

.blog-related-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.blog-related-link { color: rgba(26,35,64,0.8); text-decoration: none; }
.blog-related-link:hover { color: var(--brand); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  gap: 3rem;
  padding-block: 4rem;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }

.about-story p { color: var(--muted-foreground); }
.about-story p:last-child { font-weight: 600; color: var(--foreground); }

.about-stats-grid { display: grid; gap: 1rem; }

.stat-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
}
.stat-key {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  color: var(--brand);
}
.stat-val {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  padding-block: 4rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
}
.contact-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.contact-card-hood { font-size: 0.875rem; color: var(--muted-foreground); }
.contact-card-details { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.5rem; }
.contact-phone { display: flex; align-items: center; gap: 0.5rem; color: var(--brand); }
.contact-phone:hover { text-decoration: underline; }
.contact-hours { display: flex; align-items: center; gap: 0.5rem; color: var(--muted-foreground); }

.contact-channels {
  padding-bottom: 4rem;
}
.channels-box {
  display: grid;
  gap: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: rgba(238,240,250,0.4);
  padding: 2rem;
}
@media (min-width: 768px) { .channels-box { grid-template-columns: repeat(3, 1fr); } }

.channel-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  background-color: white;
  padding: 1rem;
  border: 1px solid transparent;
  transition: border-color 0.15s;
  text-decoration: none;
  color: inherit;
}
.channel-link:hover { border-color: var(--brand); }

.channel-label { font-size: 0.75rem; color: var(--muted-foreground); }
.channel-value { font-weight: 600; }

/* ============================================================
   CATEGORY/BRAND DETAIL PAGE
   ============================================================ */
.cat-detail-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .cat-detail-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.detail-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

.detail-desc { color: var(--muted-foreground); }

.chip-group {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.chip-group-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip {
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--secondary);
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}
.chip-brand {
  border-radius: 9999px;
  background-color: rgba(245,239,0,0.4);
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand);
}

.detail-sidebar { display: flex; flex-direction: column; gap: 1rem; }

.sidebar-brand-box {
  border-radius: 1rem;
  background: linear-gradient(135deg, #0c61a2 0%, #08497a 100%);
  padding: 1.5rem;
  color: var(--brand-foreground);
}
.sidebar-brand-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-accent);
}
.sidebar-brand-heading {
  margin-top: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.sidebar-related-box {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.25rem;
  font-size: 0.875rem;
}
.sidebar-related-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.sidebar-related-list { display: flex; flex-direction: column; gap: 0.25rem; }
.sidebar-related-link { color: rgba(26,35,64,0.8); }
.sidebar-related-link:hover { color: var(--brand); }

/* combo location sidebar */
.sidebar-combo-box {
  border-radius: 1rem;
  background: linear-gradient(135deg, #0c61a2 0%, #08497a 100%);
  padding: 1.5rem;
  color: var(--brand-foreground);
}
.sidebar-combo-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-accent);
}
.sidebar-combo-heading {
  margin-top: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.sidebar-combo-list { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.875rem; }
.sidebar-combo-link { display: inline-flex; align-items: center; gap: 0.25rem; }
.sidebar-combo-link:hover { color: var(--brand-accent); }

/* ============================================================
   BRANDS PAGE
   ============================================================ */
.featured-brands-grid {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 4rem;
}
@media (min-width: 640px)  { .featured-brands-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .featured-brands-grid { grid-template-columns: repeat(3, 1fr); } }

.featured-brand-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.featured-brand-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.featured-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  color: var(--brand);
}
.featured-brand-tagline {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.featured-brand-explore {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}

.more-brands-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .more-brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .more-brands-grid { grid-template-columns: repeat(4, 1fr); } }

.more-brand-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1rem;
  text-align: center;
  transition: border-color 0.15s, color 0.15s;
}
.more-brand-card:hover { border-color: var(--brand); color: var(--brand); }
.more-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
  background: none;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
}
.pagination-btn:hover { border-color: var(--brand); color: var(--brand); }
.pagination-btn.current {
  border-color: var(--brand);
  background: linear-gradient(135deg, #0c61a2 0%, #08497a 100%);
  color: var(--brand-foreground);
}

/* ============================================================
   STORE DETAIL PAGE
   ============================================================ */
.store-detail-grid {
  display: grid;
  gap: 2rem;
  padding-block: 4rem;
}
@media (min-width: 768px) { .store-detail-grid { grid-template-columns: repeat(2, 1fr); } }

.store-map-embed {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
}
.store-map-embed iframe { width: 100%; height: 100%; display: block; }

.store-info-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.25rem;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.store-cats-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.25rem;
}
.store-cats-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.store-cats-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
  row-gap: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}
.store-cats-list li::before { content: '· '; }

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */
.locations-intro { padding-block: 4rem; }

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: calc(100vh - 24rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 4rem 5rem;
  padding-inline: 1rem;
  background-color: var(--muted);
}
.page-404-inner {
  max-width: 36rem;
  width: 100%;
  text-align: center;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.page-404-code {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.05em;
  margin: 0;
}
.page-404-heading {
  margin-top: 0.75rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--foreground);
}
.page-404-body {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================================
   INLINE SVG ICON HELPER
   ============================================================ */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.flex          { display: flex; }
.flex-col      { flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }
.items-center  { align-items: center; }
.items-start   { align-items: flex-start; }
.items-end     { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.mt-2  { margin-top: 0.5rem; }
.mt-3  { margin-top: 0.75rem; }
.mt-4  { margin-top: 1rem; }
.mt-5  { margin-top: 1.25rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.py-6  { padding-block: 1.5rem; }
.py-8  { padding-block: 2rem; }
.py-12 { padding-block: 3rem; }
.py-16 { padding-block: 4rem; }
.py-20 { padding-block: 5rem; }
.py-24 { padding-block: 6rem; }
.pb-16 { padding-bottom: 4rem; }
.px-4  { padding-inline: 1rem; }
.px-5  { padding-inline: 1.25rem; }
.min-w-0     { min-width: 0; }
.shrink-0    { flex-shrink: 0; }
.w-full      { width: 100%; }
.h-full      { height: 100%; }
.block       { display: block; }
.hidden      { display: none; }
.overflow-hidden { overflow: hidden; }
.text-center { text-align: center; }
.font-semibold { font-weight: 600; }
.font-medium   { font-weight: 500; }
.font-bold     { font-weight: 700; }
.uppercase     { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-relaxed { line-height: 1.625; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Transition helpers */
.transition    { transition-property: color, background-color, border-color, transform, box-shadow; transition-duration: 0.15s; }

/* Language Switcher */
.lang-switcher {
  position: relative;
  font-size: 0.875rem;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
  background: none;
  cursor: pointer;
}
.lang-btn:hover { border-color: var(--brand); color: var(--brand); }

/* CTA Banner / In Person Banner */
.cta-banner {
  border-radius: 1rem;
  background: linear-gradient(135deg, #0c61a2 0%, #08497a 100%);
  padding: 1.5rem;
  color: var(--brand-foreground);
}
@media (min-width: 768px) {
  .cta-banner {
    padding: 2.5rem;
  }
}
.cta-banner-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.cta-banner-body {
  color: rgba(248, 249, 255, 0.85);
  font-size: 0.875rem;
  max-width: 42rem;
  margin-bottom: 1.5rem;
}
.cta-banner-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cta-banner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cta-banner-card {
  display: block;
  border-radius: 0.75rem;
  background-color: rgba(47, 74, 194, 0.5); /* bg-brand-deep/50 */
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--brand-foreground);
  text-decoration: none;
  transition: background-color 0.15s;
}
.cta-banner-card:hover {
  background-color: var(--brand-deep);
}
.cta-banner-card-name {
  font-weight: 600;
}
.cta-banner-card-phone {
  margin-top: 0.25rem;
  color: rgba(248, 249, 255, 0.8);
}
.cta-banner-card-hours {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(248, 249, 255, 0.7);
}

/* ── Homepage Hero Slideshow Slider ─────────────────── */
.page-hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.page-hero-slider .slide.active {
  opacity: 1;
  z-index: 2;
}

/* ── Floating WhatsApp Widget ────────────────────────── */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  animation: sk-whatsapp-pulse 2s infinite;
}
.whatsapp-floating-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}
@keyframes sk-whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ── Gifting Mega dropdown list styling ─────────────── */
#mega-gifting .mega-list a {
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  transition: background-color 0.2s, color 0.2s;
  color: var(--foreground);
}
#mega-gifting .mega-list a:hover {
  background-color: var(--secondary);
  color: var(--brand);
}

/* ============================================================
   UTILITY CLASSES (UI/UX Consistency)
   ============================================================ */
/* Display & Flexbox */
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

/* Spacing (Margin & Padding) */
.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.25rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-12 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-0 { padding: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pt-4 { padding-top: 1rem; }
.pb-4 { padding-bottom: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-8 { padding-bottom: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pb-12 { padding-bottom: 3rem; }

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.font-heading { font-family: 'Montserrat', sans-serif; }
.font-body { font-family: 'Inter', sans-serif; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-tight { letter-spacing: -0.025em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }

/* Colors */
.text-brand { color: var(--brand); }
.text-brand-foreground { color: var(--brand-foreground); }
.text-primary { color: var(--primary); }
.text-foreground { color: var(--foreground); }
.text-muted { color: var(--muted-foreground); }
.text-white { color: #ffffff; }

.bg-brand { background-color: var(--brand); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-muted { background-color: var(--muted); }
.bg-white { background-color: #ffffff; }
.bg-dark { background-color: #0f172a; }

/* Borders & Radius */
.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-dark { border-color: #1e293b; }
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Positioning & Z-Index */
.relative { position: relative; }
.absolute { position: absolute; }
.w-full { width: 100%; }
.h-full { height: 100%; }

/* Misc */
.no-underline { text-decoration: none; }
.hover-underline:hover { text-decoration: underline; }

/* Extra Utilities */
.grid-cols-18rem { grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); }
.text-inherit { color: inherit; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.bg-brand { background: var(--brand); }
.text-brand-foreground { color: var(--brand-foreground); }
.w-full { width: 100%; }
.m-0 { margin: 0; }
@media (min-width: 1024px) {
  .lg-d-flex { display: flex !important; }
}

/* Component Utilities */
.max-w-36rem { max-width: 36rem; }
.h-200px { height: 200px; }
.h-180px { height: 180px; }
.object-cover { object-fit: cover; }
.top-3 { top: 0.75rem; }
.right-3 { right: 0.75rem; }
.flex-shrink-0 { flex-shrink: 0; }
.d-inline-flex { display: inline-flex; }

/* Hover Effects */
.hover-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.hover-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12, 97, 162, 0.12);
}
.hover-card-brand {
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.hover-card-brand:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(12, 97, 162, 0.1);
  transform: translateY(-3px);
}

/* Header Blue Theme Overrides */
header.bg-brand .nav-link { color: var(--brand-foreground); }
header.bg-brand .nav-mega-btn { color: var(--brand-foreground); }
header.bg-brand .nav-link:hover, header.bg-brand .nav-mega-btn:hover { color: var(--brand-accent); }
header.bg-brand .nav-mega-btn[aria-expanded="true"] { color: var(--brand-accent); }
header.bg-brand .mobile-menu-btn { color: var(--brand-foreground); }
header.bg-brand .header-logo-img { filter: brightness(0) invert(1); }

/* Grid Col 22rem */
.grid-cols-22rem { grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr)); }
.mt-12 { margin-top: 3rem; }
.gap-8 { gap: 2rem; }
.bg-brand-light { background: rgba(12, 97, 162, 0.08); }
.hover-bg-brand-medium:hover { background: rgba(12, 97, 162, 0.16); }
