/* Book My Dine — Culinary Horizon design system (from stitch_bookmydinelandingpage) */

:root {
    --bmd-primary: #8b5000;
    --bmd-primary-container: #f4a24c;
    --bmd-primary-fixed: #ffdcbf;
    --bmd-primary-fixed-dim: #ffb872;
    --bmd-background: #f9f9ff;
    --bmd-on-background: #111c2d;
    --bmd-outline: #857465;
    --bmd-outline-variant: #d8c3b2;
    --bmd-surface: #f9f9ff;
    --bmd-surface-container-low: #f0f3ff;
    --bmd-surface-container-highest: #d9e3fb;
    --bmd-on-surface-variant: #534437;
    --bmd-inverse-surface: #273143;
    --bmd-error: #ba1a1a;
    --bmd-container-max: 1280px;
    --bmd-gutter: 24px;
    --bmd-section-py: 4rem;
    --bmd-card-shadow: 0 12px 16px -4px rgba(244, 162, 76, 0.08);
    --bmd-card-shadow-hover: 0 16px 34px rgba(17, 24, 39, 0.1);
}

.client-layout,
.zomo-shell {
    font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
}

.zomo-shell {
    background: var(--bmd-background);
    color: var(--bmd-on-background);
}

.zomo-container {
    max-width: var(--bmd-container-max);
    padding-left: var(--bmd-gutter);
    padding-right: var(--bmd-gutter);
}

@media (max-width: 639px) {
    .zomo-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ---- Hero ---- */
.home-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 420px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .home-hero {
        min-height: 490px;
    }
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 100%);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5rem 0;
}

.home-hero__title {
    margin: 0 0 1.5rem;
    max-width: 48rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
}

.home-hero__title-accent {
    color: var(--bmd-primary-fixed-dim);
}

@media (min-width: 1024px) {
    .home-hero__title {
        font-size: 3rem;
        line-height: 1.1;
    }
}

.home-hero__search {
    display: flex;
    max-width: 36rem;
    align-items: center;
    gap: 0;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #fff;
    padding: 0.375rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.home-hero__search-icon {
    display: inline-flex;
    padding-left: 0.75rem;
    color: var(--bmd-outline);
    font-size: 1.125rem;
}

.home-hero__search-input {
    min-width: 0;
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0.625rem 0.75rem;
    font-size: 1rem;
    color: var(--bmd-on-background);
    outline: none;
}

.home-hero__search-input::placeholder {
    color: var(--bmd-outline-variant);
}

.home-hero__search-btn {
    flex-shrink: 0;
    border: 0;
    border-radius: 0.75rem;
    background: var(--bmd-primary);
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.home-hero__search-btn:hover:not(:disabled) {
    background: color-mix(in srgb, var(--bmd-primary) 90%, black);
}

.home-hero__search-btn:active:not(:disabled) {
    transform: scale(0.97);
}

.home-hero__search-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.home-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.home-hero-tag {
    cursor: pointer;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    transition: background-color 0.2s ease;
}

.home-hero-tag:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 639px) {
    .home-hero__content {
        padding: 3.5rem 0;
    }

    .home-hero__search {
        flex-direction: column;
        align-items: stretch;
        border-radius: 0.75rem;
        padding: 0.75rem;
    }

    .home-hero__search-icon {
        display: none;
    }

    .home-hero__search-btn {
        width: 100%;
    }
}

/* ---- Section headers ---- */
.home-section {
    padding-top: var(--bmd-section-py);
    padding-bottom: var(--bmd-section-py);
}

.home-section--white {
    background: #fff;
}

.home-section--bg {
    background: var(--bmd-background);
}

.home-section--tint {
    background: var(--bmd-surface-container-low);
}

.home-section-header {
    margin-bottom: 2.5rem;
}

.home-section-header__row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .home-section-header__row {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.home-section-header__title-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-section-header__icon {
    color: var(--bmd-primary);
    font-size: 1.25rem;
}

.home-section-header h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--bmd-on-background);
}

