:root {
    --lx-bg: #fff9ef;
    --lx-bg-alt: #fff4e4;
    --lx-surface: #ffffff;
    --lx-surface-soft: #fffdf8;
    --lx-border: rgba(35, 49, 77, 0.1);
    --lx-border-strong: rgba(255, 122, 89, 0.28);
    --lx-text: #23314d;
    --lx-text-soft: #6d7891;
    --lx-text-muted: #98a5bc;
    --lx-primary: #ff7a59;
    --lx-primary-dark: #f05f3c;
    --lx-primary-soft: rgba(255, 122, 89, 0.12);
    --lx-secondary: #1ab8a7;
    --lx-secondary-dark: #119786;
    --lx-secondary-soft: rgba(26, 184, 167, 0.12);
    --lx-accent: #ffd166;
    --lx-accent-soft: rgba(255, 209, 102, 0.24);
    --lx-lilac: #f4edff;
    --lx-success-soft: rgba(29, 191, 115, 0.12);
    --lx-danger-soft: rgba(240, 95, 60, 0.12);
    --lx-shadow: 0 30px 60px rgba(35, 49, 77, 0.14);
    --lx-shadow-soft: 0 18px 40px rgba(35, 49, 77, 0.08);
    --lx-shadow-sm: 0 10px 24px rgba(35, 49, 77, 0.08);
    --lx-radius-xl: 30px;
    --lx-radius-lg: 24px;
    --lx-radius-md: 18px;
    --lx-radius-sm: 14px;
    --lx-shell: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.lx-theme-body {
    margin: 0;
    color: var(--lx-text);
    background:
        radial-gradient(circle at top left, rgba(255, 209, 102, 0.18), transparent 32%),
        radial-gradient(circle at top right, rgba(26, 184, 167, 0.12), transparent 28%),
        linear-gradient(180deg, #fffdf8 0%, #fff9ef 48%, #fff3df 100%);
    font-family: "Cairo", "Manrope", sans-serif;
    line-height: 1.65;
    min-height: 100vh;
}

body.mobile-menu-opened {
    overflow: hidden;
}

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

a:hover {
    text-decoration: none;
}

button {
    font: inherit;
}

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

[v-cloak] {
    display: none !important;
}

.lx-shell {
    width: min(calc(100% - 32px), var(--lx-shell));
    margin: 0 auto;
}

.lx-site {
    position: relative;
    overflow: clip;
}

.lx-theme-body .modal-backdrop {
    backdrop-filter: blur(4px);
    background: rgba(25, 32, 50, 0.48);
}

.lx-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    padding: 16px 0 0;
}

.lx-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    box-shadow: var(--lx-shadow-soft);
    backdrop-filter: blur(18px);
}

.lx-header-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.lx-header-brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 122, 89, 0.18), rgba(255, 209, 102, 0.35));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.lx-header-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lx-header-brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.lx-header-brand-copy strong {
    font-family: "Manrope", "Cairo", sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--lx-text);
}

.lx-header-brand-copy small {
    color: var(--lx-text-soft);
    font-size: 0.78rem;
}

.lx-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lx-header-link,
.lx-icon-btn {
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lx-header-link {
    padding: 11px 16px;
    color: var(--lx-text);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 0 0 1px rgba(35, 49, 77, 0.06);
}

.lx-header-link.is-primary {
    background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-dark));
    color: #fff;
}

.lx-header-link:hover,
.lx-icon-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--lx-shadow-sm);
}

.lx-icon-btn {
    width: 46px;
    height: 46px;
    background: rgba(255, 122, 89, 0.12);
    color: var(--lx-primary-dark);
    flex-shrink: 0;
}

.lx-status-strip {
    margin-top: 22px;
}

.lx-status-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: var(--lx-shadow-soft);
}

.lx-status-strip.is-open .lx-status-strip-inner {
    background: rgba(26, 184, 167, 0.12);
}

.lx-status-strip.is-closed .lx-status-strip-inner {
    background: rgba(255, 122, 89, 0.12);
}

.lx-status-copy {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.94rem;
}

.lx-status-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: var(--lx-secondary);
    box-shadow: 0 0 0 6px rgba(26, 184, 167, 0.14);
}

.lx-status-strip.is-closed .lx-status-dot {
    background: var(--lx-primary);
    box-shadow: 0 0 0 6px rgba(255, 122, 89, 0.12);
}

.lx-status-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--lx-text);
}

.lx-hero {
    position: relative;
    padding: 26px 0 18px;
}

.lx-hero-media {
    position: absolute;
    inset: 0 0 auto;
    height: 100%;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}

.lx-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
    transform: scale(1.03);
}

.lx-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(118deg, rgba(27, 39, 64, 0.84) 0%, rgba(27, 39, 64, 0.42) 42%, rgba(255, 122, 89, 0.08) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.lx-hero-decoration {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.78;
}

.lx-hero-decoration-one {
    inset-inline-start: 7%;
    top: 18%;
    width: 180px;
    height: 180px;
    background: rgba(255, 209, 102, 0.2);
}

.lx-hero-decoration-two {
    inset-inline-end: 10%;
    bottom: 16%;
    width: 220px;
    height: 220px;
    background: rgba(26, 184, 167, 0.16);
}

.lx-hero-body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: start;
    min-height: 620px;
}

.lx-hero-main,
.lx-hero-panel {
    padding-top: 26px;
}

.lx-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.lx-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    font-size: 0.92rem;
}

