/* =================================================================
   BODYMIST — Design System
   Palette: blush / dusty rose / warm white, echoing the logo ring
   Type: Fraunces (display serif) + Outfit (body/UI sans)
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Core palette */
  --bm-bg: #FBF5F2;            /* warm blush-white background */
  --bm-bg-soft: #F7E9E2;       /* pale pink panel bg */
  --bm-rose: #D89B8A;          /* dusty rose - from logo ring */
  --bm-rose-deep: #C17A64;     /* deeper terracotta-rose - CTAs */
  --bm-rose-darker: #A8624E;   /* hover state for CTAs */
  --bm-ink: #2E2422;           /* warm near-black for text */
  --bm-ink-soft: #6B5A55;      /* muted body text */
  --bm-white: #FFFFFF;
  --bm-line: #EAD9D1;          /* hairline border */
  --bm-success: #5C8A6A;
  --bm-error: #B6483A;
  --bm-gold: #C9A45C;          /* sparingly for "offer" badges */

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii & shadow */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 4px 24px rgba(46, 36, 34, 0.06);
  --shadow-card: 0 2px 12px rgba(46, 36, 34, 0.07);
  --shadow-lift: 0 12px 32px rgba(193, 122, 100, 0.18);

  --container-max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bm-bg);
  color: var(--bm-ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--bm-ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--bm-ink-soft); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bm-rose-deep);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bm-rose-deep);
  color: var(--bm-white);
  box-shadow: var(--shadow-lift);
}
.btn-primary:hover { background: var(--bm-rose-darker); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--bm-ink);
  border: 1.5px solid var(--bm-ink);
}
.btn-outline:hover { background: var(--bm-ink); color: var(--bm-white); }
.btn-light {
  background: var(--bm-white);
  color: var(--bm-rose-deep);
  border: 1.5px solid var(--bm-line);
}
.btn-light:hover { border-color: var(--bm-rose-deep); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 245, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bm-line);
}
.announce-bar {
  background: var(--bm-ink);
  color: var(--bm-bg);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  font-weight: 500;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-link img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; }
.logo-wordmark {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bm-ink);
}
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bm-ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--bm-rose-deep); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bm-white);
  border: 1px solid var(--bm-line);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.icon-btn:hover { border-color: var(--bm-rose-deep); }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--bm-rose-deep);
  color: var(--bm-white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-btn { display: none; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer {
  position: fixed; top: 0; right: -340px; bottom: 0; width: 300px;
  background: var(--bm-white);
  z-index: 300;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transition: right 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.mobile-drawer.open { right: 0; }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--bm-line);
  background: var(--bm-bg-soft);
  flex-shrink: 0;
}
.drawer-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.drawer-logo img {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
}
.drawer-logo span {
  font-weight: 700; font-size: 1rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--bm-ink);
}
.drawer-close {
  background: none; border: none; cursor: pointer; color: var(--bm-ink-soft);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s;
}
.drawer-close:hover { background: var(--bm-line); }

.drawer-user {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; font-size: 0.85rem; font-weight: 600;
  color: var(--bm-rose-deep); background: #FFF5F3;
  border-bottom: 1px solid var(--bm-line);
  flex-shrink: 0;
}

.drawer-nav {
  display: flex; flex-direction: column;
  overflow-y: auto; flex: 1;
  padding: 8px 0 80px;
}
.drawer-nav a, .drawer-logout {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  font-size: 0.97rem; font-weight: 500;
  color: var(--bm-ink);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.15s, color 0.15s;
  text-decoration: none; position: relative;
}
.drawer-nav a:hover { background: var(--bm-bg-soft); color: var(--bm-rose-deep); }
.drawer-nav a svg, .drawer-logout svg { color: var(--bm-ink-soft); flex-shrink: 0; }
.drawer-nav a:hover svg { color: var(--bm-rose-deep); }

.drawer-divider { height: 8px; background: var(--bm-bg); border-top: 1px solid var(--bm-line); border-bottom: 1px solid var(--bm-line); flex-shrink: 0; }

