@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Cormorant:wght@300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');
:root {
    --color-primary: #111111;
    --color-primary-hover: #262626;
    --color-secondary: #fac064;
    --color-cta: #e7b458;
    --color-background: #ffffff;
    --color-surface: #ffffff;
    --color-text: #111111;
    --color-muted: #666666;
    --color-border: rgba(17, 17, 17, 0.08);
    --color-soft: #f6f2ea;
    --color-dark: #050505;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--color-text);
    background: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.customer-shell {
    background:
        radial-gradient(circle at top left, rgba(250, 192, 100, 0.18), transparent 32%),
        linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant', serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

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

.customer-shell main {
    min-height: calc(var(--app-vh, 1vh) * 100);
}

.customer-topbar {
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: saturate(120%) blur(12px);
    -webkit-backdrop-filter: saturate(120%) blur(12px);
}

.customer-header-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1.25rem;
    min-height: 76px;
}

.customer-main-nav {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    min-width: 0;
    white-space: nowrap;
}

.customer-nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    transition: color 180ms ease;
}

.customer-nav-link:hover,
.customer-nav-link.is-active {
    color: var(--color-secondary);
}

.customer-nav-link.is-active::after,
.customer-nav-link:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary) 30%, var(--color-secondary) 70%, transparent);
}

.customer-brand {
    display: inline-flex;
    align-items: center;
    justify-self: center;
    gap: 0.9rem;
    text-align: center;
    min-height: 60px;
    position: relative;
    left: 0;
}

.customer-brand-logo {
    width: auto;
    height: 50px;
    object-fit: contain;
}

.customer-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.customer-brand-title {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.customer-brand-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.customer-header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.9rem;
}

.customer-flag-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.customer-flag-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; 
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    border: 0;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.customer-flag-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.customer-flag-button:hover {
    transform: translateY(-1px);
    /*box-shadow: 0 0 0 2px rgba(250, 192, 100, 0.16);*/
}

.customer-flag-button.is-active {
    width: 24px;
    transform: translateY(-1px);
}


.customer-flag-button.is-active img{
    border: 2px solid rgba(250, 192, 100, 0.98);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.customer-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 0;
    border: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.45rem 0.9rem;
    position: relative;
    transition: background-color 180ms ease, color 180ms ease;
}

.customer-header-cta::after{
    content: '';
    position: absolute;
    inset: 0;
    border-top: 1.5px solid #FAC064;
    border-bottom: 1.5px solid #FAC064;
    mask: linear-gradient(90deg, transparent, white 40%, white 60%, transparent);
    transition: all 375ms;
}

.customer-header-cta:hover {
    background: var(--color-secondary);
    color: #111111;
}

.customer-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    color: #ffffff;
    transition: background-color 180ms ease, color 180ms ease;
}

.customer-cart-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-secondary);
}

.customer-cart-link .cart-count-badge {
    background: var(--color-secondary);
    color: #111111;
    min-width: 1.2rem;
    min-height: 1.2rem;
    padding: 0 0.2rem;
    border: 2px solid rgba(0, 0, 0, 0.96);
}

.customer-mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7rem;
}

.customer-mobile-language {
    position: relative;
}

.customer-mobile-language-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-width: 46px;
    height: 42px;
    border-radius: 999px;
    padding: 0 0.55rem;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.customer-mobile-language-flag {
    width: 18px;
    height: 18px;
    object-fit: cover;
    border-radius: 999px;
}

.customer-mobile-language-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.55rem);
    min-width: 156px;
    border-radius: 1rem;
    background: rgba(12, 12, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
    padding: 0.4rem;
}

.customer-mobile-language-option {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 0.55rem;
    border-radius: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.6rem 0.7rem;
    text-align: left;
}

.customer-mobile-language-option img {
    width: 18px;
    height: 18px;
    object-fit: cover;
    border-radius: 999px;
}

.customer-mobile-language-option:hover,
.customer-mobile-language-option.is-active {
    background: rgba(240, 187, 83, 0.16);
    color: #ffffff;
}