.home-section-header p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--bmd-outline);
}

.home-section-header--center {
    text-align: center;
}

.home-section-header--center .home-section-header__title-wrap {
    justify-content: center;
}

.home-section-header__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bmd-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.home-section-header__view-all:hover {
    text-decoration: underline;
}

.home-section-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ---- Cards ---- */
.home-card {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid color-mix(in srgb, var(--bmd-outline-variant) 30%, transparent);
    background: #fff;
    box-shadow: 0 1px 3px rgba(17, 24, 39, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.home-card:hover {
    box-shadow: var(--bmd-card-shadow-hover);
}

.home-card--xl {
    border-radius: 1.5rem;
}

.home-card--featured:hover {
    border-color: color-mix(in srgb, var(--bmd-primary) 20%, transparent);
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.12);
}

.home-card__cta {
    width: 100%;
    border: 0;
    border-radius: 0.75rem;
    background: var(--bmd-primary);
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.home-card__cta:hover {
    background: color-mix(in srgb, var(--bmd-primary) 90%, black);
}

.home-card__cta--ghost {
    background: color-mix(in srgb, var(--bmd-primary-container) 10%, transparent);
    color: var(--bmd-primary);
}

.home-card__cta--ghost:hover {
    background: var(--bmd-primary-container);
    color: #fff;
}

.home-slot-chip {
    border-radius: 0.5rem;
    border: 1px solid color-mix(in srgb, var(--bmd-primary-container) 20%, transparent);
    background: color-mix(in srgb, var(--bmd-primary-container) 10%, transparent);
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bmd-primary);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-slot-chip:hover {
    background: var(--bmd-primary-container);
    color: #fff;
}

.home-badge-available {
    border-radius: 0.375rem;
    background: #138808;
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: #fff;
}

.home-fav-btn {
    display: inline-flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    color: var(--bmd-on-surface-variant);
    cursor: pointer;
    transition: color 0.2s ease;
}

.home-fav-btn:hover {
    color: var(--bmd-error);
}

.home-rating-star {
    color: #138808;
}

/* ---- Moments ---- */
.home-moments-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .home-moments-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
}

.home-moment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: center;
}

.home-moment-card__icon {
    display: flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: var(--bmd-surface-container-low);
    box-shadow: 0 1px 3px rgba(17, 24, 39, 0.06);
    font-size: 1.5rem;
    color: var(--bmd-primary);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-moment-card:first-child .home-moment-card__icon,
.home-moment-card:hover .home-moment-card__icon {
    background: var(--bmd-primary-fixed);
}

.home-moment-card:hover .home-moment-card__icon {
    background: var(--bmd-primary-container);
    color: #fff;
}

.home-moment-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--bmd-on-background);
}

/* ---- Formula chips (Featured) ---- */
.home-formula-tabs {
    display: inline-flex;
    margin-top: 1.5rem;
    border-radius: 0.75rem;
    background: color-mix(in srgb, var(--bmd-surface-container-highest) 10%, transparent);
    padding: 0.25rem;
}

.home-formula-chip {
    border: 0;
    border-radius: 0.5rem;
    background: transparent;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bmd-outline);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home-formula-chip--active {
    background: #fff;
    color: var(--bmd-primary);
    box-shadow: 0 1px 3px rgba(17, 24, 39, 0.08);
}

/* ---- Carousel ---- */
.home-carousel {
    position: relative;
}

.home-carousel__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.home-carousel__track::-webkit-scrollbar {
    display: none;
}

.home-carousel__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    translate: 0 -50%;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid var(--bmd-outline-variant);
    background: #fff;
    color: var(--bmd-primary);
    box-shadow: 0 4px 14px rgba(17, 24, 39, 0.08);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.home-carousel__nav:hover {
    background: color-mix(in srgb, var(--bmd-primary-container) 10%, transparent);
}

.home-carousel__nav--prev {
    left: -1.25rem;
}