.lx-hero-brand {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.lx-hero-logo {
    width: 112px;
    height: 112px;
    border-radius: 28px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--lx-shadow-soft);
    backdrop-filter: blur(14px);
    flex-shrink: 0;
}

.lx-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.lx-kicker {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.96rem;
    letter-spacing: 0.02em;
}

.lx-hero-copy h1 {
    margin: 0;
    font-family: "Manrope", "Cairo", sans-serif;
    font-size: clamp(2.3rem, 4vw, 4.3rem);
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
}

.lx-hero-description {
    max-width: 760px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.03rem;
}

.lx-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.lx-stat-card,
.lx-panel-card,
.lx-intro-strip,
.lx-item,
.lx-cart-box,
.lx-side-card,
.lx-hours-card,
.lx-foot,
.lx-reorder {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--lx-shadow);
    backdrop-filter: blur(18px);
}

.lx-stat-card {
    padding: 16px 18px;
    border-radius: var(--lx-radius-lg);
}

.lx-stat-card span {
    display: block;
    color: var(--lx-text-soft);
    font-size: 0.82rem;
}

.lx-stat-card strong {
    display: block;
    margin: 8px 0 4px;
    font-family: "Manrope", "Cairo", sans-serif;
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--lx-text);
}

.lx-stat-card small {
    color: var(--lx-text-soft);
    font-size: 0.8rem;
}

.lx-highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.lx-highlight-tag {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 700;
    transition: background 0.25s ease, transform 0.25s ease;
}

.lx-highlight-tag:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.18);
}

.lx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 0;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    cursor: pointer;
}

.lx-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--lx-shadow-sm);
}

.lx-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-dark));
}

.lx-btn-secondary {
    color: var(--lx-text);
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.9), rgba(255, 236, 177, 0.9));
}

.lx-btn-glass,
.lx-btn-plain {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.lx-btn-plain {
    color: var(--lx-text);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(35, 49, 77, 0.08);
    backdrop-filter: none;
}

.lx-mobile-only {
    display: none;
}

.lx-panel-card {
    padding: 24px;
    border-radius: var(--lx-radius-xl);
}

.lx-panel-card + .lx-panel-card {
    margin-top: 18px;
}

.lx-panel-heading {
    margin-bottom: 18px;
}

.lx-panel-heading span,
.lx-side-card-head span,
.lx-intro-label,
.lx-section-kicker,
.lx-cart-head p,
.lx-foot-brand p {
    display: inline-block;
    color: var(--lx-text-soft);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.lx-panel-heading h3,
.lx-side-card-head h3,
.lx-hours-card h3,
.lx-cart-head h3 {
    margin: 8px 0 0;
    font-family: "Manrope", "Cairo", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--lx-text);
}

.lx-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.lx-service-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: var(--lx-radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 228, 0.9));
    border: 1px solid var(--lx-border);
}

.lx-service-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--lx-primary-soft);
    color: var(--lx-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.lx-service-card h4 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--lx-text);
}

.lx-service-card p,
.lx-info-list span,
.lx-legal-copy,
.lx-intro-copy h2,
.lx-item-desc,
.lx-foot-brand span,
.lx-foot-hour span {
    color: var(--lx-text-soft);
}

.lx-service-card p {
    margin: 4px 0 0;
    font-size: 0.86rem;
    line-height: 1.55;
}

.lx-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.lx-info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.lx-info-list i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--lx-secondary-soft);
    color: var(--lx-secondary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lx-info-list strong {
    display: block;
    margin-bottom: 3px;
    color: var(--lx-text);
}

.lx-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.lx-inline-action,
.lx-inline-link,
.lx-foot-action,
.lx-foot-loyalty {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 800;
    color: var(--lx-text);
    background: var(--lx-bg-alt);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lx-inline-action:hover,
.lx-inline-link:hover,
.lx-foot-action:hover,
.lx-foot-loyalty:hover {
    transform: translateY(-1px);
    box-shadow: var(--lx-shadow-sm);
}

.lx-reorder {
    margin: 20px 0 8px;
    border-radius: var(--lx-radius-xl);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.lx-reorder-copy {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lx-reorder-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 122, 89, 0.14), rgba(255, 209, 102, 0.28));
    color: var(--lx-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.18rem;
}

.lx-reorder-copy p {
    margin: 0;
    color: var(--lx-text-soft);
    font-size: 0.82rem;
    text-transform: uppercase;
    font-weight: 700;
}

.lx-reorder-copy h3 {
    margin: 4px 0;
    font-size: 1.1rem;
    font-weight: 800;
}

.lx-reorder-copy span {
    color: var(--lx-text-soft);
    font-size: 0.9rem;
}

.lx-reorder-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    padding: 14px 18px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-dark));
    box-shadow: var(--lx-shadow-sm);
    flex-shrink: 0;
}

.lx-reorder-btn strong {
    font-family: "Manrope", "Cairo", sans-serif;
    font-weight: 800;
}

.lx-content-shell {
    position: relative;
    padding: 18px 0 36px;
}

.sticky_horizontal {
    position: sticky;
    top: 16px;
    z-index: 950;
}

.lx-nav {
    margin: 18px 0 20px;
}

.lx-nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    box-shadow: var(--lx-shadow-soft);
    backdrop-filter: blur(16px);
}

.lx-nav-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lx-nav-search,
.lx-nav-cart,
.lx-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 11px 16px;
    border-radius: 999px;
    color: var(--lx-text);
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.lx-nav-search,
.lx-nav-cart {
    background: var(--lx-bg-alt);
    font-weight: 700;
}