.drawer-badge {
  margin-left: auto;
  background: var(--bm-rose-deep); color: var(--bm-white);
  font-size: 0.7rem; font-weight: 700;
  min-width: 20px; height: 20px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; padding: 0 5px;
}

.drawer-logout {
  color: #C0392B; cursor: pointer; background: none; border: none; width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.04); font-family: var(--font-body);
}
.drawer-logout:hover { background: #FFF0EE; }

.drawer-overlay {
  position: fixed; inset: 0; background: rgba(46,36,34,0.5);
  z-index: 299; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* ---------- Mobile Bottom Navigation Bar ---------- */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--bm-white);
  border-top: 1px solid var(--bm-line);
  box-shadow: 0 -4px 20px rgba(46,36,34,0.08);
  z-index: 200;
  align-items: stretch;
}

.mob-nav-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex: 1; gap: 4px;
  font-size: 0.65rem; font-weight: 600;
  color: var(--bm-ink-soft);
  text-decoration: none;
  transition: color 0.2s;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  padding: 6px 0;
  letter-spacing: 0.02em;
}
.mob-nav-item:hover, .mob-nav-item.active { color: var(--bm-rose-deep); }
.mob-nav-item svg { transition: stroke 0.2s; }
.mob-nav-item.active svg { stroke: var(--bm-rose-deep); }

/* Cart bubble in bottom nav */
.mob-nav-cart { color: var(--bm-ink); }
.mob-cart-icon {
  position: relative;
  width: 44px; height: 44px;
  background: var(--bm-rose-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: -24px;
  box-shadow: 0 4px 14px rgba(193,122,100,0.45);
  border: 3px solid var(--bm-white);
  flex-shrink: 0;
}
.mob-cart-icon svg { stroke: #fff; }
.mob-cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--bm-ink); color: var(--bm-white);
  font-size: 0.6rem; font-weight: 800;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: none; align-items: center; justify-content: center; padding: 0 3px;
}
.mob-nav-cart span:last-child { margin-top: 2px; color: var(--bm-ink-soft); font-size: 0.65rem; }

@media (max-width: 900px) {
  .mobile-bottom-nav { display: flex; }
  /* Give body bottom padding so content isn't hidden behind bottom nav */
  body { padding-bottom: 64px; }
}

/* ---------- Hero Slider ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 560px;
  overflow: hidden;
  background: var(--bm-bg-soft);
}
@media (max-width: 720px) {
  .hero-slider { aspect-ratio: 4 / 5; max-height: 520px; }
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-caption {
  position: absolute;
  left: 6%;
  bottom: 12%;
  max-width: 460px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  padding: 28px 32px;
  border-radius: var(--radius-md);
}
@media (max-width: 720px) {
  .hero-caption { left: 5%; right: 5%; bottom: 8%; max-width: none; padding: 20px 22px; }
}
.hero-caption .eyebrow { display: block; margin-bottom: 8px; }
.hero-caption h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 10px; }
.hero-dots {
  position: absolute; bottom: 18px; right: 6%;
  display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(46,36,34,0.2);
  cursor: pointer;
}
.hero-dot.active { background: var(--bm-rose-deep); border-color: var(--bm-rose-deep); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.2s ease;
}
.hero-arrow:hover { background: var(--bm-white); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ---------- Section ---------- */
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px; gap: 16px; flex-wrap: wrap;
}
.section-head .heading-block .eyebrow { display: block; margin-bottom: 6px; }
.section-head h2 { margin: 0; }
.view-all-link {
  font-size: 0.9rem; font-weight: 600; color: var(--bm-rose-deep);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ---------- Category Grid ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bm-bg-soft);
  box-shadow: var(--shadow-card);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 18px;
  background: linear-gradient(0deg, rgba(46,36,34,0.55), transparent);
  color: var(--bm-white);
}
.cat-card-label h3 { color: var(--bm-white); margin: 0; font-size: 1.15rem; }
.cat-card-label span { font-size: 0.8rem; opacity: 0.85; }