.customer-mobile-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: #ffffff;
    transition: background-color 180ms ease;
}

.customer-mobile-button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.customer-mobile-panel {
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.customer-mobile-panel a {
    display: flex;
    align-items: center;
    min-height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    font-weight: 400;
    padding: 0.8rem 0;
}

.customer-mobile-panel a:last-child {
    border-bottom: 0;
}

.customer-page-shell {
    padding-top: 76px;
}

.customer-script-eyebrow {
    display: inline-block;
    font-family: 'Dancing Script', cursive;
    color: var(--color-secondary);
    font-size: 1.45rem;
    line-height: 1;
}

.customer-title-frame {
    position: relative;
    display: inline-block;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.6rem 1.4rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.customer-title-frame::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.customer-section {
    padding: 4rem 0;
}

.customer-section-dark {
    background: linear-gradient(180deg, #0b0b0b 0%, #151515 100%);
    color: #ffffff;
}

.customer-section-soft {
    background: linear-gradient(180deg, #fff9ef 0%, #ffffff 100%);
}

.customer-section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.4rem;
    text-align: center;
}

.customer-section-title {
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
}

.customer-section-title::after {
    content: '';
    position: absolute;
    inset: auto -7% -0.2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, currentColor 30%, currentColor 70%, transparent);
}

.customer-home-hero {
    position: relative;
    min-height: calc(30vw + 1rem);
    display: flex;
    align-items: center;
    background: #000000;
    overflow: hidden;
}

.customer-home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.customer-home-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.customer-home-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.customer-home-hero-panel {
    max-width: 40rem;
}

.customer-home-hero-title {
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.95;
    margin-top: 1rem;
    font-family: "Cormorant", serif;
}

.customer-home-hero-copy {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 1.25rem;
}

.customer-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.customer-button-primary,
.customer-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.85rem 1.35rem;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.customer-button-primary {
    background: var(--color-secondary);
    color: #111111;
}

.customer-button-primary:hover {
    background: #f5cb81;
    transform: translateY(-1px);
}

.customer-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.customer-button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

.customer-info-card,
.customer-sheet,
.customer-section-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--color-border);
    box-shadow: 0 16px 38px rgba(17, 17, 17, 0.08);
}

.customer-info-card {
    border-radius: 1.8rem;
    overflow: hidden;
}

.customer-menu-shell {
    padding-top: 1.4rem;
    padding-bottom: 1.5rem;
}

.customer-menu-header-card {
    border-radius: 1.75rem;
    padding: 1.1rem 1.2rem;
}

.customer-menu-search {
    position: relative;
    display: flex;
    align-items: center;
}

.customer-menu-search input {
    width: 100%;
    min-height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #ffffff;
    color: var(--color-text);
    font-size: 0.94rem;
    padding: 0 3rem 0 1rem;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.customer-menu-search input:focus {
    outline: none;
    border-color: rgba(231, 180, 88, 0.9);
    box-shadow: 0 0 0 4px rgba(231, 180, 88, 0.16);
}

.customer-menu-search button {
    position: absolute;
    right: 0.45rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: var(--color-text);
    background: transparent;
}

.customer-menu-search button:hover {
    background: rgba(17, 17, 17, 0.05);
}

.customer-menu-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.customer-category-strip {
    position: sticky;
    top: 76px;
    z-index: 20;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.98) 0%, rgba(11, 11, 11, 0.92) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
}

.customer-category-scroll {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.customer-category-scroll::-webkit-scrollbar {
    display: none;
}

.customer-category-pill,
.customer-category-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 40px;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #ffffff;
    color: var(--color-text);
    padding: 0.55rem 0.9rem;
    font-size: 0.92rem;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.customer-category-pill:hover,
.customer-category-chip:hover,
.customer-category-pill.is-active,
.customer-category-chip.is-active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #111111;
    transform: translateY(-1px);
}

.customer-menu-grid {
    display: grid;
    gap: 2.1rem 1.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-menu-pagination-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.customer-menu-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem;
}

.customer-menu-pagination.hidden {
    display: none;
}