.lx-nav-scroller {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
}

.lx-nav-scroller::-webkit-scrollbar {
    display: none;
}

.lx-nav-item {
    background: transparent;
    font-weight: 700;
    color: var(--lx-text-soft);
}

.lx-nav-item:hover,
.lx-nav-item.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--lx-secondary), var(--lx-secondary-dark));
}

.btn_reserve_fixed {
    display: none;
}

.lx-mobile-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-height: 60px;
    padding: 14px 18px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-dark));
    box-shadow: var(--lx-shadow);
}

.lx-mobile-cart-copy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.lx-mobile-cart-count {
    min-width: 30px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.lx-intro-strip {
    border-radius: var(--lx-radius-xl);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.lx-intro-copy {
    max-width: 760px;
}

.lx-intro-copy h2 {
    margin: 10px 0 0;
    font-family: "Manrope", "Cairo", sans-serif;
    font-size: clamp(1.24rem, 2vw, 1.7rem);
    line-height: 1.35;
    font-weight: 800;
    color: var(--lx-text);
}

.lx-intro-details {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.lx-chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.lx-info-chip,
.lx-meta-chip,
.lx-cart-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.lx-info-chip {
    background: var(--lx-secondary-soft);
    color: var(--lx-secondary-dark);
}

.lx-intro-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lx-page {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.84fr);
    gap: 20px;
    align-items: start;
}

.lx-main,
.lx-aside {
    min-width: 0;
}

.lx-section {
    margin-bottom: 18px;
}

.lx-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    padding: 0 4px;
}

.lx-section-copy h2 {
    margin: 7px 0 4px;
    font-family: "Manrope", "Cairo", sans-serif;
    font-size: clamp(1.48rem, 2vw, 1.95rem);
    font-weight: 800;
    color: var(--lx-text);
}

.lx-section-copy p {
    margin: 0;
    color: var(--lx-text-soft);
}

.lx-section-side {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lx-section-counter {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--lx-primary-soft), rgba(255, 209, 102, 0.18));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lx-primary-dark);
    font-family: "Manrope", "Cairo", sans-serif;
    font-weight: 800;
}

.lx-section-thumb {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--lx-shadow-sm);
}

.lx-section-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lx-items {
    display: grid;
    gap: 16px;
}

.lx-item {
    border-radius: var(--lx-radius-xl);
    padding: 18px;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.lx-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(35, 49, 77, 0.12);
    border-color: var(--lx-border-strong);
}

.lx-item.is-out {
    opacity: 0.84;
}

.lx-item-media {
    position: relative;
    min-height: 170px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.24), rgba(255, 122, 89, 0.16));
}

.lx-item-media img,
.lx-item-placeholder {
    width: 100%;
    height: 100%;
}

.lx-item-media img {
    object-fit: cover;
}

.lx-item-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lx-primary-dark);
    font-size: 2rem;
}

.lx-item-badges {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lx-item-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--lx-text);
    font-size: 0.76rem;
    font-weight: 800;
}

.lx-item-badge.is-offer {
    background: rgba(255, 122, 89, 0.94);
    color: #fff;
}

.lx-item-badge.is-stock {
    background: rgba(35, 49, 77, 0.84);
    color: #fff;
}

.lx-item-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.lx-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.lx-item-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--lx-bg-alt);
    color: var(--lx-primary-dark);
    font-family: "Manrope", "Cairo", sans-serif;
    font-weight: 800;
}

.lx-item-allergens {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.lx-item-allergens img {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(35, 49, 77, 0.08);
    object-fit: contain;
}

.lx-item-name {
    margin: 14px 0 8px;
    font-family: "Manrope", "Cairo", sans-serif;
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--lx-text);
}

.lx-item-desc {
    margin: 0;
    font-size: 0.94rem;
}

.lx-item-meta,
.lx-cart-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.lx-meta-chip {
    background: rgba(255, 209, 102, 0.22);
    color: #946200;
}

.lx-item-footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    padding-top: 16px;
}

.lx-price-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lx-price-stack strong {
    font-family: "Manrope", "Cairo", sans-serif;
    font-size: 1.24rem;
    font-weight: 800;
    color: var(--lx-primary-dark);
}

.lx-price-stack span {
    color: var(--lx-text-muted);
    text-decoration: line-through;
    font-size: 0.88rem;
}

.lx-item-add,
.lx-item-state {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 16px;
    border-radius: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.lx-item-add {
    background: linear-gradient(135deg, var(--lx-secondary), var(--lx-secondary-dark));
    color: #fff;
}

.lx-item-state {
    background: var(--lx-danger-soft);
    color: var(--lx-primary-dark);
}

.lx-side-card,
.lx-hours-card,
.lx-cart-box {
    border-radius: var(--lx-radius-xl);
    padding: 22px;
}

.lx-side-card + .lx-side-card,
.lx-cart-card + .lx-side-card,
.lx-side-card + .lx-hours-card,
.lx-hours-card + .lx-side-card {
    margin-top: 18px;
}

.lx-side-action-list {
    display: grid;
    gap: 12px;
}

.lx-side-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 228, 0.88));
    border: 1px solid var(--lx-border);
    font-weight: 700;
    color: var(--lx-text);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lx-side-action:hover {
    transform: translateY(-1px);
    box-shadow: var(--lx-shadow-sm);
}

