/* =========================================================================
   BAZARIO — Multi-vendor Marketplace Theme
   Hand-written styles & animations (100% original)
   Blue + orange dense marketplace look. Works alongside Tailwind CSS.
   MIT-style license — you own this code.
   ========================================================================= */

:root {
  --brand: #2563eb;
  --brand-700: #1d4ed8;
  --accent: #f97316;
  --ink: #0f1729;
}

* { -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: #f4f6fb;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  overflow-x: clip;
}

.font-display { font-family: 'Lexend', 'Plus Jakarta Sans', sans-serif; }

/* hostfix: match Tailwind preflight so cards don't blow out if CDN fails */
img, video { max-width: 100%; height: auto; }
/* UI icons: never force height:auto — it overrides Tailwind h-* after CDN and collapses phone nav icons */
svg {
  max-width: none;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.product-card .product-img {
  max-width: none;
  width: 100%;
  height: 100%;
  display: block;
}

input,
select,
textarea,
button {
  font: inherit;
}

::selection { background: var(--brand); color: #fff; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #e8ecf4; }
::-webkit-scrollbar-thumb { background: #c2cbdb; border-radius: 999px; border: 2px solid #e8ecf4; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .06s; }
.reveal-delay-2 { transition-delay: .12s; }
.reveal-delay-3 { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Product card ---------- */
.product-card { transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; min-width: 0; width: 100%; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -28px rgba(15,23,41,.4); border-color: rgba(37,99,235,.3); }
.product-card .product-img { transition: transform .5s cubic-bezier(.2,.7,.2,1); display: block; max-width: none; }
.product-card:hover .product-img { transform: scale(1.07); }
.product-card .quick { opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease; }
.product-card:hover .quick { opacity: 1; transform: none; }

/* ---------- Wishlist / compare active ---------- */
.wish-btn.is-active { background: var(--accent); color: #fff; }
.wish-btn.is-active svg { fill: currentColor; }
.cmp-btn.is-active { background: var(--brand); color: #fff; }

/* ---------- Progress (sold bar) ---------- */
.sold-track { background: #e8ecf4; border-radius: 999px; overflow: hidden; height: 6px; }
.sold-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), #fb923c); }

/* ---------- Account dropdown ---------- */
.account-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  width: min(18rem, calc(100vw - 1.5rem));
  max-width: calc(100vw - 1.5rem);
  z-index: 60;
}

.site-header {
  overflow: visible;
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -16px rgba(15,23,41,.3); }

/* ---------- Hero slider (swipe / drag track — DP-Site style) ---------- */
.hero-slider {
  position: relative;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
  min-height: 300px;
  height: 300px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
}
@media (min-width: 640px) {
  .hero-slider { min-height: 380px; height: 380px; }
}
.hero-slider.is-grabbing { cursor: grabbing; }
.hero-slider.reveal { opacity: 1 !important; transform: none !important; }
.hero-track {
  display: flex;
  height: 100%;
  min-height: 100%;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
}
.hero-track.is-dragging { transition: none; }
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}
/* hostfix: cover image even if Tailwind absolute/inset utilities fail */
.hero-slide__img,
.hero-slide > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  opacity: .3;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.hero-slide__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  min-height: inherit;
  max-width: 32rem;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1rem 3rem;
  color: #fff;
}
@media (min-width: 640px) {
  .hero-slide__content { padding: 3rem; }
}
.hero-slide__badge {
  display: inline-block;
  width: fit-content;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .375rem .75rem;
}
.hero-slide__badge--alt { background: var(--brand); }
.hero-slide__title {
  margin-top: 1rem;
  font-family: 'Lexend', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}
@media (min-width: 640px) {
  .hero-slide__title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .hero-slide__title { font-size: 3rem; }
}
.hero-slide__sub {
  margin-top: .75rem;
  color: rgba(255,255,255,.85);
  font-size: .875rem;
}
@media (min-width: 640px) {
  .hero-slide__sub { font-size: 1rem; }
}
.hero-slide__cta {
  margin-top: 1.25rem;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .5rem;
  border-radius: 999px;
  background: #fff;
  color: #1d4ed8;
  font-weight: 700;
  font-size: .875rem;
  padding: .625rem 1.25rem;
  text-decoration: none;
}
.hero-slide__cta--accent {
  background: var(--accent);
  color: #fff;
}
@media (min-width: 640px) {
  .hero-slide__cta { margin-top: 1.5rem; font-size: 1rem; padding: .75rem 1.5rem; }
}
.hero-dot { transition: width .3s ease, background-color .3s ease; }

/* hostfix: marketplace hero trio — works if Tailwind CDN utilities fail */
.bz-hero-wrap {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem 1rem 0;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .bz-hero-wrap { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .bz-hero-wrap { padding-left: 2rem; padding-right: 2rem; }
}
.bz-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}
.bz-hero-cats { display: none; }
.bz-hero-sides { display: none; }
.bz-hero-cat-panel {
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #f1f5f9;
  overflow: hidden;
}
.bz-hero-cat-head {
  background: var(--brand);
  color: #fff;
  padding: .75rem 1rem;
  font-family: 'Lexend', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .875rem;
}
.bz-hero-side {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}
.bz-hero-side img {
  position: absolute;
  right: -.75rem;
  bottom: -.75rem;
  height: 5rem;
  width: 5rem;
  object-fit: cover;
  border-radius: .75rem;
  max-width: none;
}
@media (min-width: 1024px) {
  .bz-hero-grid { gap: 1.25rem; }
  .bz-hero-grid.has-cats.has-sides { grid-template-columns: 240px minmax(0, 1fr) 260px; }
  .bz-hero-grid.has-cats:not(.has-sides) { grid-template-columns: 240px minmax(0, 1fr); }
  .bz-hero-grid.has-sides:not(.has-cats) { grid-template-columns: minmax(0, 1fr) 260px; }
  .bz-hero-cats { display: block; }
  .bz-hero-sides {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
  }
}

/* ---------- Buttons ---------- */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent); transform: skewX(-20deg); }
.btn-shine:hover::after { left: 130%; transition: left .8s ease; }

/* ---------- Cart badge ---------- */
.cart-count.bump { animation: bump .4s ease; }
@keyframes bump { 0%{transform:scale(1)} 50%{transform:scale(1.4)} 100%{transform:scale(1)} }

/* ---------- Countdown chips ---------- */
.cd-chip { background: var(--ink); color: #fff; border-radius: .5rem; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Drawers / overlay / menu ---------- */
.drawer { transition: transform .42s cubic-bezier(.4,0,.2,1); }
.overlay { transition: opacity .35s ease; }
.mobile-menu { transition: transform .4s cubic-bezier(.4,0,.2,1); }
.filter-panel { transition: transform .4s cubic-bezier(.4,0,.2,1); }

/* ---------- Accordion ---------- */
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }

/* ---------- Range slider ---------- */
input[type="range"].brand-range { -webkit-appearance: none; appearance: none; height: 4px; border-radius: 999px; background: #dbe1ee; outline: none; }
input[type="range"].brand-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--brand); cursor: pointer; box-shadow: 0 0 0 4px rgba(37,99,235,.2); }
input[type="range"].brand-range::-moz-range-thumb { width: 18px; height: 18px; border: none; border-radius: 50%; background: var(--brand); cursor: pointer; }