.home-carousel__nav--next {
    right: -1.25rem;
}

.home-carousel-card {
    flex-shrink: 0;
    scroll-snap-align: start;
}

.home-carousel-card--tonight {
    width: 100%;
}

.home-carousel-card--deal {
    width: min(100%, 21.875rem);
}

.home-carousel-card--featured {
    width: min(100%, 21.875rem);
}

.home-carousel-card--popular {
    width: min(100%, 18.75rem);
}

.home-tonight-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .home-tonight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .home-tonight-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ---- Brands ---- */
.home-brand-item {
    display: flex;
    flex: none;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.home-brand-item__logo {
    display: flex;
    height: 6rem;
    width: 6rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    border: 1px solid var(--bmd-outline-variant);
    background: var(--bmd-surface);
    padding: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-brand-item:hover .home-brand-item__logo {
    border-color: var(--bmd-primary-container);
    box-shadow: var(--bmd-card-shadow);
}

.home-brand-item__logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.2s ease;
}

.home-brand-item:hover .home-brand-item__logo img {
    filter: none;
}

.home-brand-item__logo i {
    font-size: 3rem;
    color: var(--bmd-primary);
}

.home-brand-item__name {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--bmd-on-background);
}

@media (max-width: 639px) {
    .home-brand-item__logo {
        height: 5rem;
        width: 5rem;
        padding: 0.75rem;
    }

    .home-brand-item__logo i {
        font-size: 2.25rem;
    }

    .home-carousel__nav {
        display: none;
    }
}

/* ---- App promo ---- */
.home-app-promo {
    padding: 3rem 0;
}

.home-app-promo__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    overflow: hidden;
    border-radius: 2.5rem;
    background: var(--bmd-primary-container);
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(244, 162, 76, 0.35);
}

@media (min-width: 1024px) {
    .home-app-promo__panel {
        flex-direction: row;
        padding: 4rem;
    }
}

.home-app-promo__content {
    flex: 1;
    color: #fff;
}