.lx-side-action i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--lx-secondary-soft);
    color: var(--lx-secondary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lx-legal-copy {
    font-size: 0.92rem;
}

.lx-cart-card {
    min-width: 0;
}

.lx-cart-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.lx-cart-head h3 {
    margin-top: 6px;
}

.lx-cart-min {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--lx-primary-soft);
    color: var(--lx-primary-dark);
    font-family: "Manrope", "Cairo", sans-serif;
    font-weight: 800;
}

.lx-cart-intro {
    margin: 12px 0 18px;
    color: var(--lx-text-soft);
    font-size: 0.92rem;
}

.lx-cart-content {
    min-height: 40px;
}

.lx-cart-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.lx-cart-item {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 228, 0.9));
    border: 1px solid var(--lx-border);
}

.lx-cart-item-media {
    width: 78px;
    height: 78px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.26), rgba(255, 122, 89, 0.14));
}

.lx-cart-item-img,
.lx-cart-item-placeholder {
    width: 100%;
    height: 100%;
}

.lx-cart-item-img {
    object-fit: cover;
}

.lx-cart-item-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lx-primary-dark);
    font-size: 1.35rem;
}

.lx-cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.lx-cart-item-top h4 {
    margin: 0;
    min-width: 0;
    color: var(--lx-text);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.4;
}

.lx-cart-item-top h4 span {
    color: var(--lx-primary-dark);
}

.lx-cart-remove {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 122, 89, 0.12);
    color: var(--lx-primary-dark);
    flex-shrink: 0;
}

.lx-cart-tag {
    background: rgba(35, 49, 77, 0.08);
    color: var(--lx-text-soft);
}

.lx-cart-tag.is-extra {
    background: var(--lx-secondary-soft);
    color: var(--lx-secondary-dark);
}

.lx-cart-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    color: var(--lx-text-soft);
    font-size: 0.88rem;
}

.lx-cart-price-row strong,
.lx-cart-total strong,
.lx-checkout-btn strong {
    font-family: "Manrope", "Cairo", sans-serif;
    font-weight: 800;
    color: var(--lx-text);
}

.lx-cart-footer {
    margin-top: 18px;
}

.lx-cart-empty {
    padding: 24px 18px;
    border-radius: 22px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 228, 0.84));
    border: 1px dashed rgba(35, 49, 77, 0.14);
}

.lx-cart-empty h4 {
    margin: 12px 0 6px;
    font-weight: 800;
}

.lx-cart-empty p {
    margin: 0;
    color: var(--lx-text-soft);
}

.lx-cart-empty-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto;
    border-radius: 20px;
    background: var(--lx-primary-soft);
    color: var(--lx-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.lx-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255, 209, 102, 0.14);
    color: var(--lx-text-soft);
}

.lx-checkout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-dark));
    box-shadow: var(--lx-shadow-sm);
}

.lx-checkout-btn span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.lx-hours-list {
    list-style: none;
    margin: 18px 0 14px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.lx-hours-list li {
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 237, 255, 0.7));
    border: 1px solid var(--lx-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.lx-hours-list li.is-today {
    border-color: rgba(26, 184, 167, 0.26);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(26, 184, 167, 0.1));
}

.lx-hours-day {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lx-hours-day strong {
    font-weight: 800;
    color: var(--lx-text);
}

.lx-hours-day span {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--lx-secondary-soft);
    color: var(--lx-secondary-dark);
    font-size: 0.76rem;
    font-weight: 800;
}

.lx-hours-range {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    color: var(--lx-text-soft);
    font-size: 0.84rem;
}

.lx-empty-state {
    padding: 46px 26px;
    border-radius: var(--lx-radius-xl);
    text-align: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px dashed rgba(35, 49, 77, 0.14);
    box-shadow: var(--lx-shadow-soft);
}

.lx-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 122, 89, 0.14), rgba(255, 209, 102, 0.32));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lx-primary-dark);
    font-size: 1.8rem;
}

.lx-empty-state h2 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 800;
}

.lx-empty-state p {
    margin: 0;
    color: var(--lx-text-soft);
}

.lx-foot {
    margin: 24px auto 34px;
    border-radius: 36px;
    padding: 28px 0;
}

.lx-foot-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(35, 49, 77, 0.08);
}

.lx-foot-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lx-foot-brand-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--lx-shadow-sm);
    flex-shrink: 0;
}

.lx-foot-brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lx-foot-brand h3 {
    margin: 6px 0;
    font-family: "Manrope", "Cairo", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lx-text);
}

.lx-foot-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.lx-foot-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    padding: 24px 0;
}

.lx-foot-col h4 {
    margin: 0 0 14px;
    font-family: "Manrope", "Cairo", sans-serif;
    font-size: 1.04rem;
    font-weight: 800;
    color: var(--lx-text);
}

.lx-foot-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.lx-foot-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--lx-text-soft);
}

.lx-foot-col li i {
    color: var(--lx-primary-dark);
    margin-top: 3px;
}

.lx-foot-hours {
    display: grid;
    gap: 10px;
}

.lx-foot-hour {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 244, 228, 0.62);
}

.lx-foot-hour.is-live {
    background: rgba(26, 184, 167, 0.12);
}

.lx-foot-hour strong {
    color: var(--lx-text);
    font-weight: 800;
}

.lx-foot-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lx-foot-social a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 122, 89, 0.1);
    color: var(--lx-primary-dark);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lx-foot-social a:hover {
    transform: translateY(-1px);
    box-shadow: var(--lx-shadow-sm);
}