/* ---------- Product Grid & Card ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px 14px; } }
@media (max-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; } }

.product-card {
  background: var(--bm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.product-thumb {
  position: relative;
  aspect-ratio: 3/3.6;
  background: var(--bm-bg-soft);
  overflow: hidden;
}
.product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.4s ease;
}
.product-thumb .img-secondary {
  position: absolute; inset: 0; opacity: 0;
}
.product-card:hover .img-secondary { opacity: 1; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--bm-rose-deep); color: var(--bm-white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 5px 10px; border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.wishlist-heart-btn {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--bm-ink); transition: transform 0.15s ease, color 0.15s ease;
}
.wishlist-heart-btn:hover { transform: scale(1.1); }
.wishlist-heart-btn.active { color: var(--bm-rose-deep); }
.wishlist-heart-btn.pulse { animation: heartPulse 0.35s ease; }
@keyframes heartPulse { 0% { transform: scale(1); } 40% { transform: scale(1.3); } 100% { transform: scale(1); } }
.product-info { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bm-ink-soft); }
.product-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--bm-ink);
  line-height: 1.35;
  min-height: 2.6em;
}
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.price-now { font-weight: 700; font-size: 1.05rem; color: var(--bm-ink); }
.price-was { font-size: 0.85rem; color: var(--bm-ink-soft); text-decoration: line-through; }
.price-off { font-size: 0.74rem; color: var(--bm-success); font-weight: 600; }
.product-add-row { margin-top: 10px; }
.add-to-cart-btn {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--bm-ink);
  background: var(--bm-white);
  color: var(--bm-ink);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.add-to-cart-btn:hover { background: var(--bm-ink); color: var(--bm-white); }
.add-to-cart-btn.added { background: var(--bm-success); border-color: var(--bm-success); color: var(--bm-white); }

/* ---------- Trust strip ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--bm-bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
@media (max-width: 720px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.trust-item svg { color: var(--bm-rose-deep); }
.trust-item strong { font-size: 0.88rem; font-weight: 600; }
.trust-item span { font-size: 0.76rem; color: var(--bm-ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bm-ink);
  color: #E7DDD9;
  padding: 56px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr 1.1fr;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 {
  color: var(--bm-white); font-family: var(--font-body); font-weight: 600;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px;
}
.footer-grid a, .footer-grid p { color: #C9BDB8; font-size: 0.88rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 38px; width: 38px; border-radius: 50%; }
.footer-logo span { font-family: var(--font-body); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 1.05rem; color: var(--bm-white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; font-size: 0.78rem; color: #9C8E89; flex-wrap: wrap; gap: 10px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--bm-rose-deep); }

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.07); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.82rem; color: var(--bm-ink-soft); margin-bottom: 20px; }
.breadcrumb a { color: var(--bm-ink-soft); }
.breadcrumb a:hover { color: var(--bm-rose-deep); }
.breadcrumb span.sep { margin: 0 6px; opacity: 0.5; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 6px; color: var(--bm-ink); }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--bm-line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--bm-white);
  color: var(--bm-ink);
  transition: border-color 0.2s ease;
}
.form-control:focus { outline: none; border-color: var(--bm-rose-deep); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Alerts ---------- */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 20px; }
.alert-success { background: #E6F0E8; color: var(--bm-success); border: 1px solid #C6DECA; }
.alert-error { background: #FBE9E6; color: var(--bm-error); border: 1px solid #F0C7C0; }
.alert-info { background: var(--bm-bg-soft); color: var(--bm-rose-deep); border: 1px solid var(--bm-line); }

/* ---------- Misc utility ---------- */
.text-center { text-align: center; }
.muted { color: var(--bm-ink-soft); }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state svg { color: var(--bm-rose); margin-bottom: 16px; }
.skeleton { background: linear-gradient(90deg, #f0e4df 25%, #f7ece7 37%, #f0e4df 63%); background-size: 400% 100%; animation: skeleton 1.4s ease infinite; }
@keyframes skeleton { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--bm-rose-deep);
  outline-offset: 2px;
}