.home-app-promo__content h2 {
    margin: 0 0 1.5rem;
    font-size: clamp(1.75rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
}

.home-app-promo__content p {
    margin: 0 0 2.5rem;
    max-width: 32rem;
    font-size: 1.125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.home-app-promo__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.home-app-promo__stores img {
    height: 3.5rem;
    width: auto;
    transition: transform 0.2s ease;
}

.home-app-promo__stores a:hover img {
    transform: scale(1.05);
}

.home-app-promo__visual {
    position: relative;
    display: flex;
    height: 20rem;
    flex: 1;
    align-items: flex-end;
    justify-content: center;
}

.home-app-promo__visual img {
    position: absolute;
    bottom: -4rem;
    max-height: 31.25rem;
    width: auto;
    filter: drop-shadow(-20px 20px 40px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1023px) {
    .home-app-promo__visual {
        height: 16rem;
    }

    .home-app-promo__visual img {
        bottom: -2rem;
        max-height: 18rem;
    }
}

/* ---- Site header ---- */
:root {
    --site-header-height: 4rem;
}

@media (min-width: 640px) {
    :root {
        --site-header-height: 5rem;
    }
}

header.site-header,
.site-header {
    position: sticky !important;
    top: 0 !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    z-index: 50 !important;
    border-bottom: 1px solid var(--bmd-outline-variant) !important;
    background: color-mix(in srgb, var(--bmd-surface) 95%, transparent) !important;
}

.site-header__logo {
    height: 2.25rem;
    width: auto;
}

@media (min-width: 640px) {
    .site-header__logo {
        height: 2.5rem;
    }
}

@media (min-width: 768px) {
    .site-header__logo {
        height: 2.75rem;
    }
}

.site-header__location-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid var(--bmd-outline-variant);
    background: var(--bmd-surface-container-low);
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bmd-on-background);
}

.site-header__location-pill i {
    color: var(--bmd-primary);
}

.site-header__location-trigger--mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid var(--bmd-outline-variant);
    background: var(--bmd-surface);
    color: var(--bmd-primary);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.site-header__location-trigger--desktop {
    display: none;
    align-items: center;
    min-width: 230px;
    height: 3rem;
    border-radius: 9999px;
    border: 1px solid var(--bmd-outline-variant);
    background: var(--bmd-surface);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease;
}

.site-header__location-trigger--desktop:hover {
    border-color: color-mix(in srgb, var(--bmd-primary) 45%, var(--bmd-outline-variant));
}

@media (min-width: 640px) {
    .site-header__location-trigger--mobile {
        display: none !important;
    }

    .site-header__location-trigger--desktop {
        display: flex;
    }
}

.site-header__location-dropdown {
    position: fixed;
    z-index: 81;
    top: 4rem;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    box-sizing: border-box;
    overflow-x: hidden;
    border-radius: 1rem;
    border: 1px solid var(--bmd-outline-variant);
    background: var(--bmd-surface);
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

@media (min-width: 640px) {
    .site-header__location-dropdown {
        position: absolute;
        top: 4rem;
        left: 0;
        right: auto;
        width: 28.75rem;
        max-width: min(28.75rem, 92vw);
    }
}

/* ---- Mobile navigation drawer ---- */
.site-header__menu-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid var(--bmd-outline-variant);
    background: var(--bmd-surface);
    color: var(--bmd-primary);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-header__menu-trigger:hover {
    border-color: color-mix(in srgb, var(--bmd-primary) 45%, var(--bmd-outline-variant));
    background: var(--bmd-surface-container-low);
}

@media (min-width: 768px) {
    .site-header__menu-trigger {
        display: none !important;
    }
}

.site-header__mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(17, 28, 45, 0.48);
    backdrop-filter: blur(2px);
}

.site-header__mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 70;
    display: flex;
    flex-direction: column;
    width: min(100%, 20.5rem);
    max-width: 88vw;
    height: 100%;
    background: var(--bmd-surface);
    border-left: 1px solid var(--bmd-outline-variant);
    box-shadow: -16px 0 48px rgba(17, 28, 45, 0.14);
    animation: site-header-mobile-drawer-in 0.24s ease-out;
}

@keyframes site-header-mobile-drawer-in {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.site-header__mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1rem 0.875rem;
    border-bottom: 1px solid color-mix(in srgb, var(--bmd-outline-variant) 70%, transparent);
}

.site-header__mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 1px solid var(--bmd-outline-variant);
    background: var(--bmd-surface-container-low);
    color: var(--bmd-on-surface-variant);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-header__mobile-close:hover {
    border-color: color-mix(in srgb, var(--bmd-primary) 35%, var(--bmd-outline-variant));
    background: color-mix(in srgb, var(--bmd-primary-fixed) 45%, var(--bmd-surface));
    color: var(--bmd-primary);
}

.site-header__mobile-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.875rem 1rem 0;
    padding: 0.75rem 0.875rem;
    border-radius: 1rem;
    border: 1px solid var(--bmd-outline-variant);
    background: var(--bmd-surface-container-low);
    color: var(--bmd-on-background);
    text-align: left;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.site-header__mobile-location:hover {
    border-color: color-mix(in srgb, var(--bmd-primary) 40%, var(--bmd-outline-variant));
    background: color-mix(in srgb, var(--bmd-primary-fixed) 35%, var(--bmd-surface-container-low));
}

.site-header__mobile-location > i.ri-map-pin-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: var(--bmd-surface);
    color: var(--bmd-primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.site-header__mobile-location-kicker {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bmd-outline);
    line-height: 1.2;
}

.site-header__mobile-location-label,
.site-header__mobile-location-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bmd-on-background);
    line-height: 1.3;
}