.lx-foot-loyalty {
    margin-top: 14px;
}

.lx-foot-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid rgba(35, 49, 77, 0.08);
    color: var(--lx-text-soft);
    font-size: 0.92rem;
}

.lx-social-dock {
    position: fixed;
    inset-inline-start: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1040;
}

.lx-social-link {
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--lx-text);
    box-shadow: var(--lx-shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lx-social-link:hover {
    transform: translateY(-1px);
    box-shadow: var(--lx-shadow-sm);
}

body.mobile-menu-opened .lx-social-dock {
    opacity: 0;
    pointer-events: none;
}

#mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(21, 29, 44, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.mobile-menu-opened #mobile-menu {
    opacity: 1;
    visibility: visible;
}

.lx-mobile-sheet {
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    width: min(94vw, 430px);
    height: 100%;
    padding: 22px 18px 28px;
    background: linear-gradient(180deg, #fffdf8 0%, #fff9ef 100%);
    box-shadow: -24px 0 60px rgba(35, 49, 77, 0.18);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.32s ease;
}

body.mobile-menu-opened .lx-mobile-sheet {
    transform: translateX(0);
}

.close-mobile-menu {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 122, 89, 0.12);
    color: var(--lx-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline-start: auto;
}

.lx-mobile-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0 20px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--lx-shadow-soft);
}

.lx-mobile-brand img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 20px;
    flex-shrink: 0;
}

.lx-mobile-brand h3 {
    margin: 0 0 4px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--lx-text);
}

.lx-mobile-brand p,
.lx-mobile-footer small {
    margin: 0;
    color: var(--lx-text-soft);
}

.lx-mobile-cart-wrapper .lx-cart-box {
    padding: 18px;
}

.lx-mobile-group {
    margin-top: 18px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--lx-shadow-soft);
}

.lx-mobile-group-title {
    margin: 0 0 14px;
    color: var(--lx-text);
    font-weight: 800;
}

.lx-mobile-link-list {
    display: grid;
    gap: 10px;
}

.lx-mobile-link {
    width: 100%;
    border: 0;
    text-align: start;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 18px;
    background: var(--lx-bg-alt);
    color: var(--lx-text);
    font-weight: 700;
}

.lx-mobile-link i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255, 122, 89, 0.12);
    color: var(--lx-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lx-mobile-translate {
    overflow: hidden;
}

.lx-mobile-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lx-mobile-social-link {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 122, 89, 0.12);
    color: var(--lx-primary-dark);
}

.lx-mobile-legal {
    font-size: 0.9rem;
    color: var(--lx-text-soft);
}

.lx-mobile-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding: 18px;
}

.lx-mobile-footer a {
    font-weight: 700;
    color: var(--lx-primary-dark);
}

.modal-content {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(22, 31, 49, 0.22);
}

.modal-header {
    padding: 18px 22px;
    background: linear-gradient(180deg, #fffdf8 0%, #fff4e4 100%);
    border-bottom: 1px solid rgba(35, 49, 77, 0.08);
}

.modal-header .modal-title,
.modal-header h5,
.modal-header h6 {
    margin: 0;
    color: var(--lx-text);
    font-weight: 800;
}

.modal-header .close {
    opacity: 1;
    color: var(--lx-text);
    background: rgba(255, 122, 89, 0.12);
    width: 38px;
    height: 38px;
    border-radius: 12px;
    margin: 0;
    padding: 0;
    text-shadow: none;
}

.modal-body {
    background: #fff;
}

.modal-footer {
    padding: 20px 22px 22px;
    border-top: 1px solid rgba(35, 49, 77, 0.08);
    background: linear-gradient(180deg, #fffdf8 0%, #fff4e4 100%);
}

#productModal .modal-dialog {
    max-width: min(94vw, 920px);
}

.lx-modal-pic {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.2), rgba(255, 122, 89, 0.12));
}

.lx-modal-pic figure {
    margin: 0;
    max-height: 360px;
    overflow: hidden;
}

.lx-modal-pic img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
}

.zoom-tag {
    position: absolute;
    inset-inline-end: 16px;
    bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(35, 49, 77, 0.72);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.lx-modal-info {
    padding: 20px 22px 24px;
}

.lx-modal-info h4 {
    margin: 0 0 10px;
    font-family: "Manrope", "Cairo", sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--lx-text);
}

.lx-modal-info p {
    color: var(--lx-text-soft);
}

#variants-area,
#exrtas-area {
    margin-top: 18px;
}

#variants-area-inside,
#exrtas-area-inside {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variants-area-label {
    width: 100%;
}

.label-variants,
#theExtrasLabel {
    display: block;
    margin-bottom: 10px;
    color: var(--lx-text);
    font-weight: 800;
}

#variants-area .btn,
#variants-area-inside .btn,
#exrtas-area .container_check {
    position: relative;
    border: 1px solid rgba(35, 49, 77, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--lx-text);
    box-shadow: none;
}

#variants-area .btn {
    padding: 10px 14px;
    min-height: 44px;
}

#variants-area .btn input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#variants-area .btn.active,
#variants-area .btn:has(input:checked) {
    color: #fff;
    background: linear-gradient(135deg, var(--lx-secondary), var(--lx-secondary-dark));
    border-color: transparent;
}

.container_check {
    padding: 12px 16px 12px 44px;
    min-width: min(100%, 260px);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
}