/* ---------- Stars ---------- */
.stars { color: #facc15; letter-spacing: 1px; }

/* ---------- Category list ---------- */
.cat-link { transition: background-color .2s ease, padding-left .2s ease, color .2s ease; }
.cat-link:hover { background: #eef3ff; padding-left: 1.25rem; color: var(--brand); }

/* ---------- Section heading accent ---------- */
.heading-bar { position: relative; padding-left: 14px; }
.heading-bar::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 72%; background: var(--brand); border-radius: 2px; }

/* ---------- Toast ---------- */
.toast { transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s ease; }

/* ---------- Shop filter sidebar ---------- */
.shop-filter-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  transition: background-color .15s ease, color .15s ease;
}
.shop-filter-item:hover {
  background: #f1f5f9;
  color: var(--ink);
}
.shop-filter-item.is-active {
  background: #eff6ff;
  color: var(--brand-700);
  font-weight: 600;
}
.shop-filter-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  flex-shrink: 0;
  position: relative;
  background: #fff;
}
.shop-filter-item.is-active .shop-filter-dot {
  border-color: var(--brand);
}
.shop-filter-item.is-active .shop-filter-dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: var(--brand);
}
.shop-filter-count {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  min-width: 1.5rem;
  text-align: center;
}
.shop-filter-item.is-active .shop-filter-count {
  background: #dbeafe;
  color: var(--brand-700);
}