.site-header__mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 0.875rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.site-header__mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    border-radius: 0.875rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bmd-on-surface-variant);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-header__mobile-nav-link:hover {
    background: color-mix(in srgb, var(--bmd-primary-fixed) 35%, var(--bmd-surface));
    color: var(--bmd-primary);
}

.site-header__mobile-nav-link--active {
    background: color-mix(in srgb, var(--bmd-primary-fixed) 55%, var(--bmd-surface));
    color: var(--bmd-primary);
}

.site-header__mobile-nav-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: var(--bmd-surface-container-low);
    color: var(--bmd-primary);
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header__mobile-nav-link--active i,
.site-header__mobile-nav-link:hover i {
    background: var(--bmd-primary-container);
    color: #fff;
}

.site-header__mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1rem;
    border-top: 1px solid color-mix(in srgb, var(--bmd-outline-variant) 70%, transparent);
    background: color-mix(in srgb, var(--bmd-surface-container-low) 80%, var(--bmd-surface));
}

.site-header__mobile-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    border-radius: 1rem;
    border: 1px solid var(--bmd-outline-variant);
    background: var(--bmd-surface);
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.site-header__mobile-user:hover {
    border-color: color-mix(in srgb, var(--bmd-primary) 40%, var(--bmd-outline-variant));
    background: color-mix(in srgb, var(--bmd-primary-fixed) 30%, var(--bmd-surface));
}

.site-header__mobile-user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid var(--bmd-primary-container);
    object-fit: cover;
    flex-shrink: 0;
}

.site-header__mobile-user-avatar--initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--bmd-primary-fixed) 65%, var(--bmd-surface));
    color: var(--bmd-primary);
    font-size: 0.875rem;
    font-weight: 700;
}

.site-header__mobile-user-kicker {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--bmd-outline);
    line-height: 1.2;
}

.site-header__mobile-user-name {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--bmd-on-background);
    line-height: 1.3;
}

.site-header__mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.75rem;
    padding: 0.625rem 1rem;
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.site-header__mobile-btn--primary {
    background: var(--bmd-primary-container);
    color: #fff;
    box-shadow: 0 8px 20px rgba(244, 162, 76, 0.28);
}

.site-header__mobile-btn--primary:hover {
    background: color-mix(in srgb, var(--bmd-primary-container) 88%, #000);
}

.site-header__mobile-btn--ghost {
    background: var(--bmd-surface);
    border-color: var(--bmd-outline-variant);
    color: var(--bmd-on-background);
}

.site-header__mobile-btn--ghost:hover {
    border-color: color-mix(in srgb, var(--bmd-primary) 40%, var(--bmd-outline-variant));
    color: var(--bmd-primary);
    background: color-mix(in srgb, var(--bmd-primary-fixed) 25%, var(--bmd-surface));
}

.site-header__mobile-drawer a.site-header__mobile-nav-link {
    color: var(--bmd-on-surface-variant) !important;
    text-decoration: none !important;
}

.site-header__mobile-drawer a.site-header__mobile-nav-link--active,
.site-header__mobile-drawer a.site-header__mobile-nav-link:hover {
    color: var(--bmd-primary) !important;
}

.site-header__mobile-drawer a.site-header__mobile-user {
    color: inherit !important;
    text-decoration: none !important;
}

.site-header__mobile-drawer a.site-header__mobile-btn--ghost {
    color: var(--bmd-on-background) !important;
    text-decoration: none !important;
}

.site-header__mobile-drawer a.site-header__mobile-btn--primary {
    color: #fff !important;
    text-decoration: none !important;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--bmd-inverse-surface) !important;
    color: rgba(255, 255, 255, 0.92);
}

.site-footer__heading {
    color: #fff !important;
}

.site-footer__text,
.site-footer__bottom {
    color: rgba(255, 255, 255, 0.7) !important;
}

.site-footer a.site-footer__link {
    color: rgba(255, 255, 255, 0.72) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a.site-footer__link:hover,
.site-footer a.site-footer__link:focus-visible {
    color: var(--bmd-primary-container) !important;
}