.container_check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.container_check .checkmark {
    position: absolute;
    inset-inline-start: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid rgba(35, 49, 77, 0.2);
}

.container_check input:checked + .checkmark {
    border-color: var(--lx-secondary);
    background: var(--lx-secondary);
    box-shadow: inset 0 0 0 4px #fff;
}

.closed_time {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 122, 89, 0.1);
    color: var(--lx-primary-dark);
    font-weight: 700;
}

.footer-area h6 {
    margin: 0;
    color: var(--lx-text-soft);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.new-price {
    color: var(--lx-primary-dark);
    font-family: "Manrope", "Cairo", sans-serif;
    font-weight: 800;
}

.numbers-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.qty2 {
    width: 82px;
    height: 46px;
    text-align: center;
    border-radius: 14px;
    border: 1px solid rgba(35, 49, 77, 0.12);
}

.button_inc {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--lx-bg-alt);
    color: var(--lx-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 800;
}

.quantity-btn .btn {
    min-height: 54px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-dark));
    box-shadow: var(--lx-shadow-sm);
    font-weight: 800;
}

.itemsSearchHolder {
    padding: 18px;
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    min-height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(35, 49, 77, 0.1);
    padding: 8px 12px;
}

.select2-dropdown {
    border-radius: 16px;
    border-color: rgba(35, 49, 77, 0.1);
    overflow: hidden;
    box-shadow: var(--lx-shadow-soft);
}

.schedule {
    padding: 16px;
}

.schedule .items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.schedule li {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 244, 228, 0.62);
}

.schedule li.today {
    background: rgba(26, 184, 167, 0.12);
}

.schedule .day {
    font-weight: 800;
    color: var(--lx-text);
    margin-bottom: 6px;
}

.schedule .hours {
    color: var(--lx-text-soft);
}

.lx-zoom {
    position: fixed;
    inset: 0;
    background: rgba(17, 23, 34, 0.84);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1300;
    padding: 24px;
}

.lx-zoom.active {
    display: flex;
}

.lx-zoom img {
    max-width: min(92vw, 980px);
    max-height: 88vh;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.lx-zoom-x {
    position: absolute;
    top: 24px;
    inset-inline-end: 24px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

#toTop {
    position: fixed;
    inset-inline-end: 20px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--lx-primary), var(--lx-primary-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--lx-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1020;
    cursor: pointer;
}

#toTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .lx-hero-body,
    .lx-page,
    .lx-foot-grid {
        grid-template-columns: 1fr;
    }

    .lx-hero-panel,
    .lx-aside {
        width: 100%;
    }

    .lx-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lx-item {
        grid-template-columns: 170px minmax(0, 1fr);
    }
}

