/* ======================================================================
   MASTER.CSS — Pepta Labs sitewide styles (moved out of Site.Master)
   Load order: bootstrap-reboot -> bootstrap-grid -> master.css -> theme.css.
   Critical above-the-fold rules (tokens, reset, body, utility bar, header,
   category bar, drawer shell, responsive header) stay inline in Site.Master;
   every other rule that used to live in the master's <style> block is here,
   in its original order, so overrides of Reboot still win.
   ====================================================================== */

.utility-bar .research-badge a:hover { color: #fff; text-decoration-color: #fff; }
.utility-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.utility-links .cart-count {
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ── Account Dropdown ── */
.account-dropdown-wrap { position: relative; }
.utility-account-btn {
    background: none; border: none; cursor: pointer;
    color: #b7bcc4; padding: 4px 12px;
    border-radius: var(--radius-full); font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 500; display: flex;
    align-items: center; gap: 6px; transition: all 0.2s ease;
}
.utility-account-btn:hover { color: #fff; background: rgba(255,255,255,0.08); }
.account-dropdown {
    display: none; position: absolute; top: calc(100% + 8px); right: 0;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; min-width: 220px; padding: 6px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15); z-index: 1000;
}
.account-dropdown.open { display: block; animation: dropdown-in 0.15s ease; }
@keyframes dropdown-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.account-dropdown-header { padding: 10px 12px; }
.account-dropdown-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.account-dropdown-email { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }
.account-dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }
.account-dropdown-item {
    display: flex; align-items: center; gap: 10px; padding: 9px 12px;
    font-size: 13px; font-weight: 500; color: var(--ink-soft);
    text-decoration: none; border-radius: 8px; transition: all 0.15s ease;
}
.account-dropdown-item:hover { background: var(--surface-raised); color: var(--ink); text-decoration: none; }
.account-dropdown-item.logout { color: var(--accent); }
.account-dropdown-item.logout:hover { background: rgba(214,48,49,0.06); }

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.logo:hover { text-decoration: none; }

/* ── Search (hero centre element) ── */
.search-zone {
    width: 100%;
    max-width: 620px;
    justify-self: center;
    position: relative;
}
.search-container {
    position: relative;
    width: 100%;
}
.search-input,
.search-input[type="text"] {
    width: 100%;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 4px !important;
    padding: 0 48px 0 46px !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--surface-raised);
    box-shadow: inset 0 1px 2px rgba(15,17,20,.05);
    outline: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-input::placeholder {
    color: var(--ink-muted);
}
.search-input:hover {
    border-color: var(--ink-muted);
    background: var(--surface);
}
.search-input:focus {
    border-color: var(--ink) !important;
    box-shadow: 0 0 0 4px rgba(15,17,20,.07) !important;
    background: var(--surface);
}
.search-icon-left {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-muted);
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 2;
}
.search-input:focus ~ .search-icon-left {
    color: var(--accent);
}
.search-shortcut {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 3px;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 2;
}
.search-input:focus ~ .search-shortcut {
    opacity: 0;
}
.kbd {
    background: var(--surface-raised);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 2px 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-muted);
    line-height: 1.4;
}