.shop-check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.5rem 0.7rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.shop-check-item:hover { background: #f1f5f9; color: var(--ink); }
.shop-check-item.is-active { background: #eff6ff; color: var(--brand-700); }

.shop-check,
.shop-radio {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: var(--brand);
  cursor: pointer;
}

.shop-filters .brand-range {
  height: 6px;
  background: linear-gradient(90deg, #dbeafe, #bfdbfe);
}
.shop-filters .brand-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.18), 0 2px 6px rgba(15, 23, 41, 0.15);
}

/* ---------- Misc ---------- */
body.no-scroll { overflow: hidden; }
/* Children use pointer-events:auto — must disable them too or they steal taps over the drawer footer */
body.cart-drawer-open .floating-chat,
body.cart-drawer-open .floating-chat * {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
body.cart-drawer-open #backToTop {
  opacity: 0 !important;
  pointer-events: none !important;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.375rem;
  row-gap: 0.5rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.product-grid > * {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 640px) {
  .product-grid {
    gap: 1rem;
    align-items: stretch;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    gap: 1.5rem;
  }

  .product-card .add-to-cart {
    min-height: 2.875rem;
  }
}

.countdown-group {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.countdown-group .cd-chip {
  width: 2.5rem;
  height: 2.5rem;
}

.safe-bottom {
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 359px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .site-brand__name {
    max-width: clamp(6rem, 32vw, 9rem);
  }

  .header-icon-btn,
  .header-cart-btn {
    min-height: 2.75rem;
    min-width: 2.75rem;
  }

  .header-cart-btn {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .drawer,
  .mobile-menu,
  .filter-panel {
    width: min(22rem, 92vw);
  }

  .product-card {
    border-radius: 0.875rem;
    height: auto;
  }

  .product-card .quick {
    opacity: 1;
    transform: none;
  }

  .product-card .add-to-cart {
    min-height: 2.15rem;
    margin-top: 0.25rem;
    border-radius: 0.65rem;
    font-size: 0.75rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }

  .countdown-group {
    gap: 0.25rem;
  }

  .countdown-group .cd-chip {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 0.85rem;
  }

  #toast {
    left: 50% !important;
    right: auto !important;
    width: min(calc(100% - 2rem), 24rem);
    max-width: none;
    border-radius: 1rem;
    transform: translateX(-50%) translateY(6rem);
  }

  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
  select,
  textarea {
    font-size: 16px !important;
  }
}

@media (max-width: 1023px) {
  .account-dropdown,
  [data-account-dropdown] {
    position: fixed !important;
    left: 0.75rem !important;
    right: 0.75rem !important;
    top: calc(4.75rem + env(safe-area-inset-top, 0px)) !important;
    width: auto !important;
    max-width: none !important;
    margin-top: 0 !important;
    z-index: 60 !important;
  }
}

/* Price: never split currency from digits; keep card rows aligned on phone */
.product-card-price,
.product-card .pc-price,
.product-card .pc-price-was,
.product-card .dn-price,
.product-card .dn-price-was,
.product-card .sh-price,
.product-card .sh-price-was,
.product-card .dm-price,
.product-card .dm-price-was,
.product-card .fk-price,
.product-card .fk-price-was,
.product-card .rw-price,
.product-card .rw-price-was,
.product-card .hl-price,
.product-card .hl-price-was,
.product-card .nr-price,
.product-card .nr-price-was,
.product-card .tz-price {
  white-space: nowrap !important;
  word-break: keep-all;
  overflow-wrap: normal;
}
.product-card-price {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: baseline;
  gap: 0.35rem;
  min-height: 1.25rem;
  min-width: 0;
  overflow: hidden;
}
@media (min-width: 640px) {
  .product-card-price {
    min-height: 1.5rem;
    gap: 0.4rem;
  }
}
@media (max-width: 640px) {
  .product-card-price > span {
    white-space: nowrap !important;
    display: inline !important;
    max-width: none !important;
  }
  .product-card-price > span:first-child {
    font-size: 0.8125rem;
    flex: 0 0 auto;
  }
  .product-card-price > span:last-child:not(:only-child) {
    font-size: 0.6875rem;
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* WaveSeller developer credit — high visibility strip */
.ws-dev-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 1rem;
  background: #020617;
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  border-top: 3px solid #38bdf8;
}
.ws-dev-credit strong {
  color: #38bdf8;
  font-weight: 800;
  font-size: 1.05rem;
  margin-left: 0.25rem;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .ws-dev-credit {
    font-size: 0.9rem;
    padding: 1rem 0.75rem;
  }
  .ws-dev-credit strong {
    font-size: 1rem;
  }
}

/* ---------- Floating chat + back-to-top (DP-Site method) ---------- */
:root {
  --floating-action-right: max(1.25rem, env(safe-area-inset-right, 0px));
  --floating-action-bottom: max(1.125rem, env(safe-area-inset-bottom, 0px));
  --floating-action-size: 3.25rem;
  --floating-action-gap: 0.75rem;
  --floating-action-shadow: 0 18px 40px -14px rgba(20, 20, 20, 0.4);
  --floating-chat-brand: var(--brand, #2563eb);
}

#backToTop {
  transition: opacity .2s ease, background .15s ease, bottom .2s ease, right .2s ease, width .2s ease, height .2s ease !important;
}
.floating-chat {
  position: fixed;
  right: var(--floating-action-right);
  bottom: var(--floating-action-bottom);
  z-index: 35;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.floating-chat__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85) translateY(0.5rem);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.floating-chat__actions.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.floating-chat__btn,
.floating-chat__trigger {
  display: grid;
  place-items: center;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  pointer-events: auto;
  color: #fff;
  box-shadow: var(--floating-action-shadow);
  transition: transform .15s ease, filter .15s ease, background .15s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.floating-chat__btn {
  width: 3rem;
  height: 3rem;
  min-width: 44px;
  min-height: 44px;
}
.floating-chat__trigger {
  width: var(--floating-action-size);
  height: var(--floating-action-size);
  min-width: 48px;
  min-height: 48px;
  background: var(--floating-chat-brand);
}
.floating-chat__btn--whatsapp { background: #16a34a; }
.floating-chat__btn--messenger { background: #2563eb; }
@media (hover: hover) {
  .floating-chat__btn:hover,
  .floating-chat__trigger:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
  }
}
.floating-chat__icon { grid-area: 1 / 1; }
.floating-chat__icon--close { display: none; }
.floating-chat__trigger[aria-expanded="true"] .floating-chat__icon--open { display: none; }
.floating-chat__trigger[aria-expanded="true"] .floating-chat__icon--close { display: block; }

body.has-floating-chat #backToTop {
  right: var(--floating-action-right) !important;
  bottom: calc(var(--floating-action-bottom) + var(--floating-action-size) + var(--floating-action-gap)) !important;
  width: var(--floating-action-size) !important;
  height: var(--floating-action-size) !important;
  z-index: 36 !important;
}
body.floating-chat-open #backToTop {
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (max-width: 480px) {
  :root {
    --floating-action-right: max(1rem, env(safe-area-inset-right, 0px));
    --floating-action-size: 3.125rem;
  }
  .floating-chat__btn { width: 2.75rem; height: 2.75rem; }
  .floating-chat__btn svg { width: 1.25rem; height: 1.25rem; }
}

/* Mobile nav drawer — category / UI glyphs stay visible on phone */
#mobileMenu .nav-drawer-icon,
.mobile-menu .nav-drawer-icon {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  line-height: 1;
  font-size: 1rem;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Android Emoji", emoji, sans-serif;
}
#mobileMenu .nav-drawer-icon img,
.mobile-menu .nav-drawer-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}
#mobileMenu .nav-drawer-icon svg,
.mobile-menu .nav-drawer-icon svg {
  width: 1rem;
  height: 1rem;
  max-width: none;
}
#mobileMenu a.nav-drawer-link,
.mobile-menu a.nav-drawer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