@media (max-width: 991.98px) {
    .lx-header {
        padding-top: 10px;
    }

    .lx-header-wrap {
        padding: 12px 14px;
    }

    .lx-status-strip {
        margin-top: 16px;
    }

    .lx-hero {
        padding-top: 18px;
    }

    .lx-hero-media img {
        min-height: 860px;
    }

    .lx-hero-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .lx-hero-logo {
        width: 92px;
        height: 92px;
    }

    .lx-intro-strip,
    .lx-foot-top,
    .lx-reorder {
        flex-direction: column;
        align-items: stretch;
    }

    .lx-reorder-btn {
        width: 100%;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .lx-shell {
        width: min(calc(100% - 24px), var(--lx-shell));
    }

    .lx-header-link {
        display: none;
    }

    .lx-status-strip-inner {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 24px;
    }

    .lx-stat-grid {
        grid-template-columns: 1fr;
    }

    .lx-service-grid {
        grid-template-columns: 1fr;
    }

    .lx-mobile-only {
        display: inline-flex;
    }

    .lx-nav {
        margin: 14px 0 18px;
    }

    .sticky_horizontal {
        top: 10px;
    }

    .lx-nav-wrap {
        grid-template-columns: 1fr;
        border-radius: 26px;
        padding: 14px;
    }

    .lx-nav-tools {
        justify-content: space-between;
    }

    .lx-nav-search,
    .lx-nav-cart {
        flex: 1 1 0;
        justify-content: center;
    }

    .lx-intro-strip {
        padding: 18px;
    }

    .lx-item {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .lx-item-media {
        min-height: 220px;
    }

    .lx-item-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .lx-item-add,
    .lx-item-state {
        justify-content: center;
    }

    .btn_reserve_fixed {
        display: block;
        position: sticky;
        bottom: 0;
        z-index: 990;
        padding: 4px 0 10px;
    }

    .lx-social-dock {
        display: none;
    }

    .lx-foot {
        border-radius: 28px;
        margin-bottom: 24px;
    }

    .lx-foot-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .lx-mobile-sheet {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .lx-header-brand-copy small,
    .lx-status-copy span:last-child {
        display: none;
    }

    .lx-hero-main,
    .lx-hero-panel {
        padding-top: 18px;
    }

    .lx-pill-row {
        gap: 8px;
    }

    .lx-pill {
        padding: 9px 12px;
        font-size: 0.84rem;
    }

    .lx-hero-actions,
    .lx-panel-actions,
    .lx-foot-cta,
    .lx-intro-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lx-btn,
    .lx-inline-action,
    .lx-inline-link,
    .lx-foot-action,
    .lx-foot-loyalty {
        width: 100%;
        justify-content: center;
    }

    .lx-cart-box,
    .lx-side-card,
    .lx-hours-card,
    .lx-panel-card,
    .lx-intro-strip {
        padding: 18px;
    }

    .lx-cart-item {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .lx-cart-item-media {
        width: 64px;
        height: 64px;
    }

    .lx-hours-list li,
    .lx-foot-hour {
        flex-direction: column;
        align-items: flex-start;
    }

    .lx-hours-range {
        align-items: flex-start;
    }

    #toTop {
        inset-inline-end: 14px;
        bottom: 14px;
        width: 46px;
        height: 46px;
    }
}

@media print {
    .lx-header,
    .lx-nav,
    .btn_reserve_fixed,
    .lx-social-dock,
    #mobile-menu,
    #toTop,
    .lx-foot,
    .lx-reorder,
    .lx-hero-actions,
    .lx-panel-card {
        display: none !important;
    }

    body.lx-theme-body {
        background: #fff;
    }

    .lx-hero-media,
    .lx-hero-overlay,
    .lx-hero-decoration {
        display: none;
    }

    .lx-hero-body,
    .lx-page {
        grid-template-columns: 1fr;
    }
}

/* Luxe V3 visual refresh */
:root {
    --lx-bg: #fffdf6;
    --lx-bg-alt: #fff7ea;
    --lx-surface: #ffffff;
    --lx-surface-soft: #fffaf2;
    --lx-border: rgba(49, 38, 23, 0.12);
    --lx-border-strong: rgba(221, 144, 53, 0.38);
    --lx-text: #2f261a;
    --lx-text-soft: #71604a;
    --lx-text-muted: #a08f78;
    --lx-primary: #d48a2f;
    --lx-primary-dark: #b56f1a;
    --lx-primary-soft: rgba(212, 138, 47, 0.14);
    --lx-secondary: #1f9a8a;
    --lx-secondary-dark: #17796d;
    --lx-secondary-soft: rgba(31, 154, 138, 0.13);
    --lx-accent: #f5ce7a;
    --lx-accent-soft: rgba(245, 206, 122, 0.26);
    --lx-shadow: 0 28px 56px rgba(74, 52, 26, 0.16);
    --lx-shadow-soft: 0 14px 30px rgba(74, 52, 26, 0.1);
    --lx-shadow-sm: 0 8px 18px rgba(74, 52, 26, 0.08);
}

body.lx-theme-body {
    background:
        radial-gradient(circle at 0% 0%, rgba(245, 206, 122, 0.26), transparent 36%),
        radial-gradient(circle at 100% 0%, rgba(31, 154, 138, 0.1), transparent 33%),
        linear-gradient(180deg, #fffefb 0%, #fff9f0 52%, #fff6e9 100%);
    color: var(--lx-text);
}

.lx-header {
    padding-top: 14px;
}

.lx-header-wrap {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 28px rgba(64, 46, 24, 0.14);
}

.lx-header-center {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lx-currency-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(245, 206, 122, 0.3), rgba(212, 138, 47, 0.14));
    border: 1px solid rgba(212, 138, 47, 0.25);
    color: var(--lx-text);
    font-weight: 800;
    font-size: 0.84rem;
    white-space: nowrap;
}

.lx-lang-dropdown {
    position: relative;
}

.lx-lang-trigger {
    cursor: pointer;
}

.lx-lang-trigger .fa-chevron-down {
    font-size: 0.76rem;
}

.lx-lang-menu {
    position: absolute;
    inset-inline-end: 0;
    top: calc(100% + 10px);
    min-width: 190px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(212, 138, 47, 0.24);
    background: #fff;
    box-shadow: 0 18px 35px rgba(64, 46, 24, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: 0.2s ease;
    z-index: 1200;
}

.lx-lang-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lx-lang-menu a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 10px;
    color: var(--lx-text);
    font-weight: 700;
    font-size: 0.92rem;
}

.lx-lang-menu a:hover {
    background: var(--lx-primary-soft);
    color: var(--lx-primary-dark);
}

.lx-hero-media {
    border-radius: 0 0 34px 34px;
}

.lx-hero-overlay {
    background:
        linear-gradient(112deg, rgba(30, 24, 17, 0.82) 2%, rgba(30, 24, 17, 0.55) 38%, rgba(30, 24, 17, 0.12) 100%),
        linear-gradient(180deg, rgba(255, 248, 232, 0.08), rgba(255, 248, 232, 0.03));
}

.lx-hero-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.lx-currency-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.lx-currency-pill i {
    color: var(--lx-accent);
}

.lx-hero-tools .lx-lang-trigger {
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.lx-translate-tools {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.lx-pill {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.lx-stat-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 28px rgba(30, 24, 17, 0.16);
}

.lx-highlight-tag {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
}

.lx-highlight-tag:hover {
    background: rgba(245, 206, 122, 0.24);
    border-color: rgba(245, 206, 122, 0.5);
}

.lx-btn {
    box-shadow: 0 10px 22px rgba(30, 24, 17, 0.17);
}

.lx-btn-primary {
    background: linear-gradient(135deg, #e09a3b, #c67f23);
}

.lx-btn-secondary {
    background: linear-gradient(135deg, #f5d486, #edbf5f);
    color: #4a381f;
}

.lx-btn-glass,
.lx-btn-plain {
    border-color: rgba(255, 255, 255, 0.26);
}

.lx-panel-card,
.lx-intro-strip,
.lx-section,
.lx-item,
.lx-cart-box,
.lx-side-card,
.lx-hours-card,
.lx-reorder,
.lx-foot {
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--lx-shadow-soft);
}

.lx-panel-card {
    background: rgba(255, 255, 255, 0.95);
}

.lx-service-card {
    background: var(--lx-surface-soft);
    border: 1px solid rgba(212, 138, 47, 0.16);
}

.lx-service-icon {
    background: rgba(212, 138, 47, 0.16);
    color: var(--lx-primary-dark);
}

.lx-nav-wrap {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--lx-shadow-soft);
}

.lx-nav-item {
    border-color: rgba(212, 138, 47, 0.16);
}

.lx-nav-item.is-active,
.lx-nav-item:hover {
    background: rgba(212, 138, 47, 0.14);
    border-color: rgba(212, 138, 47, 0.32);
    color: #51361d;
}

.lx-section-head {
    border-bottom-color: rgba(212, 138, 47, 0.16);
}

.lx-section-kicker,
.lx-item-num,
.lx-intro-label {
    color: #9c6f3a;
}

.lx-section-counter {
    background: linear-gradient(135deg, rgba(212, 138, 47, 0.2), rgba(245, 206, 122, 0.32));
    color: #7a4f1f;
}

.lx-item {
    background: #fff;
    border-color: rgba(212, 138, 47, 0.15);
}

.lx-item-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #7a4f1f;
}

.lx-item-badge.is-stock {
    background: rgba(194, 54, 54, 0.14);
    color: #922f2f;
}

.lx-item-badge.is-offer {
    background: rgba(31, 154, 138, 0.14);
    color: #176f63;
}

.lx-meta-chip {
    background: rgba(212, 138, 47, 0.12);
    color: #7a4f1f;
}

.lx-price-stack strong {
    color: var(--lx-primary-dark);
}

.lx-item-add {
    background: linear-gradient(135deg, #e09a3b, #c67f23);
}

.lx-item-state {
    background: rgba(194, 54, 54, 0.1);
    color: #922f2f;
}

.lx-cart-head p,
.lx-side-card-head span,
.lx-hours-card .lx-side-card-head span,
.lx-foot-col h4 {
    color: #9c6f3a;
}

.lx-cart-min {
    background: rgba(212, 138, 47, 0.16);
    color: #7a4f1f;
    border: 1px solid rgba(212, 138, 47, 0.28);
}

.lx-cart-item {
    border-bottom-color: rgba(212, 138, 47, 0.14);
}

.lx-cart-tag {
    background: rgba(31, 154, 138, 0.12);
    color: #176f63;
}

.lx-cart-tag.is-extra {
    background: rgba(212, 138, 47, 0.12);
    color: #7a4f1f;
}

.lx-checkout-btn {
    background: linear-gradient(135deg, #1f9a8a, #17796d);
}

.lx-side-action,
.lx-inline-action,
.lx-inline-link,
.lx-foot-action {
    border-color: rgba(212, 138, 47, 0.18);
    background: rgba(255, 255, 255, 0.94);
}

.lx-side-action:hover,
.lx-inline-action:hover,
.lx-inline-link:hover,
.lx-foot-action:hover {
    border-color: rgba(212, 138, 47, 0.32);
    background: rgba(212, 138, 47, 0.08);
}

.lx-hours-list li.is-today,
.lx-foot-hour.is-live {
    border-color: rgba(31, 154, 138, 0.3);
    background: rgba(31, 154, 138, 0.08);
}

.lx-reorder {
    margin-top: -36px;
    background: #fff;
}

.lx-reorder-icon {
    background: rgba(212, 138, 47, 0.16);
    color: #8a5a25;
}

.lx-reorder-btn {
    background: linear-gradient(135deg, #e09a3b, #c67f23);
}

.lx-foot {
    background: #fff;
}

.lx-foot-brand p {
    color: #9c6f3a;
}

.lx-foot-social a {
    border-color: rgba(212, 138, 47, 0.24);
    color: #7a4f1f;
}

.lx-foot-social a:hover {
    background: rgba(212, 138, 47, 0.14);
}

.lx-foot-loyalty {
    background: rgba(31, 154, 138, 0.12);
    color: #176f63;
}

.lx-social-link {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--lx-shadow-sm);
}

.lx-social-link:hover {
    background: rgba(212, 138, 47, 0.1);
}

.lx-mobile-sheet {
    background: #fffef9;
}

.lx-mobile-link,
.lx-mobile-social-link {
    border-color: rgba(212, 138, 47, 0.2);
}

.lx-mobile-link:hover,
.lx-mobile-social-link:hover {
    background: rgba(212, 138, 47, 0.1);
}

.lx-modal-pic .zoom-tag {
    position: absolute;
    inset-inline-start: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(30, 24, 17, 0.72);
    color: #fff;
    font-size: 0.78rem;
}

.lx-modal-info .form-control-label {
    color: var(--lx-text);
    font-weight: 700;
}

.lx-zoom {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(14, 11, 8, 0.88);
}

.lx-zoom.active {
    display: flex;
}

.lx-zoom img {
    max-width: min(960px, 94vw);
    max-height: 88vh;
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.lx-zoom-x {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 1199.98px) {
    .lx-header-center {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .lx-currency-chip,
    .lx-header-actions .lx-lang-dropdown {
        display: none;
    }

    .lx-hero-tools {
        gap: 8px;
    }

    .lx-hero-tools .lx-lang-dropdown {
        width: 100%;
    }

    .lx-hero-tools .lx-lang-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .lx-currency-pill {
        width: 100%;
        justify-content: center;
    }
}