/* ── Autocomplete dropdown ── */
.autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    max-height: 420px;
    display: flex;
    flex-direction: column;
}
#acContent {
    overflow-y: auto;
    flex: 1;
}
.autocomplete-dropdown.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ac-section-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
    padding: 12px 16px 6px;
}
.ac-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
}
.ac-item:hover,
.ac-item.active {
    background: var(--surface-raised);
}
.ac-item-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--surface-raised);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}
.ac-item:hover .ac-item-icon {
    background: var(--accent-glow);
}
.ac-item-text {
    flex: 1;
    min-width: 0;
}
.ac-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ac-item-name mark {
    background: none;
    color: var(--accent);
    font-weight: 600;
}
.ac-item-meta {
    font-size: 12px;
    color: var(--ink-muted);
}
.ac-item-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    flex-shrink: 0;
}
.ac-loading, .ac-empty {
    padding: 20px 16px;
    text-align: center;
    font-size: 13px;
    color: var(--ink-muted);
}
.ac-loading::after {
    content: '';
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: acSpin 0.6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}
@keyframes acSpin { to { transform: rotate(360deg); } }
.ac-item-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}
.ac-item-badge.bestseller { background: #fef3c7; color: #92400e; }
.ac-item-badge.new { background: #dbeafe; color: #1e40af; }
.ac-item-badge.sale { background: #fce7f3; color: #9d174d; }

/* ── Nav action pills (right of search) ── */
.nav-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    height: 71px;
    text-decoration: none;
    color: var(--ink-soft);
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    transition: color 0.16s ease;
    white-space: nowrap;
    position: relative;
}
.nav-pill::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
    background: var(--accent); transform: scaleX(0); transform-origin: left;
    transition: transform 0.2s cubic-bezier(.4,0,.2,1);
}
.nav-pill:hover::after, .nav-pill.active::after { transform: scaleX(1); }
.nav-pill svg { opacity: 0.45; }
.nav-pill.active { color: var(--ink); font-weight: 600; }
.nav-pill.active svg { opacity: 1; color: var(--accent); }

/* ── promo, now in the header ── */
.promo-chip {
    display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0;
    text-decoration: none; border: 1px solid var(--border); border-radius: 9px;
    padding: 6px 11px 6px 7px; background: var(--surface);
    transition: border-color .16s ease, background .16s ease;
}
.promo-chip:hover { border-color: var(--accent); background: var(--accent-glow); text-decoration: none; }
.promo-chip .pc-l {
    font-family: var(--pl-mono); font-size: 9px; letter-spacing: 0.1em;
    text-transform: uppercase; color: #fff; background: var(--accent);
    padding: 3px 7px; border-radius: 5px; line-height: 1.35;
}
.promo-chip .pc-c { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.nav-pill:hover { color: var(--ink); text-decoration: none; }

.category-inner::-webkit-scrollbar { display: none; }
.cat-spacer { flex: 1; min-width: 8px; }
.cat-link:hover { color: var(--ink); border-bottom-color: var(--border); text-decoration: none; }
.cat-link .n {
    font-family: var(--pl-mono); font-size: 10px; color: var(--ink-muted);
    font-variant-numeric: tabular-nums;
}
.cat-link.active .n { color: var(--accent); }
.hdr-link:hover { color: var(--ink); text-decoration: none; }

.cat-link .badge {
    font-size: 9px;
    font-weight: 700;
    background: var(--accent);
    color: #fff;
    padding: 1px 6px;
    border-radius: var(--radius-full);
    margin-left: 5px;
    vertical-align: middle;
    letter-spacing: 0.04em;
}

/* ================================================================
   DISCLAIMER BANNER
   ================================================================ */
.disclaimer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    margin: 24px 0;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.disclaimer strong {
    color: #fff;
    font-weight: 600;
}
.disclaimer svg {
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.5;
}

/* ================================================================
   CONTENT AREA
   ================================================================ */

/* Margin moved off the promo's inline style so a stylesheet can
   re-centre it when the container goes full-bleed. See theme.css. */
/* Sits on the dark bar, so it can carry real weight without shouting
   across the research-use notice two bands above it. */

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
    background: var(--accent);
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s ease;
}
.btn-primary:hover {
    background: var(--accent-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(214,48,49,0.3);
}
.btn-success {
    background: #0b8457;
    border: none;
    transition: all 0.2s ease;
}
.btn-success:hover {
    background: #09704a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11,132,87,0.3);
}

/* ================================================================
   CARDS
   ================================================================ */
.card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    background: var(--surface);
    transition: all 0.25s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #d0d3d9;
}

/* ================================================================
   TABLES
   ================================================================ */
.table {
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--surface-raised);
}

/* ================================================================
   FORMS
   ================================================================ */
.form-control {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 10px 12px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s ease;
}
.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    margin-top: 60px;
    padding: 48px 0 32px;
    background: var(--ink);
    color: rgba(255,255,255,0.6);
}
.footer .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.footer h5 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}
.footer a:hover {
    color: #fff;
}
.footer p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    line-height: 1.6;
}
.footer hr {
    margin: 32px 0;
    border-color: rgba(255,255,255,0.08);
    opacity: 1;
}
.footer .footer-links a {
    display: block;
    padding: 4px 0;
}
.footer .footer-bottom {
    text-align: center;
}
.footer .footer-bottom p {
    margin-bottom: 4px;
}
.footer .text-small {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
}

/* ================================================================
   UTILITY CLASSES
   ================================================================ */
