/* 糖心vlog 全站样式 */
:root {
  --bg: #FFF8F0;
  --header: rgba(38, 20, 12, .94);
  --title: #24130C;
  --brand: #FF6B35;
  --deep: #2B1A3F;
  --mint: #00E5B0;
  --gold: #FFD166;
  --rose: #B8336A;
  --pale-mint: #E9FFF8;
  --pale-gold: #FFF1C7;
  --highlight: #FF7A00;
  --text: #2A1F1A;
  --muted: #75645A;
  --soft: #A9978C;
  --card: #FFFFFF;
  --dark-card: #24130C;
  --border: rgba(255, 107, 53, .18);
  --shadow: 0 20px 46px rgba(97, 45, 16, .14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 12000; background: #fff; color: var(--title); padding: 10px 16px; border-radius: 10px; box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: var(--header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 26px rgba(97, 45, 16, .16);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 72px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
}
.site-logo, .footer-logo, .drawer-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo img { width: auto; max-width: 48px; max-height: 44px; object-fit: contain; }
.site-logo span { color: #FFF3E8; font-size: 20px; font-weight: 800; letter-spacing: .02em; white-space: nowrap; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 6px; white-space: nowrap; }
.nav-core a { color: #FFF3E8; text-decoration: none; border-radius: 999px; padding: 8px 12px; font-size: 15px; transition: .2s ease; }
.nav-core a:hover, .nav-core a.active { color: #FFFFFF; background: rgba(0, 229, 176, .16); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.main-btn, .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.main-btn { background: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%); color: #FFFFFF; box-shadow: 0 14px 32px rgba(255, 107, 53, .22); }
.main-btn:hover, .secondary-btn:hover { transform: translateY(-2px); }
.secondary-btn { background: #fff; color: var(--brand); border: 1px solid var(--border); }
.menu-button { width: 44px; height: 44px; display: inline-grid; place-content: center; gap: 4px; border: 1px solid rgba(255,255,255,.22); border-radius: 14px; background: rgba(255,255,255,.08); cursor: pointer; }
.menu-button span { display: block; width: 18px; height: 2px; border-radius: 999px; background: #fff; }
.mobile-menu-button { display: none; }
.drawer-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(20, 8, 5, .56); opacity: 0; transition: opacity .22s ease; }
.drawer-overlay.is-visible { opacity: 1; }
.site-drawer { position: fixed; top: 0; right: 0; z-index: 10001; width: min(390px, 92vw); height: 100dvh; padding: 24px; overflow-y: auto; background: #FFF8F0; box-shadow: -24px 0 60px rgba(36, 19, 12, .24); transform: translateX(105%); transition: transform .26s ease; }
.site-drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.drawer-brand img { width: 44px; height: 44px; object-fit: contain; }
.drawer-brand strong { color: var(--title); font-size: 20px; }
.drawer-close { width: 42px; height: 42px; border: 0; border-radius: 50%; background: #fff; color: var(--title); font-size: 30px; line-height: 1; cursor: pointer; box-shadow: 0 10px 24px rgba(97,45,16,.12); }
.drawer-intro { color: var(--muted); margin: 18px 0; }
.drawer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.drawer-nav a { padding: 12px 14px; border-radius: 14px; background: #fff; border: 1px solid var(--border); text-decoration: none; color: var(--title); font-weight: 700; }
.drawer-nav a:hover { color: var(--brand); background: var(--pale-mint); }
.drawer-service { margin-top: 20px; padding: 18px; background: var(--dark-card); color: #FFF3E8; border-radius: 20px; }
.drawer-service span { display: block; color: var(--gold); font-size: 13px; }
.drawer-service a { display: inline-block; margin-top: 6px; color: #fff; font-weight: 800; text-decoration: none; }
main { min-height: 60vh; }
.section { padding: 88px 24px; }
.section-tight { padding: 56px 24px; }
.container { width: min(100%, var(--max)); margin: 0 auto; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-kicker, .eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; color: var(--rose); font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.section-kicker::before, .eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--mint)); }
h1, h2, h3, .section-title { margin-top: 0; color: var(--title); line-height: 1.22; }
h1 { font-size: clamp(42px, 7vw, 80px); letter-spacing: -.04em; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.025em; }
h3 { font-size: 22px; }
p { margin-top: 0; }
.lead { color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.text-link { color: var(--brand); text-decoration: none; font-weight: 800; }
.text-link:hover { text-decoration: underline; }
.tag, .label, .badge { display: inline-flex; align-items: center; width: fit-content; border-radius: 999px; padding: 6px 11px; font-size: 13px; font-weight: 800; }
.tag { background: rgba(255,209,102,.24); color: #8a5e00; }
.label { background: rgba(0,229,176,.12); color: #007f63; }
.badge { background: rgba(184,51,106,.1); color: var(--rose); }
.card, .zone-card, .info-card, .review-card, .faq-item { background: #FFFFFF; border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 22px; }
.hero { position: relative; overflow: hidden; padding: 70px 24px 76px; background: radial-gradient(circle at 12% 18%, rgba(255,209,102,.45), transparent 30%), radial-gradient(circle at 86% 16%, rgba(0,229,176,.22), transparent 34%), linear-gradient(135deg, #FFF1F4 0%, #F2EDFF 48%, #E9FFF8 100%); }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero::before { width: 260px; height: 260px; right: -80px; top: -70px; background: rgba(255,107,53,.12); }
.hero::after { width: 180px; height: 180px; left: 42%; bottom: -90px; background: rgba(0,229,176,.12); }
.hero-grid { position: relative; z-index: 1; width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; }
.hero-copy h1 { margin-bottom: 14px; }
.hero-subtitle { font-size: clamp(24px, 3vw, 38px); font-weight: 900; color: var(--deep); margin-bottom: 18px; }
.hero-copy .lead { max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 26px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.hero-points li { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.78); border: 1px solid rgba(255,107,53,.16); color: var(--title); font-weight: 700; }
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; inset: 8% 4%; border-radius: 42% 58% 63% 37% / 42% 38% 62% 58%; background: linear-gradient(135deg, rgba(255,107,53,.24), rgba(0,229,176,.22)); transform: rotate(-6deg); }
.hero-visual img { position: relative; z-index: 2; width: 100%; max-height: 560px; object-fit: contain; filter: drop-shadow(0 28px 40px rgba(43,26,63,.2)); }
.floating-note { position: absolute; z-index: 3; display: grid; gap: 3px; min-width: 160px; padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 18px 36px rgba(43,26,63,.14); backdrop-filter: blur(12px); }
.floating-note strong { color: var(--title); }
.floating-note span { color: var(--muted); font-size: 13px; }
.floating-note.one { left: 0; top: 12%; }
.floating-note.two { right: 0; bottom: 12%; }
.highlight-strip { position: relative; z-index: 4; margin-top: -28px; padding: 0 24px; }
.highlight-grid { width: min(100%, 1180px); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow); }
.highlight-item { padding: 24px; }
.highlight-item + .highlight-item { border-left: 1px solid var(--border); }
.highlight-item h3 { margin-bottom: 8px; font-size: 18px; }
.highlight-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.capsule-nav { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.capsule-item { min-height: 122px; padding: 18px; border-radius: 20px; background: #fff; border: 1px solid var(--border); box-shadow: 0 12px 30px rgba(97,45,16,.08); }
.capsule-item h3 { margin-bottom: 8px; font-size: 17px; }
.capsule-item p { color: var(--muted); font-size: 13px; line-height: 1.55; margin-bottom: 8px; }
.split-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.media-split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 40px; align-items: center; }
.media-split.reverse { grid-template-columns: 1.08fr .92fr; }
.media-split.reverse .media-image { order: 2; }
.media-image { padding: 18px; border-radius: 28px; background: linear-gradient(145deg, #fff, #fff6ee); border: 1px solid var(--border); box-shadow: var(--shadow); }
.media-image img, .content-img, .zone-card img, .app-section img { width: 100%; max-height: 520px; object-fit: contain; border-radius: 20px; }
.media-content p { color: var(--muted); }
.check-list { display: grid; gap: 12px; padding: 0; margin: 22px 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; display: grid; place-content: center; border-radius: 50%; background: rgba(0,229,176,.14); color: #007f63; font-size: 13px; font-weight: 900; }
.zone-card { overflow: hidden; }
.zone-card .card-image { padding: 16px 16px 0; }
.zone-card .card-image img { width: 100%; max-height: 300px; object-fit: contain; border-radius: 18px; background: #fff8f0; }
.zone-card .card-body { padding: 26px; }
.zone-card p { color: var(--muted); }
.point-list { display: grid; gap: 10px; padding: 0; list-style: none; }
.point-list li { padding: 12px 14px; border-radius: 14px; background: #FFF9F3; color: var(--text); }
.three-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-card { min-height: 100%; padding: 26px; }
.service-card img { width: 100%; height: 180px; object-fit: contain; margin-bottom: 18px; border-radius: 18px; background: linear-gradient(135deg, #FFF1C7, #E9FFF8); }
.service-card p { color: var(--muted); }
.security-section { background: linear-gradient(135deg, #24130C 0%, #2B1A3F 100%); color: #FFF3E8; }
.security-section h2, .security-section h3 { color: #fff; }
.security-section .section-kicker { color: var(--gold); }
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.security-card { display: grid; grid-template-columns: 180px 1fr; gap: 24px; align-items: center; padding: 24px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.security-card img { width: 180px; height: 180px; object-fit: contain; border-radius: 18px; background: rgba(255,255,255,.08); }
.security-card p { color: rgba(255,243,232,.76); }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.review-card { padding: 24px; position: relative; }
.review-card::before { content: "“"; position: absolute; right: 20px; top: 4px; color: rgba(255,107,53,.18); font-size: 72px; font-family: Georgia, serif; line-height: 1; }
.review-card p { position: relative; z-index: 1; color: var(--muted); }
.review-meta { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.avatar { width: 38px; height: 38px; display: grid; place-content: center; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--mint)); color: #fff; font-weight: 900; }
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 0; overflow: hidden; }
.faq-item details { padding: 0; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 22px; color: var(--title); font-weight: 900; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-content: center; border-radius: 50%; background: var(--pale-mint); color: #007f63; }
.faq-item details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 22px; color: var(--muted); }
.notice-band { padding: 28px; border-radius: 26px; background: linear-gradient(135deg, #FFF1C7 0%, #E9FFF8 100%); border: 1px solid rgba(255,107,53,.16); }
.notice-band h2, .notice-band h3 { margin-bottom: 10px; }
.notice-band p:last-child { margin-bottom: 0; }
.page-hero { padding: 64px 24px; background: radial-gradient(circle at 10% 10%, rgba(255,209,102,.35), transparent 28%), radial-gradient(circle at 88% 20%, rgba(0,229,176,.18), transparent 32%), linear-gradient(135deg, #FFF5F0, #F3EFFF 55%, #EFFFFA); }
.page-hero-grid { width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1fr .85fr; gap: 50px; align-items: center; }
.page-hero h1 { font-size: clamp(38px, 5.5vw, 68px); margin-bottom: 16px; }
.page-hero .lead { max-width: 720px; }
.page-hero img { width: 100%; max-height: 440px; object-fit: contain; filter: drop-shadow(0 24px 38px rgba(43,26,63,.16)); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; color: var(--soft); font-size: 14px; }
.breadcrumb a { color: var(--brand); text-decoration: none; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; align-items: start; }
.article-card { padding: 34px; }
.article-card h2 { margin-top: 36px; font-size: clamp(26px, 3vw, 36px); }
.article-card h2:first-child { margin-top: 0; }
.article-card p { color: var(--muted); }
.sidebar { display: grid; gap: 18px; position: sticky; top: 98px; }
.sidebar-card { padding: 22px; }
.sidebar-card img { width: 100%; max-height: 240px; object-fit: contain; border-radius: 16px; background: linear-gradient(135deg, #FFF1C7, #E9FFF8); margin-bottom: 16px; }
.sidebar-card p { color: var(--muted); font-size: 14px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feature-box { padding: 22px; }
.feature-box p { color: var(--muted); margin-bottom: 0; }
.steps { counter-reset: step; display: grid; gap: 14px; }
.step { counter-increment: step; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 18px; border-radius: 18px; background: #FFF9F3; border: 1px solid var(--border); }
.step::before { content: counter(step); width: 44px; height: 44px; display: grid; place-content: center; border-radius: 14px; background: var(--deep); color: #fff; font-weight: 900; }
.step h3 { margin: 0 0 4px; font-size: 18px; }
.step p { margin: 0; }
.quote-panel { padding: 26px; border-radius: 22px; background: var(--dark-card); color: #FFF3E8; }
.quote-panel p { color: rgba(255,243,232,.78); }
.quote-panel strong { color: var(--gold); }
.mini-faq { display: grid; gap: 12px; }
.mini-faq article { padding: 18px; border-radius: 16px; background: #fff; border: 1px solid var(--border); }
.mini-faq h3 { margin-bottom: 8px; font-size: 18px; }
.mini-faq p { margin: 0; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.contact-card { padding: 24px; }
.contact-card p { color: var(--muted); }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 7px; font-weight: 800; color: var(--title); }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid rgba(97,45,16,.2); border-radius: 14px; padding: 13px 14px; background: #fff; color: var(--text); outline: none; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(255,107,53,.1); }
.site-footer { background: #1A0F0A; color: #FFF3E8; padding: 64px 24px 24px; }
.footer-inner { width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1.9fr; gap: 54px; }
.footer-logo img { width: 48px; height: 48px; object-fit: contain; }
.footer-logo span { font-size: 22px; font-weight: 900; }
.footer-brand-block p { color: rgba(255,243,232,.68); max-width: 430px; margin-top: 18px; }
.footer-links { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
.footer-links div { display: grid; align-content: start; gap: 8px; }
.footer-links strong { color: var(--gold); margin-bottom: 4px; }
.footer-links a { color: rgba(255,243,232,.76); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-notice { width: min(100%, var(--max)); margin: 36px auto 0; padding: 18px 20px; border-radius: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.footer-notice p { margin: 0; color: rgba(255,243,232,.68); font-size: 13px; }
.footer-bottom { width: min(100%, var(--max)); margin: 22px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 12px; color: rgba(255,243,232,.48); font-size: 13px; }
.mobile-bottom-nav { display: none; }
@media (max-width: 1100px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav-core { display: none; }
  .desktop-menu-button { display: inline-grid; }
  .hero-grid, .page-hero-grid { gap: 34px; }
  .capsule-nav { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .review-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .section { padding: 68px 20px; }
  .section-tight { padding: 46px 20px; }
  .hero { padding: 52px 20px 70px; }
  .hero-grid, .page-hero-grid, .media-split, .media-split.reverse, .content-grid { grid-template-columns: 1fr; }
  .media-split.reverse .media-image { order: 0; }
  .hero-visual { min-height: 400px; }
  .highlight-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .highlight-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
  .highlight-item:nth-child(4) { border-top: 1px solid var(--border); }
  .split-grid, .security-grid { grid-template-columns: 1fr; }
  .three-grid, .feature-grid, .contact-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sidebar { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-links { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .header-inner { min-height: 64px; padding: 0 12px; grid-template-columns: 44px 1fr auto; gap: 8px; }
  .mobile-menu-button { display: inline-grid; }
  .desktop-menu-button { display: none; }
  .site-logo { justify-self: center; }
  .site-logo img { max-width: 38px; max-height: 38px; }
  .site-logo span { display: none; }
  .header-cta { min-height: 40px; padding: 8px 14px; font-size: 13px; }
  .site-drawer { left: 0; right: auto; transform: translateX(-105%); box-shadow: 24px 0 60px rgba(36,19,12,.24); }
  .site-drawer.is-open { transform: translateX(0); }
  .drawer-nav { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 38px; }
  h1 { font-size: clamp(40px, 15vw, 62px); }
  .hero-subtitle { font-size: 24px; }
  .hero-visual { min-height: 330px; }
  .floating-note { min-width: 132px; padding: 10px 12px; }
  .floating-note.one { top: 2%; }
  .floating-note.two { bottom: 2%; }
  .highlight-strip { margin-top: -22px; padding: 0 14px; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-item + .highlight-item, .highlight-item:nth-child(3), .highlight-item:nth-child(4) { border-left: 0; border-top: 1px solid var(--border); }
  .capsule-nav, .three-grid, .feature-grid, .contact-grid, .review-grid, .sidebar { grid-template-columns: 1fr; }
  .split-grid { gap: 18px; }
  .security-card { grid-template-columns: 1fr; }
  .security-card img { width: 100%; height: 220px; }
  .article-card { padding: 24px 18px; }
  .page-hero { padding: 46px 20px; }
  .page-hero img { max-height: 320px; }
  .footer-links { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px 18px; }
  .footer-bottom { flex-direction: column; }
  .mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000; display: grid; grid-template-columns: repeat(4, 1fr); padding: 7px 8px calc(7px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-top: 1px solid var(--border); box-shadow: 0 -10px 28px rgba(97,45,16,.12); }
  .mobile-bottom-nav a { display: grid; place-items: center; gap: 1px; color: var(--muted); text-decoration: none; font-size: 11px; font-weight: 800; }
  .mobile-bottom-nav a span { font-size: 20px; line-height: 1; }
  .mobile-bottom-nav a.active { color: var(--brand); }
}
