/* ========================================
   Almalak — Editorial Luxury Lookbook
   ======================================== */

:root {
  --brand: #7B234A;
  --brand-light: #8C2D55;
  --accent: #CDA349;
  --accent-dim: rgba(205,163,73,0.12);
  --bg: #F8F6F3;
  --surface: #FFFFFF;
  --ink: #111111;
  --ink-2: #555555;
  --ink-3: #999999;
  --line: #E5E2DE;
  --line-strong: #D0CCC7;
  --wa: #25D366;
  --wa-hover: #1ebe5d;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: 'Cairo', sans-serif;
  --header-h: 64px;
  --shadow: 0 4px 18px rgba(0,0,0,.05);
  --radius: 4px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ── Typography ── */
h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h3 { font-size: 0.95rem; font-weight: 500; line-height: 1.4; }
p { color: var(--ink-2); line-height: 1.7; }

/* ── Header ── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: var(--bg);
  z-index: 100;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.header.scrolled {
  box-shadow: 0 1px 0 var(--line);
  border-bottom-color: transparent;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  display: block;
  height: 40px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.25s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-primary {
  background: var(--brand);
  color: var(--surface);
}
.btn-primary:hover { background: var(--brand-light); }
.btn-whatsapp {
  background: var(--wa);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--wa-hover); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--surface); }
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
}
.btn-ghost:hover { color: var(--ink); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.25s var(--ease);
}

/* ── Hero ── */
.hero {
  margin-top: var(--header-h);
  height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.4) 35%, rgba(17,17,17,0.05) 70%),
    linear-gradient(to right, rgba(17,17,17,0.3) 0%, transparent 50%);
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(48px, 8vh, 96px);
}
.hero-content {
  max-width: 640px;
  animation: heroContentIn 0.8s var(--ease) both;
}
@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content h1 {
  margin-bottom: 20px;
  color: var(--surface);
}
.hero-content h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero-content h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  opacity: 0.4;
}
.hero-subtitle {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-subtitle::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.hero-content p {
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 420px;
  color: rgba(255,255,255,0.55);
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-buttons .btn-primary {
  background: var(--surface);
  color: var(--ink);
}
.hero-buttons .btn-primary:hover {
  background: rgba(255,255,255,0.85);
}
.hero-buttons .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--surface);
}
.hero-buttons .btn-outline:hover {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}
.hero-divider { display: none; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: clamp(16px, 3vh, 32px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroContentIn 0.8s var(--ease) 0.4s both;
}
.hero-scroll span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}
.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.2); }
}

/* ── Sections ── */
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--accent {
  background: var(--accent-dim);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}
.section-header h2 { margin: 0; }
.section-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.section-header a {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
  padding-bottom: 1px;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-header a:hover { color: var(--brand); border-color: var(--brand); }

/* ── Product Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  cursor: pointer;
}
.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--line);
  margin-bottom: 14px;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card-image img {
  transform: scale(1.04);
}
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand);
  color: var(--surface);
  padding: 4px 10px;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-card-info h3 {
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 3px;
  color: var(--ink);
}
.product-card-code {
  font-size: 0.68rem;
  color: var(--ink-3);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.product-card-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 2px;
}
.product-card-fabric {
  font-size: 0.7rem;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.product-card .btn {
  width: 100%;
  height: 40px;
  font-size: 0.72rem;
}

/* ── Color Grid ── */
.color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.color-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: center;
}
.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: transform 0.2s var(--ease);
}
.color-card:hover .color-swatch { transform: scale(1.15); }
.color-card span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-2);
}

/* ── Occasion Grid ── */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.occasion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 16px;
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: center;
  transition: all 0.25s var(--ease);
  background: var(--surface);
}
.occasion-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,35,74,0.06);
}
.occasion-label {
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 2px;
}
.occasion-card h3 {
  font-size: 0.88rem;
  font-weight: 500;
}

/* ── Why Choose Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.why-card {
  text-align: center;
  padding: 56px 28px;
  background: var(--surface);
  position: relative;
}
.why-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.why-card h3 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.why-card p {
  font-size: 0.82rem;
  max-width: 260px;
  margin: 0 auto;
}

/* ── WhatsApp CTA ── */
.whatsapp-cta {
  background: var(--brand);
  padding: clamp(56px, 8vw, 88px) 0;
  text-align: center;
  position: relative;
}
.whatsapp-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}
.whatsapp-cta h2 {
  color: var(--surface);
  margin-bottom: 12px;
}
.whatsapp-cta p {
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  margin: 0 auto 32px;
  font-size: 0.88rem;
}
.whatsapp-cta .btn-whatsapp {
  height: 52px;
  padding: 0 40px;
  font-size: 0.85rem;
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.8rem;
  max-width: 240px;
  margin-top: 12px;
}
.footer .logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer h4 {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-links a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
}