.customer-menu-page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 5px 15px;
    border: 1px solid rgba(17, 17, 17, 0.85);
    background: #ffffff;
    color: #111111;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.customer-menu-page-button:hover,
.customer-menu-page-button.is-active {
    background: #111111;
    color: #ffffff;
    transform: translateY(-1px);
}

.menu-item-card.customer-menu-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    display: grid;
    grid-template-columns: minmax(0, 176px) minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
}

.customer-menu-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.customer-menu-card-image {
    position: relative;
    width: 100%;
    padding: 0 0.45rem;
    text-align: center;
}

.customer-menu-card-image img,
.customer-menu-card-image .menu-img-wrap img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 64% 36% 32% 68% / 47% 44% 56% 53%;
    transition: transform 220ms ease;
}

.menu-item-card.customer-menu-card:hover .customer-menu-card-image img {
    transform: scale(1.03);
}

.customer-menu-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.customer-menu-quick-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border-radius: 0.9rem 0 0 0.9rem;
    background: #ff1d10;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.45rem 0.8rem;
    line-height: 1;
    box-sizing: border-box;
    transition: transform 180ms ease, filter 180ms ease;
}

.customer-menu-detail-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 32px;
    border-radius: 0 0.9rem 0.9rem 0;
    color: #111111;
    background: #fff7ea;
    font-size: 1rem;
    box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08) inset;
    line-height: 1;
    box-sizing: border-box;
    transition: transform 180ms ease, background-color 180ms ease;
}

.customer-menu-quick-add:hover,
.customer-menu-detail-trigger:hover {
    transform: translateY(-1px);
}

.customer-menu-quick-add:hover {
    filter: brightness(1.04);
}

.customer-menu-detail-trigger:hover {
    background: rgba(250, 192, 100, 0.18);
}

.customer-menu-card-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-right: 0.25rem;
    padding-top: 0.2rem;
}

.customer-menu-title-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.customer-menu-title-row .menu-title {
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 500;
    margin: 0;
}

.customer-menu-divider {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.2), rgba(17, 17, 17, 0.08));
}

.customer-menu-card-price {
    white-space: nowrap;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.customer-menu-card .menu-description {
    margin-top: 0.65rem;
    margin-bottom: 0.9rem;
}

.customer-menu-card .menu-description p {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.customer-menu-card .menu-badge-card,
.customer-menu-card .menu-hover-overlay {
    display: none !important;
}

.customer-menu-card .menu-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}

.customer-menu-card .menu-badge-list .menu-badge {
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
}

.customer-menu-card-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-top: auto;
}

.customer-menu-weight {
    color: var(--color-secondary);
    font-size: 0.78rem;
    font-weight: 500;
}

.customer-menu-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 38px;
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(226, 210, 179, 0.95);
    background: #fcf4e4;
    color: #111111;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background-color 180ms ease, transform 180ms ease;
}

.customer-menu-open:hover {
    background: var(--color-secondary);
    transform: translateY(-1px);
}

.customer-menu-empty {
    border-radius: 1.75rem;
    background: #ffffff;
    border: 1px solid var(--color-border);
    padding: 4rem 1.5rem;
}

.customer-menu-bottom-bar {
    position: fixed;
    left: 1.25rem;
    right: 1.25rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 1.25rem;
    background: rgba(32, 31, 29, 0.98);
    border: 1px solid rgba(246, 190, 89, 0.22);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
    padding: 0.9rem 1.1rem;
}

.customer-menu-bottom-summary {
    min-width: 0;
    color: rgba(255, 255, 255, 0.92);
}

.customer-menu-bottom-summary p:first-child {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
}

.customer-menu-bottom-summary p:last-child {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.15rem;
}

.customer-menu-bottom-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    background: #f0bb53;
    color: #111111;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.75rem 1.6rem;
    text-align: center;
    white-space: nowrap;
    transition: transform 180ms ease, filter 180ms ease;
}

.customer-menu-bottom-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.customer-account-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 38px;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    color: #ffffff;
    transition: background-color 180ms ease;
}