.text-muted { color: var(--ink-muted) !important; }
.text-small { font-size: 12px; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes header-enter {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

.hamburger-btn:hover { background: var(--surface-raised); }
/* Animated X when open */
body.drawer-open .hamburger-btn .bar { background: transparent; }
body.drawer-open .hamburger-btn .bar::before { top: 0; transform: rotate(45deg); }
body.drawer-open .hamburger-btn .bar::after  { top: 0; transform: rotate(-45deg); }

.mobile-cart-btn:hover { background: var(--surface-raised); }
.mobile-cart-btn .cart-count {
    position: absolute; top: 4px; right: 4px;
    background: var(--accent); color: #fff; font-size: 9px;
    font-weight: 700; width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.drawer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.drawer-logo svg { width: 28px; height: 28px; }
.drawer-logo-text { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.drawer-logo-text .light { font-weight: 400; color: var(--ink-muted); }
.drawer-close {
    width: 36px; height: 36px; border-radius: 10px;
    background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-muted); transition: all 0.2s ease;
}
.drawer-close:hover { background: var(--surface-raised); color: var(--ink); }

.drawer-search {
    padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.drawer-search input {
    width: 100%; height: 44px; border: 2px solid var(--border);
    border-radius: 10px; padding: 0 14px 0 40px;
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    color: var(--ink); background: var(--surface-raised);
    outline: none; transition: all 0.2s ease;
}
.drawer-search input:focus { border-color: var(--accent); background: var(--surface); }
.drawer-search .search-wrap { position: relative; }
.drawer-search .search-wrap svg {
    position: absolute; left: 12px; top: 50%;
    transform: translateY(-50%); color: var(--ink-muted);
    pointer-events: none;
}

.drawer-section { padding: 8px 12px; }
.drawer-section-label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--ink-muted);
    padding: 8px 8px 4px; margin: 0;
}
.drawer-link {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 12px; border-radius: 10px;
    font-size: 14px; font-weight: 500; color: var(--ink-soft);
    text-decoration: none; transition: all 0.15s ease;
}
.drawer-link:hover, .drawer-link:active { background: var(--surface-raised); color: var(--ink); text-decoration: none; }
.drawer-link.active { background: var(--accent-glow); color: var(--accent); font-weight: 600; }
.drawer-link svg { flex-shrink: 0; opacity: 0.5; }
.drawer-link .badge {
    font-size: 9px; font-weight: 700; text-transform: uppercase;
    padding: 2px 6px; border-radius: 4px; letter-spacing: 0.04em;
}
.drawer-link .badge-hot { background: #fff0f0; color: var(--accent); }
.drawer-link .badge-new { background: #ecfdf5; color: #059669; }
.drawer-divider { height: 1px; background: var(--border); margin: 4px 12px; }

/* ── Drawer: expandable category groups ── */
.drawer-cat { margin: 1px 0; }
.drawer-cat-toggle {
    display: flex; align-items: center; gap: 12px; width: 100%;
    padding: 12px 12px; border-radius: 10px; border: none;
    background: none; cursor: pointer; text-align: left;
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    font-weight: 500; color: var(--ink-soft); transition: all 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.drawer-cat-toggle:hover { background: var(--surface-raised); color: var(--ink); }
.drawer-cat-toggle:active { background: var(--surface-hover); }
.drawer-cat-toggle svg:first-child { flex-shrink: 0; opacity: 0.45; width: 16px; height: 16px; }
.drawer-cat-count {
    font-size: 11px; color: var(--ink-muted); font-weight: 400;
    background: var(--surface-raised); padding: 1px 7px;
    border-radius: 999px; margin-left: auto;
}
.drawer-cat.open .drawer-cat-count { background: var(--accent-glow); color: var(--accent); }
.drawer-cat-chevron {
    width: 14px; height: 14px; flex-shrink: 0; opacity: 0.3;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer-cat.open .drawer-cat-chevron { transform: rotate(180deg); opacity: 0.5; }
.drawer-cat-items {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer-cat.open .drawer-cat-items { max-height: 800px; }
.drawer-cat-viewall {
    display: block; padding: 8px 12px 8px 40px;
    font-size: 12px; font-weight: 600; color: var(--accent);
    text-decoration: none; letter-spacing: 0.01em;
}
.drawer-cat-viewall:hover { text-decoration: none; opacity: 0.8; }
.drawer-product-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 12px 10px 40px; border-radius: 8px;
    text-decoration: none; transition: background 0.12s;
    min-height: 42px;
    -webkit-tap-highlight-color: transparent;
}
.drawer-product-link:hover { background: var(--surface-raised); text-decoration: none; }
.drawer-product-link:active { background: var(--surface-hover); }
.drawer-product-name {
    font-size: 13px; font-weight: 500; color: var(--ink-soft);
    line-height: 1.3;
}
.drawer-product-link:hover .drawer-product-name { color: var(--ink); }
.drawer-product-price {
    font-size: 12px; font-weight: 600; color: var(--ink-muted);
    font-family: 'Outfit', sans-serif; white-space: nowrap;
    padding-left: 12px;
}
.drawer-product-badge {
    display: inline-block; font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.03em;
    padding: 1px 6px; border-radius: 4px; margin-left: 6px;
    background: #fff0f0; color: var(--accent); vertical-align: middle;
}

/* ── Drawer: search autocomplete ── */
.drawer-search-results {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
}
.drawer-search-results.active { max-height: 400px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.drawer-search-result {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 10px 20px; text-decoration: none; transition: background 0.12s;
    min-height: 44px; -webkit-tap-highlight-color: transparent;
}
.drawer-search-result:hover, .drawer-search-result:active { background: var(--surface-raised); text-decoration: none; }
.drawer-search-result-info { flex: 1; min-width: 0; }
.drawer-search-result-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.drawer-search-result-cat { font-size: 11px; color: var(--ink-muted); margin-top: 1px; }
.drawer-search-result-price { font-size: 13px; font-weight: 600; color: var(--ink-soft); font-family: 'Outfit', sans-serif; white-space: nowrap; }
.drawer-search-empty { padding: 20px; font-size: 13px; color: var(--ink-muted); text-align: center; }
.drawer-search-divider { height: 1px; background: var(--border); margin: 0; }

.drawer-help {
    border: 1px solid var(--border); border-radius: 10px;
    padding: 13px 14px; margin-bottom: 6px; background: var(--surface-raised);
}
.drawer-help-t { margin: 0 0 4px; font-size: 13px; font-weight: 600; color: var(--ink); }
.drawer-help-d { margin: 0 0 8px; font-size: 12.5px; line-height: 1.55; color: var(--ink-soft); }
.drawer-help-a { font-size: 12.5px; font-weight: 600; color: var(--accent); text-decoration: none; }

/* ── Drawer: promo card ── */
.drawer-promo {
    margin: 8px 12px; padding: 14px 16px;
    background: linear-gradient(135deg, rgba(214,48,49,0.05), rgba(214,48,49,0.02));
    border: 1px solid rgba(214,48,49,0.12); border-radius: 12px;
    text-decoration: none; display: block; transition: border-color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.drawer-promo:hover { border-color: rgba(214,48,49,0.25); text-decoration: none; }
.drawer-promo-title { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; color: var(--accent); margin: 0 0 3px; }
.drawer-promo-text { font-size: 12px; color: var(--ink-soft); line-height: 1.5; margin: 0; }
.drawer-promo-code {
    display: inline-block; font-family: 'JetBrains Mono', monospace;
    font-size: 12px; font-weight: 700; color: var(--accent);
    background: rgba(214,48,49,0.08); padding: 2px 8px;
    border-radius: 4px; letter-spacing: 0.04em;
}

.drawer-account {
    padding: 12px 20px; border-top: 1px solid var(--border);
    margin-top: auto;
}
.drawer-account-info { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.drawer-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent-glow); display: flex;
    align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif; font-size: 16px;
    font-weight: 700; color: var(--accent); flex-shrink: 0;
}
.drawer-account-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.drawer-account-email { font-size: 12px; color: var(--ink-muted); margin-top: 1px; }

.drawer-account-links { display: flex; flex-direction: column; gap: 2px; }
.drawer-account-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 8px; border-radius: 8px;
    font-size: 13px; font-weight: 500; color: var(--ink-soft);
    text-decoration: none; transition: all 0.15s ease;
}
.drawer-account-link:hover { background: var(--surface-raised); color: var(--ink); text-decoration: none; }
/* This one is a <button type="submit">, so it needs the UA button
   styling reset or iOS Safari renders it with a blue fill. */
button.drawer-account-link {
    -webkit-appearance: none; appearance: none;
    background: transparent; border: 0; width: 100%;
    font: inherit; text-align: left; cursor: pointer;
}
.drawer-account-link.logout { color: var(--accent); }
.drawer-account-link.logout:hover,
button.drawer-account-link.logout:hover { background: rgba(214,48,49,0.06); }