/* ── Collection Page ── */
.page-header {
  margin-top: var(--header-h);
  padding: clamp(48px, 6vw, 80px) 0 clamp(24px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}
.page-header .section-label { margin-bottom: 8px; }
.page-header h1 { margin-bottom: 8px; }
.page-header p { font-size: 0.88rem; }

.search-filters {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  background: var(--bg);
}
.search-bar { margin-bottom: 12px; }
.search-bar input {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--font);
  font-size: 0.85rem;
  background: transparent;
  transition: border-color 0.2s var(--ease);
}
.search-bar input:focus { outline: none; border-color: var(--brand); }
.filters-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-select {
  height: 36px;
  padding: 0 28px 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.75rem;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23999' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 10px center;
}
.filter-select:focus { outline: none; border-color: var(--brand); }
.results-count {
  font-size: 0.72rem;
  color: var(--ink-3);
  margin-right: auto;
}

/* ── Product Detail ── */
.breadcrumb {
  padding: 16px 0 0;
  font-size: 0.7rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--ink-3); transition: color 0.2s var(--ease); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { margin: 0 6px; }

.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: 32px 0 72px;
}
.gallery { position: sticky; top: calc(var(--header-h) + 16px); align-self: start; }
.gallery-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--line);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
  width: 64px;
  height: 64px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
  opacity: 0.4;
}
.gallery-thumb.active { border-color: var(--brand); opacity: 1; }
.gallery-thumb:hover { opacity: 0.8; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding-top: 8px; }
.product-info h1 { margin-bottom: 4px; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.product-code {
  font-size: 0.72rem;
  color: var(--ink-3);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 24px;
}
.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin-bottom: 24px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px;
  background: var(--surface);
}
.meta-item label {
  font-size: 0.6rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.meta-item span { font-weight: 500; font-size: 0.85rem; }

.product-description {
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--line);
}
.product-description h3 {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 500;
}
.product-description p { font-size: 0.85rem; }

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  color: var(--ink-2);
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.product-actions .btn { flex: 1; }

.product-soldout { margin-bottom: 24px; }
.soldout-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fef2f2;
  color: #b91c1c;
  font-weight: 500;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.similar-section {
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
}
.similar-section h2 { font-size: 1.1rem; margin-bottom: 24px; }

/* ── About & Contact ── */
.about-content {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) 16px;
}
.about-content h2 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.about-content p { margin-bottom: 14px; font-size: 0.92rem; }

.contact-content {
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) 16px;
  text-align: center;
}
.contact-card {
  padding: 32px;
  border: 1px solid var(--line);
  margin-top: 24px;
  text-align: right;
}
.contact-card h3 { margin-bottom: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: none; }
.contact-item span { font-size: 0.85rem; }

/* ── 404 ── */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h));
  margin-top: var(--header-h);
  text-align: center;
  padding: 32px 16px;
}
.error-page h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--line);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 700;
}
.error-page h2 { margin-bottom: 8px; }
.error-page p { margin-bottom: 24px; }

/* ── Skeleton ── */
.skeleton {
  background: linear-gradient(90deg, #eee 25%, #e5e5e5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-card { overflow: hidden; }
.skeleton-image { aspect-ratio: 3/4; }
.skeleton-text { height: 12px; margin: 10px 0; }
.skeleton-text.short { width: 55%; }

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Empty State ── */
.empty-state { text-align: center; padding: 72px 16px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { margin-bottom: 20px; }

/* ── Scroll Top ── */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: var(--surface);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--ease);
  z-index: 99;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--brand-light); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--surface);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open .mobile-menu-content { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}
.mobile-menu-nav a {
  padding: 12px 0;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s var(--ease);
}
.mobile-menu-nav a:hover, .mobile-menu-nav a.active { color: var(--brand); }
.mobile-menu-footer { margin-top: auto; padding-top: 16px; }
.mobile-menu-footer .btn { width: 100%; }