.customer-account-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.customer-account-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(250, 192, 100, 0.16);
    color: var(--color-secondary);
    font-size: 0.95rem;
    font-weight: 600;
}

.customer-account-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.86rem;
    font-weight: 500;
}

.customer-account-chevron {
    color: rgba(255, 255, 255, 0.6);
}

.customer-account-menu {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1.15rem;
    box-shadow: 0 18px 45px rgba(17, 17, 17, 0.18);
    overflow: hidden;
}

.customer-account-menu a,
.customer-account-menu button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    font-size: 0.92rem;
    color: #111111;
    padding: 0.8rem 1rem;
    transition: background-color 180ms ease, color 180ms ease;
}

.customer-account-menu a:hover,
.customer-account-menu button:hover {
    background: rgba(250, 192, 100, 0.14);
    color: #111111;
}

.customer-auth-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.customer-auth-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.customer-auth-link.primary {
    background: var(--color-secondary);
    color: #111111;
}

.customer-auth-link.secondary {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.customer-auth-link.secondary:hover {
    border-color: rgba(250, 192, 100, 0.8);
    color: var(--color-secondary);
}

.customer-auth-link.primary:hover {
    background: #f5cb81;
}

.customer-footer {
    background: #050505;
    color: rgba(255, 255, 255, 0.78);
}

.customer-footer-main {
    padding: 4.25rem 0 2rem;
}

.customer-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
    gap: 2.75rem;
    align-items: start;
}

.customer-footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.customer-footer-logo {
    width: min(100%, 21rem);
    height: auto;
    object-fit: contain;
}

.customer-footer-column h3 {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    line-height: 1;
    color: #c09342;
    margin: 0 0 1.2rem;
}

.customer-footer-addresses,
.customer-footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.customer-footer-addresses p,
.customer-footer-info-list p {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
}

.customer-footer-addresses i,
.customer-footer-info-list i {
    flex-shrink: 0;
    color: #ffffff;
    margin-top: 0.18rem;
}

.customer-footer-socials {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.customer-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.customer-footer-socials a:hover,
.customer-footer a:hover {
    color: var(--color-secondary);
    border-color: rgba(250, 192, 100, 0.9);
    transform: translateY(-1px);
}

.customer-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.58);
}

.mobile-sticky-sheet {
    position: sticky;
    bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + 0.75rem);
    z-index: 20;
}

.mobile-safe-modal {
    padding-bottom: calc(var(--safe-bottom) + 0.5rem);
}

.interactive {
    cursor: pointer;
    transition: all 200ms ease-in-out;
}

.customer-form-control {
    min-height: 48px;
}

html[data-menu-language="ru"] .lang-en,
html[data-menu-language="ru"] .lang-vi,
html[data-menu-language="ru"] .lang-both-inline,
html[data-menu-language="en"] .lang-ru,
html[data-menu-language="en"] .lang-vi,
html[data-menu-language="en"] .lang-both-inline,
html[data-menu-language="zh-cn"] .lang-ru,
html[data-menu-language="zh-cn"] .lang-vi,
html[data-menu-language="zh-cn"] .lang-both-inline,
html[data-menu-language="vi"] .lang-ru,
html[data-menu-language="vi"] .lang-en,
html[data-menu-language="vi"] .lang-both-inline {
    display: none !important;
}

@media (max-width: 1199px) {
    .customer-footer-grid {
        grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }

    .customer-footer-column h3 {
        font-size: 1.7rem;
    }

    .customer-footer-addresses p,
    .customer-footer-info-list p {
        font-size: 0.92rem;
    }

    .customer-main-nav {
        gap: 1.25rem;
    }

    .customer-nav-link {
        font-size: 1rem;
    }

    .customer-brand-logo {
        height: 50px;
    }

    .customer-brand-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 1023px) {
    .customer-page-shell {
        padding-top: 83px;
    }

    .customer-category-strip {
        top: 83px;
    }

    .customer-menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item-card.customer-menu-card {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 1rem;
    }

    .customer-menu-bottom-bar {
        left: 1rem;
        right: 1rem;
        bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + 0.5rem);
        padding: 0.9rem 1rem;
    }

    .customer-menu-pagination-wrap {
        justify-content: center;
    }

    .customer-footer-main {
        padding: 3.5rem 0 1.8rem;
    }

    .customer-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1.5rem;
    }

    .customer-footer-brand-block {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .customer-header-grid {
        grid-template-columns: auto 1fr auto;
        gap: 0.75rem;
        min-height: 78px;
    }

    .customer-brand {
        justify-self: start;
        gap: 0.65rem;
    }

    .customer-brand-logo {
        height: 42px;
    }

    .customer-brand-title {
        font-size: 1.4rem;
    }

    .customer-brand-subtitle {
        font-size: 0.58rem;
        letter-spacing: 0.22em;
    }

    .customer-mobile-actions {
        gap: 0.45rem;
    }

    .customer-menu-pagination {
        gap: 0.55rem;
        justify-content: center;
    }

    .customer-menu-page-button {
        width: 2.85rem;
        height: 2.85rem;
        font-size: 1.05rem;
    }

    .customer-mobile-language-trigger {
        min-width: 42px;
        height: 38px;
        padding: 0 0.45rem;
    }

    .customer-mobile-language-flag {
        width: 16px;
        height: 16px;
    }

    .customer-home-hero {
        min-height: 72vh;
    }

    .customer-home-hero-copy {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .customer-section {
        padding: 3.8rem 0;
    }

    .customer-script-eyebrow {
        font-size: 1.55rem;
    }

    .customer-section-title {
        font-size: 2.2rem;
    }

    .customer-menu-summary {
        align-items: flex-start;
    }

    .menu-item-card.customer-menu-card {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 0.85rem;
    }

    .customer-menu-card-image {
        padding: 0;
    }

    .customer-menu-title-row {
        gap: 0.6rem;
        align-items: flex-start;
    }

    .customer-menu-title-row .menu-title {
        font-size: 1.32rem;
        line-height: 1.05;
    }

    .customer-menu-divider {
        display: none;
    }

    .customer-menu-card-price {
        font-size: 0.98rem;
    }

    .customer-menu-card .menu-description p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .customer-menu-actions {
        width: 100%;
        justify-content: center;
    }

    .customer-menu-quick-add {
        height: 34px;
        font-size: 0.84rem;
        padding: 0.45rem 0.8rem;
    }

    .customer-menu-detail-trigger {
        width: 30px;
        height: 34px;
    }

    .customer-menu-open {
        min-height: 38px;
        padding: 0.6rem 0.85rem;
        font-size: 0.84rem;
    }

    .customer-cart-link .cart-count-badge {
        min-width: 1.1rem;
        min-height: 1.1rem;
    }

    .customer-menu-bottom-bar {
        flex-direction: row;
        align-items: center;
        gap: 0.7rem;
        left: 0.8rem;
        right: 0.8rem;
        bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + 0.3rem);
        border-radius: 1.1rem;
        padding: 0.75rem 0.85rem;
    }

    .customer-menu-bottom-summary p:first-child {
        font-size: 0.72rem;
    }

    .customer-menu-bottom-summary p:last-child {
        font-size: 0.9rem;
        margin-top: 0.1rem;
    }

    .customer-menu-bottom-link {
        width: auto;
        min-height: 42px;
        padding: 0.6rem 0.95rem;
        font-size: 0.82rem;
        line-height: 1.15;
        flex-shrink: 0;
    }

    .customer-footer-main {
        padding: 3rem 0 1.4rem;
    }

    .customer-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .customer-footer-logo {
        width: min(100%, 16rem);
    }

    .customer-footer-column h3 {
        font-size: 1.5rem;
        margin-bottom: 0.9rem;
    }

    .customer-footer-addresses p,
    .customer-footer-info-list p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .customer-footer-socials a {
        width: 3rem;
        height: 3rem;
    }

    .customer-footer-bottom .mx-auto {
        flex-direction: column;
        align-items: flex-start;
    }
}
