﻿:root {
    --bg-1: #f7fbf3;
    --bg-2: #ecf7e9;
    --ink: #111827;
    --muted: #6b7280;
    --line: rgba(15, 23, 42, 0.1);
    --white-glass: rgba(255, 255, 255, 0.76);
    --white-glass-strong: rgba(255, 255, 255, 0.9);
    --brand: #118c42;
    --brand-dark: #0d5f2e;
    --brand-soft: rgba(17, 140, 66, 0.12);
    --blue: #102e20;
    --blue-soft: rgba(16, 46, 32, 0.12);
    --green: #1f9d64;
    --green-soft: rgba(31, 157, 100, 0.12);
    --red: #e24a4a;
    --red-soft: rgba(226, 74, 74, 0.12);
    --shadow-1: 0 24px 60px rgba(15, 23, 42, 0.14);
    --shadow-2: 0 12px 26px rgba(15, 23, 42, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    margin: 0;
    font-family: "Sora", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(1100px 480px at 0% -10%, rgba(17, 140, 66, 0.22), transparent 60%),
        radial-gradient(900px 420px at 100% 10%, rgba(16, 46, 32, 0.18), transparent 58%),
        linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

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

button,
a,
input,
textarea,
select {
    touch-action: manipulation;
}

.liquid-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(900px 420px at 10% -10%, rgba(17, 140, 66, 0.18), transparent 62%),
        radial-gradient(700px 360px at 100% 10%, rgba(16, 46, 32, 0.14), transparent 58%),
        radial-gradient(640px 340px at 30% 100%, rgba(255, 255, 255, 0.35), transparent 58%);
    animation: liquidShift 16s ease-in-out infinite;
    pointer-events: none;
}

.glass-panel,
.glass-card,
.glass-nav,
.loading-shell {
    background: var(--white-glass);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-1);
}

.glass-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2);
}

.glass-nav {
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.glass-input,
.glass-textarea,
.glass-select {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    border-radius: var(--radius-md);
    padding: 13px 16px;
    font: inherit;
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.glass-input:focus,
.glass-textarea:focus,
.glass-select:focus {
    outline: none;
    border-color: rgba(17, 140, 66, 0.45);
    box-shadow: 0 0 0 4px rgba(17, 140, 66, 0.12);
}

.glass-textarea {
    min-height: 112px;
    resize: vertical;
}

.icon-shell {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.soft-pill,
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.76);
}

.status-pill.warning {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.status-pill.success {
    background: var(--green-soft);
    color: var(--green);
}

.status-pill.danger {
    background: var(--red-soft);
    color: var(--red);
}

.status-pill.info {
    background: var(--blue-soft);
    color: var(--blue);
}

.btn-primary,
.btn-secondary,
.btn-danger,
.btn-ghost,
.btn-chip {
    border: 0;
    cursor: pointer;
    font: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.btn-primary:active,
.btn-secondary:active,
.btn-danger:active,
.btn-ghost:active,
.btn-chip:active {
    transform: translateY(1px) scale(0.99);
}

.btn-primary,
.btn-secondary,
.btn-danger,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 18px;
    padding: 14px 18px;
    font-weight: 700;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, #37c66f 100%);
    box-shadow: 0 14px 28px rgba(17, 140, 66, 0.22);
}

.btn-secondary {
    color: #fff;
    background: linear-gradient(135deg, #102e20 0%, #1f7a42 100%);
    box-shadow: 0 14px 28px rgba(16, 46, 32, 0.2);
}

.btn-danger {
    color: #fff;
    background: linear-gradient(135deg, #dc4343 0%, #f06a6a 100%);
    box-shadow: 0 14px 28px rgba(220, 67, 67, 0.22);
}

.btn-ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
}

.btn-chip {
    padding: 11px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    font-weight: 700;
    text-align: left;
}

.btn-chip.is-active {
    background: linear-gradient(135deg, rgba(17, 140, 66, 0.16) 0%, rgba(255, 255, 255, 0.94) 100%);
    border-color: rgba(17, 140, 66, 0.32);
    box-shadow: 0 10px 20px rgba(17, 140, 66, 0.12);
}

.btn-primary:disabled,
.btn-secondary:disabled,
.btn-danger:disabled,
.btn-ghost:disabled,
.btn-chip:disabled {
    cursor: not-allowed;
}

.mobile-frame-hero {
    display: none;
}

.landing-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(720px 420px at 78% 22%, rgba(122, 187, 0, 0.26), transparent 62%),
        radial-gradient(760px 460px at 12% 70%, rgba(17, 140, 66, 0.22), transparent 66%),
        linear-gradient(135deg, #050705 0%, #0a120d 42%, #111827 100%);
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 70% 40%, black, transparent 72%);
    pointer-events: none;
}

.landing-hero-bg span {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.62;
    animation: landingOrb 14s ease-in-out infinite;
}

.landing-hero-bg span:nth-child(1) {
    width: 280px;
    height: 280px;
    right: 9%;
    top: 16%;
    background: rgba(122, 187, 0, 0.44);
}

.landing-hero-bg span:nth-child(2) {
    width: 220px;
    height: 220px;
    left: 8%;
    bottom: 18%;
    background: rgba(17, 140, 66, 0.38);
    animation-delay: -4s;
}

.landing-hero-bg span:nth-child(3) {
    width: 180px;
    height: 180px;
    left: 45%;
    top: 10%;
    background: rgba(255, 255, 255, 0.13);
    animation-delay: -8s;
}

.landing-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.landing-copy {
    padding-top: clamp(38px, 7vh, 86px);
    animation: landingRise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(122, 187, 0, 0.32);
    border-radius: 999px;
    padding: 10px 14px;
    color: #bef264;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.landing-copy h1 {
    margin: 26px 0 0;
    max-width: 880px;
    font-size: clamp(4.4rem, 14vw, 10.5rem);
    line-height: 0.78;
    font-weight: 900;
    letter-spacing: -0.09em;
    text-transform: uppercase;
    text-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.landing-copy h1 span {
    display: block;
    color: #9bd918;
    letter-spacing: -0.075em;
}

.landing-title-mobile {
    display: none !important;
}

.landing-subtitle {
    max-width: 680px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
    line-height: 1.75;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.landing-primary,
.landing-secondary {
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 22px;
    padding: 0 24px;
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.landing-primary {
    color: #071107;
    background: linear-gradient(135deg, #bef264 0%, #7abb00 55%, #4d7c0f 100%);
    box-shadow: 0 22px 44px rgba(122, 187, 0, 0.28);
    text-transform: uppercase;
}

.landing-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.landing-primary:active,
.landing-secondary:active {
    transform: translateY(2px) scale(0.99);
}

.landing-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
    margin-top: 32px;
}

.landing-metrics div {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.landing-metrics strong,
.landing-metrics span {
    display: block;
}

.landing-metrics strong {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.landing-metrics span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 700;
}

.landing-food-stage {
    position: relative;
    min-height: clamp(430px, 60vh, 720px);
    animation: landingRise 0.9s 0.12s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.food-glow {
    position: absolute;
    inset: 18% 12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 187, 0, 0.42), transparent 67%);
    filter: blur(36px);
}

.hero-food {
    position: absolute;
    display: block;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    will-change: transform;
}

.hero-food-main {
    inset: 10% 7% auto auto;
    width: min(72%, 560px);
    aspect-ratio: 1;
    border-radius: 48px;
    animation: heroFloat 7s ease-in-out infinite;
}

.hero-food-float {
    width: min(34%, 230px);
    aspect-ratio: 1;
    border-radius: 32px;
    animation: heroFloat 6.4s ease-in-out infinite;
}

.hero-food-top {
    top: 3%;
    left: 6%;
    animation-delay: -2s;
}

.hero-food-left {
    left: 0;
    bottom: 18%;
    animation-delay: -4s;
}

.hero-food-bottom {
    right: 1%;
    bottom: 4%;
    animation-delay: -1s;
}

.landing-price-card {
    position: absolute;
    right: 12%;
    bottom: 17%;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
    border-radius: 24px;
    padding: 16px;
    color: #071107;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.landing-price-card i {
    display: inline-flex;
    height: 44px;
    width: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #071107;
    background: #9bd918;
}

.landing-price-card strong,
.landing-price-card span {
    display: block;
}

.landing-price-card strong {
    font-size: 18px;
    font-weight: 900;
}

.landing-price-card span {
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.hero-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 22px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.75), transparent 35%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 248, 241, 0.82) 45%, rgba(240, 247, 255, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-1);
}

.hero-shell::after {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    height: 220px;
    width: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 140, 66, 0.14), transparent 66%);
}

.hero-utility-row {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    width: 100%;
    margin-top: 6px;
}

.hero-ticker {
    --ticker-item-height: 24px;
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.hero-ticker-viewport {
    height: var(--ticker-item-height);
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.hero-ticker-track {
    display: flex;
    flex-direction: column;
    animation: heroTicker 11s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.hero-ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: var(--ticker-item-height);
    min-width: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.hero-ticker-item i {
    color: var(--brand);
    font-size: 13px;
}

.hero-ticker-item span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.utility-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.utility-search-field {
    width: 0;
    min-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.28s ease, opacity 0.22s ease;
}

.utility-search.is-open .utility-search-field {
    width: min(32vw, 310px);
    opacity: 1;
}

.utility-search-input {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    border: 0;
    background: transparent;
    padding: 0 10px 0 0;
    font: inherit;
    font-size: 15px;
    color: var(--ink);
}

.utility-search-input:focus {
    outline: none;
}

.utility-search-input::placeholder {
    color: #94a3b8;
}

.toolbar-circle-btn,
.toolbar-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 50px;
    height: 50px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, width 0.28s ease;
}

.toolbar-circle-btn {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.toolbar-cart-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, #37c66f 100%);
    box-shadow: 0 16px 28px rgba(17, 140, 66, 0.24);
}

.toolbar-circle-btn:active,
.toolbar-cart-btn:active {
    transform: translateY(1px) scale(0.99);
}

.toolbar-label {
    white-space: nowrap;
}

.toolbar-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    color: inherit;
    font-size: 13px;
    font-weight: 800;
}

.toolbar-count-light {
    background: rgba(17, 140, 66, 0.14);
    color: var(--brand-dark);
}

.floating-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-dark);
    background: rgba(17, 140, 66, 0.1);
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.product-media {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    min-height: 210px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.6), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 248, 253, 0.92));
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.36s ease;
}

.product-card {
    animation: productReveal 0.52s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: var(--product-delay, 0ms);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card:active {
    transform: scale(0.985);
}

.product-card:hover .product-media img {
    transform: scale(1.045) translateY(-2px);
}

.card-ring {
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.4);
}

.metric-card {
    border-radius: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-2);
}

.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(248, 250, 255, 0.86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.app-screen {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
}

.loading-shell {
    width: min(100%, 420px);
    border-radius: 30px;
    padding: 28px;
    text-align: center;
}

.loading-spinner {
    height: 62px;
    width: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 4px solid rgba(17, 140, 66, 0.12);
    border-top-color: var(--brand);
    animation: spin 1s linear infinite;
}

.loading-bar {
    position: relative;
    overflow: hidden;
    height: 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
}

.loading-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 38%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand), #61d889);
    animation: loadingBar 1.6s ease-in-out infinite;
}

.skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.45) 0%, rgba(230, 236, 245, 0.95) 50%, rgba(255, 255, 255, 0.45) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.4s ease-in-out infinite;
}

.safe-top-padding {
    padding-top: env(safe-area-inset-top, 12px);
}

.safe-bottom-padding {
    padding-bottom: env(safe-area-inset-bottom, 12px);
}

.category-rail {
    position: relative;
    z-index: 4;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    touch-action: pan-x;
    scroll-padding-inline: 12px 96px;
}

.category-strip {
    width: max-content;
    min-width: max-content;
    padding-right: max(84px, env(safe-area-inset-right, 0px) + 72px);
}

.category-strip > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.sheet-overlay {
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}

.sheet-panel,
.configurator-sheet {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.cart-dock {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
}

.config-stepper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.config-step {
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    text-align: left;
    scroll-snap-align: start;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.config-step.is-active {
    background: linear-gradient(135deg, rgba(17, 140, 66, 0.18), rgba(255, 255, 255, 0.96));
    border-color: rgba(17, 140, 66, 0.32);
    box-shadow: 0 14px 30px rgba(17, 140, 66, 0.14);
}

.config-step.is-done .config-step-icon {
    color: #fff;
    background: var(--brand);
}

.config-step-icon {
    height: 42px;
    width: 42px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--brand);
    background: rgba(17, 140, 66, 0.1);
}

.config-step-text {
    min-width: 0;
}

.config-step-text span,
.config-step-text strong {
    display: block;
}

.config-step-text span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.config-step-text strong {
    max-width: 88px;
    overflow: hidden;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.config-progress {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
}

.config-progress div {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand), #7abb00);
    transition: width 0.28s ease;
}

.config-step-shell {
    min-height: 250px;
    animation: configStepIn 0.26s ease both;
}

.seo-local-section .glass-card {
    border-color: rgba(17, 140, 66, 0.12);
    background:
        radial-gradient(circle at 8% 10%, rgba(17, 140, 66, 0.08), transparent 32%),
        rgba(255, 255, 255, 0.76);
}

.configurator-head {
    border-radius: 26px;
}

.config-choice-card {
    width: 100%;
    cursor: pointer;
    touch-action: manipulation;
}

.config-choice-card:active {
    transform: scale(0.985);
}

.order-stage {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    font-weight: 700;
    text-align: center;
}

.order-stage.is-active {
    color: var(--blue);
    border-color: rgba(10, 132, 255, 0.28);
    background: rgba(10, 132, 255, 0.1);
}

.backoffice-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 24px;
}

@media (min-width: 641px) {
    .utility-search-field {
        width: min(34vw, 320px);
        opacity: 1;
    }
}

@media (max-width: 960px) {
    .backoffice-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --radius-xl: 24px;
        --radius-lg: 20px;
        --radius-md: 14px;
    }

    .mobile-shell {
        padding-bottom: calc(7rem + env(safe-area-inset-bottom, 0px));
    }

    .mobile-frame-hero {
        display: block;
        position: relative;
        height: 390vh;
        min-height: 2400px;
        background: #020402;
    }

    .mobile-frame-hero.is-disabled {
        display: none;
    }

    .mobile-frame-sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        height: 100svh;
        overflow: hidden;
        background: #020402;
        isolation: isolate;
    }

    .mobile-frame-poster,
    .mobile-frame-canvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-frame-poster {
        z-index: 0;
        opacity: 1;
        transition: opacity 0.24s ease;
    }

    .mobile-frame-canvas {
        z-index: 1;
        display: block;
        opacity: 0;
        transition: opacity 0.24s ease;
    }

    .mobile-frame-hero.is-ready .mobile-frame-canvas {
        opacity: 1;
    }

    .mobile-frame-hero.is-ready .mobile-frame-poster {
        opacity: 0;
    }

    .mobile-frame-vignette {
        position: absolute;
        inset: 0;
        z-index: 2;
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 28%, transparent 56%, rgba(0, 0, 0, 0.68) 100%),
            radial-gradient(circle at 50% 42%, transparent 0%, transparent 46%, rgba(0, 0, 0, 0.48) 100%);
        pointer-events: none;
    }

    .mobile-frame-copy {
        position: absolute;
        inset: 0;
        z-index: 3;
        color: #fff;
        pointer-events: none;
    }

    .mobile-frame-topbar {
        position: absolute;
        left: 14px;
        right: 14px;
        top: calc(14px + env(safe-area-inset-top, 0px));
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .mobile-frame-status-group {
        display: flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        min-width: 0;
    }

    .mobile-frame-pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
        border-radius: 999px;
        padding: 8px 12px 8px 8px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(0, 0, 0, 0.36);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .mobile-frame-pill span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-frame-pill img {
        height: 32px;
        width: 32px;
        border-radius: 11px;
        object-fit: cover;
    }

    .mobile-frame-status {
        flex: 0 0 auto;
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        column-gap: 7px;
        row-gap: 1px;
        border-radius: 18px;
        padding: 8px 10px;
        min-width: 112px;
        color: #fff;
        background: rgba(0, 0, 0, 0.38);
        border: 1px solid rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
    }

    .mobile-frame-status-dot {
        grid-row: 1 / span 2;
        height: 10px;
        width: 10px;
        border-radius: 999px;
        background: #94a3b8;
        box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.12);
    }

    .mobile-frame-status-icon {
        grid-row: 1 / span 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 20px;
        width: 20px;
        border-radius: 999px;
        color: #fff;
        background: rgba(255, 255, 255, 0.12);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
        font-size: 10px;
    }

    .mobile-frame-status span:not(.mobile-frame-status-dot) {
        font-size: 11px;
        font-weight: 950;
        letter-spacing: 0.08em;
        line-height: 1;
        text-transform: uppercase;
    }

    .mobile-frame-status small {
        color: rgba(255, 255, 255, 0.7);
        font-size: 9px;
        font-weight: 850;
        line-height: 1.15;
        white-space: nowrap;
    }

    .mobile-frame-status.is-open .mobile-frame-status-dot {
        background: #22c55e;
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16), 0 0 18px rgba(34, 197, 94, 0.55);
    }

    .mobile-frame-status.is-open .mobile-frame-status-icon {
        background: rgba(34, 197, 94, 0.24);
        box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.32), 0 0 18px rgba(34, 197, 94, 0.32);
    }

    .mobile-frame-status.is-closed .mobile-frame-status-dot {
        background: #ef4444;
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.16), 0 0 18px rgba(239, 68, 68, 0.45);
    }

    .mobile-frame-status.is-closed .mobile-frame-status-icon {
        background: rgba(239, 68, 68, 0.22);
        box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.32), 0 0 18px rgba(239, 68, 68, 0.24);
    }

    .mobile-frame-story {
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100px + env(safe-area-inset-top, 0px));
        max-width: 330px;
        transition: top 0.34s ease, bottom 0.34s ease, transform 0.34s ease, text-align 0.24s ease;
        animation: mobileStoryIn 0.36s ease both;
    }

    .mobile-frame-story.story-middle {
        top: 48%;
        transform: translateY(-50%);
    }

    .mobile-frame-story.story-bottom {
        top: auto;
        bottom: calc(108px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-frame-story.story-right {
        left: auto;
        text-align: right;
    }

    .mobile-frame-story.story-right h2,
    .mobile-frame-story.story-right p {
        margin-left: auto;
    }

    .mobile-frame-story.story-center {
        left: 20px;
        right: 20px;
        margin-inline: auto;
        text-align: center;
    }

    .mobile-frame-story.story-center h2,
    .mobile-frame-story.story-center p {
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-frame-kicker {
        display: inline-flex;
        margin: 0 0 12px;
        border-radius: 999px;
        padding: 7px 10px;
        color: #bef264;
        background: rgba(0, 0, 0, 0.32);
        border: 1px solid rgba(190, 242, 100, 0.18);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        font-size: 10px;
        font-weight: 950;
        letter-spacing: 0.18em;
        line-height: 1;
        text-transform: uppercase;
        text-shadow: none;
    }

    .mobile-frame-story h2 {
        max-width: 9ch;
        margin-top: 0;
        font-size: clamp(3rem, 15vw, 5.3rem);
        line-height: 0.86;
        font-weight: 950;
        letter-spacing: -0.09em;
        text-transform: uppercase;
        text-shadow: 0 18px 56px rgba(0, 0, 0, 0.46);
    }

    .mobile-frame-story p {
        max-width: 310px;
        margin-top: 14px;
        color: rgba(255, 255, 255, 0.76);
        font-size: 14px;
        font-weight: 650;
        line-height: 1.55;
        text-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
    }

    .mobile-frame-bottom {
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: calc(18px + env(safe-area-inset-bottom, 0px));
        z-index: 3;
        display: grid;
        gap: 12px;
        color: #fff;
    }

    .mobile-frame-progress {
        height: 7px;
        overflow: hidden;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.16);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    }

    .mobile-frame-progress div {
        width: 0%;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, #7abb00, #bef264);
        transition: width 0.12s linear;
    }

    .mobile-frame-hint {
        justify-self: center;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border-radius: 999px;
        padding: 10px 14px;
        color: rgba(255, 255, 255, 0.78);
        background: rgba(0, 0, 0, 0.34);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        animation: mobileFrameHint 1.4s ease-in-out infinite;
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .mobile-frame-hint.is-hidden {
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
    }

    .landing-hero {
        min-height: auto;
        align-items: flex-start;
        overflow: hidden;
        contain: paint;
    }

    .landing-hero-inner {
        display: grid;
        gap: 18px;
        width: 100%;
        max-width: 100vw;
        padding-top: 22px;
        padding-bottom: 22px;
        overflow: hidden;
    }

    .landing-copy {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: calc(100vw - 32px);
        margin-inline: auto;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 28px;
        background: rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    }

    .landing-eyebrow {
        max-width: calc(100vw - 72px);
        padding: 8px 11px;
        overflow: hidden;
        font-size: clamp(8px, 2.7vw, 10px);
        letter-spacing: 0.1em;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .landing-copy h1 {
        width: 100%;
        max-width: 100%;
        margin-top: 16px;
        overflow: hidden;
        font-size: clamp(3.1rem, 17.4vw, 4.72rem);
        line-height: 0.82;
        letter-spacing: -0.095em;
        overflow-wrap: anywhere;
    }

    .landing-title-desktop {
        display: none !important;
    }

    .landing-title-mobile {
        display: block !important;
        font-size: 0.9em;
        letter-spacing: -0.08em !important;
    }

    .landing-subtitle {
        margin-top: 16px;
        max-width: 100%;
        overflow: hidden;
        font-size: clamp(0.86rem, 4vw, 0.98rem);
        line-height: 1.42;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    .landing-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .landing-primary,
    .landing-secondary {
        min-height: 54px;
        border-radius: 18px;
        padding-inline: 18px;
        max-width: 100%;
        overflow: hidden;
        white-space: nowrap;
    }

    .landing-secondary {
        background: rgba(255, 255, 255, 0.1);
    }

    .landing-metrics {
        display: flex;
        gap: 10px;
        margin: 16px -18px 0;
        padding: 0 18px 2px;
        max-width: calc(100vw - 32px);
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .landing-metrics div {
        min-width: 156px;
        padding: 12px;
        border-radius: 18px;
        scroll-snap-align: start;
    }

    .landing-metrics strong {
        font-size: 15px;
    }

    .landing-metrics span {
        font-size: 10.5px;
    }

    .landing-food-stage {
        width: 100%;
        max-width: 100vw;
        min-height: 250px;
        margin-top: -2px;
        overflow: hidden;
    }

    .hero-food-main {
        width: min(68vw, 270px);
        left: 50%;
        right: auto;
        top: 8px;
        transform: translateX(-50%);
        border-radius: 30px;
        animation: none;
    }

    .hero-food-float {
        width: min(29vw, 118px);
        border-radius: 20px;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    }

    .hero-food-top {
        top: 12px;
        left: 4%;
    }

    .hero-food-left {
        left: 5%;
        bottom: 18px;
    }

    .hero-food-bottom {
        right: 5%;
        bottom: 10px;
    }

    .landing-price-card {
        right: 50%;
        bottom: 0;
        transform: translateX(50%);
        width: min(86vw, 292px);
        max-width: calc(100vw - 42px);
        padding: 12px;
        border-radius: 20px;
    }

    .landing-price-card i {
        height: 38px;
        width: 38px;
        border-radius: 13px;
    }

    .landing-price-card strong {
        font-size: 15px;
    }

    .landing-price-card span {
        font-size: 11px;
    }

    .glass-nav {
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    }

    .mobile-header-shell .mobile-hero,
    .mobile-header-shell .hero-head,
    .mobile-header-shell .hero-logo,
    .mobile-header-shell .hero-title,
    .mobile-header-shell .hero-utility-row,
    .mobile-header-shell .hero-ticker,
    .mobile-header-shell .hero-ticker-item,
    .mobile-header-shell .hero-actions,
    .mobile-header-shell .utility-search,
    .mobile-header-shell .utility-search-field,
    .mobile-header-shell .toolbar-circle-btn,
    .mobile-header-shell .toolbar-cart-btn,
    .mobile-header-shell .category-rail,
    .mobile-header-shell .btn-chip {
        transition:
            padding 0.28s ease,
            margin 0.28s ease,
            gap 0.28s ease,
            opacity 0.24s ease,
            max-height 0.28s ease,
            min-height 0.28s ease,
            width 0.28s ease,
            height 0.28s ease,
            border-radius 0.28s ease,
            font-size 0.28s ease,
            line-height 0.28s ease,
            transform 0.28s ease,
            box-shadow 0.28s ease;
    }

    .mobile-hero {
        padding: 12px;
        border-radius: 24px;
    }

    .hero-shell::after {
        inset: auto -54px -54px auto;
        height: 156px;
        width: 156px;
    }

    .hero-head {
        align-items: center;
        gap: 10px;
    }

    .hero-title {
        max-width: 14ch;
        font-size: clamp(1.56rem, 6.4vw, 2rem);
        line-height: 0.94;
        letter-spacing: -0.055em;
    }

    .hero-utility-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 9px;
        margin-top: 10px;
    }

    .hero-ticker {
        --ticker-item-height: 22px;
        max-width: 100%;
        min-width: 0;
        padding: 8px 10px;
    }

    .hero-ticker-item {
        gap: 8px;
        font-size: 11.5px;
    }

    .hero-actions {
        display: grid;
        grid-auto-flow: column;
        gap: 8px;
    }

    .utility-search {
        padding: 3px;
        border-radius: 18px;
    }

    .utility-search.is-open .utility-search-field {
        width: min(46vw, 176px);
    }

    .utility-search-input {
        min-height: 38px;
        padding: 0 8px 0 0;
        font-size: 16px;
    }

    .toolbar-circle-btn,
    .toolbar-cart-btn {
        min-width: 46px;
        height: 46px;
        padding: 0 12px;
        border-radius: 17px;
    }

    .toolbar-label {
        display: none;
    }

    .toolbar-count {
        min-width: 24px;
        height: 24px;
        padding: 0 8px;
        font-size: 12px;
    }

    .hero-meta {
        margin-top: 12px;
        gap: 8px;
        max-height: 120px;
        overflow: hidden;
    }

    .hero-meta > * {
        min-width: 0;
    }

    .hero-meta .soft-pill {
        max-width: 100%;
        padding: 8px 11px;
        font-size: 11px;
        letter-spacing: 0.02em;
    }

    .hero-meta .soft-pill span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-search-block {
        gap: 12px;
    }

    .hero-search {
        width: 100%;
    }

    .hero-search .glass-input {
        min-height: 50px;
    }

    .hero-toolbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 12px;
    }

    .hero-toolbar > * {
        width: 100%;
        min-width: 0;
    }

    .category-rail {
        margin: 10px -6px 0;
        padding-bottom: 2px;
    }

    .category-strip {
        gap: 8px;
        padding-inline: 6px max(96px, calc(env(safe-area-inset-right, 0px) + 78px));
    }

    .soft-pill,
    .status-pill {
        padding: 8px 11px;
        font-size: 11px;
        letter-spacing: 0.02em;
    }

    .btn-primary,
    .btn-secondary,
    .btn-danger,
    .btn-ghost {
        min-height: 50px;
        padding: 13px 15px;
        border-radius: 16px;
    }

    .btn-chip {
        min-height: 42px;
        padding: 9px 12px;
        border-radius: 15px;
        font-size: 13px;
        white-space: nowrap;
    }

    .product-card {
        padding: 12px;
        border-radius: 26px;
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
    }

    .product-card h3 {
        font-size: 1.18rem;
        line-height: 1.2;
    }

    .product-media {
        min-height: 150px;
        border-radius: 22px;
        background:
            radial-gradient(circle at top right, rgba(17, 140, 66, 0.08), transparent 45%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
    }

    .product-card .product-media + div {
        margin-top: 12px;
    }

    .product-card .product-media img {
        transform: translateZ(0);
    }

    .product-card p {
        line-height: 1.52;
    }

    .product-card .soft-pill {
        padding: 7px 10px;
    }

    .product-card .btn-primary {
        min-width: 132px;
        min-height: 54px;
        border-radius: 20px;
        font-size: 0.98rem;
        box-shadow: 0 16px 34px rgba(17, 140, 66, 0.2);
    }

    .icon-shell {
        height: 38px;
        width: 38px;
    }

    .metric-card {
        padding: 16px;
        border-radius: 20px;
    }

    .loading-overlay {
        align-items: flex-end;
        padding: max(16px, env(safe-area-inset-top, 0px)) 14px calc(18px + env(safe-area-inset-bottom, 0px));
    }

    .loading-shell {
        width: 100%;
        border-radius: 26px;
        padding: 24px 18px;
    }

    .cart-dock {
        width: calc(100% - 0.75rem);
    }

    .cart-dock-button {
        border-radius: 24px;
        padding: 14px 16px;
    }

    .checkout-shell {
        padding-top: 12px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .checkout-screen .glass-card,
    .success-screen .glass-card {
        border-radius: 20px;
    }

    .success-screen .glass-card {
        padding: 28px 18px;
    }

    .success-screen h2 {
        font-size: 2rem;
        line-height: 1.04;
    }

    .sheet-overlay {
        padding: 0;
    }

    .sheet-panel {
        width: 100%;
        max-width: none;
        max-height: calc(100dvh - env(safe-area-inset-top, 0px) - 6px);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
        padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
    }

    .configurator-sheet {
        max-height: calc(100dvh - env(safe-area-inset-top, 0px) - 4px);
        overflow-y: auto;
        padding: 0;
        border-radius: 28px 28px 0 0;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 242, 0.96)),
            radial-gradient(circle at top left, rgba(17, 140, 66, 0.12), transparent 42%);
    }

    .configurator-content {
        padding: 0 14px calc(12px + env(safe-area-inset-bottom, 0px));
    }

    .configurator-head {
        position: sticky;
        top: 0;
        z-index: 12;
        margin: 0 -14px;
        padding: 12px 14px 10px;
        border-radius: 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
        background: rgba(250, 253, 248, 0.9);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .configurator-product-image {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        padding: 6px;
    }

    .configurator-head .text-sm.uppercase {
        font-size: 9px;
        letter-spacing: 0.14em;
    }

    .configurator-title {
        margin-top: 4px;
        font-size: clamp(1.18rem, 5.8vw, 1.58rem);
        line-height: 0.98;
        letter-spacing: -0.04em;
    }

    .configurator-description {
        display: -webkit-box;
        margin-top: 5px;
        overflow: hidden;
        color: rgba(71, 85, 105, 0.82);
        font-size: 12px;
        line-height: 1.35;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .configurator-body {
        margin-top: 10px;
        padding-bottom: 6px;
    }

    .configurator-body > * + * {
        margin-top: 12px;
    }

    .config-step {
        min-width: 92px;
        max-width: 118px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 7px;
        border-radius: 16px;
        padding: 7px 9px;
    }

    .config-stepper {
        position: static;
        z-index: 1;
        margin: 0 -14px;
        padding: 9px 14px 10px;
        background: linear-gradient(180deg, rgba(250, 253, 248, 0.95), rgba(250, 253, 248, 0.78));
    }

    .config-step-icon {
        width: 28px;
        height: 28px;
        border-radius: 12px;
        font-size: 12px;
    }

    .config-step-text span {
        display: none;
    }

    .config-step-text strong {
        display: -webkit-box;
        max-width: 76px;
        overflow: hidden;
        text-align: left;
        white-space: normal;
        font-size: 10.5px;
        line-height: 1.12;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .config-progress {
        height: 6px;
        margin-top: -5px;
    }

    .config-step-shell {
        min-height: auto;
        border-radius: 22px;
        padding: 13px !important;
    }

    .config-step-shell > .flex:first-child {
        align-items: flex-start;
        gap: 10px;
    }

    .config-step-shell h4 {
        font-size: 1rem;
        line-height: 1.15;
    }

    .config-step-shell .status-pill {
        padding: 6px 8px;
        font-size: 10px;
    }

    .config-step-shell .icon-shell {
        width: 34px;
        height: 34px;
        border-radius: 13px;
    }

    .config-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 10px;
    }

    .config-choice-card {
        min-height: 78px;
        border-radius: 18px !important;
        padding: 10px !important;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    }

    .config-choice-card p.font-bold {
        font-size: 0.86rem;
        line-height: 1.14;
    }

    .config-choice-card p.text-xs {
        margin-top: 4px;
        font-size: 0.68rem;
        line-height: 1.28;
    }

    .config-choice-card .icon-shell {
        width: 30px !important;
        height: 30px !important;
        border-radius: 11px;
        font-size: 12px;
    }

    .config-choice-item-dupe {
        grid-column: 1 / -1;
    }

    .config-choice-card-dupe {
        min-height: auto;
        padding: 11px 12px !important;
    }

    .config-choice-card-dupe > .flex {
        align-items: center;
        gap: 8px;
    }

    .config-choice-card-dupe .icon-shell {
        display: none;
    }

    .config-choice-card-dupe .config-choice-copy {
        padding-right: 6px;
    }

    .config-choice-card-dupe p.font-bold {
        font-size: 0.92rem;
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .config-choice-card-dupe p.text-xs {
        font-size: 0.72rem;
        line-height: 1.22;
    }

    .config-quantity-controls {
        gap: 6px !important;
    }

    .config-choice-card-dupe .btn-ghost,
    .config-choice-card-dupe .btn-primary {
        display: flex;
        width: 38px !important;
        min-width: 38px;
        height: 38px !important;
        min-height: 38px;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
    }

    .config-quantity-count {
        min-width: 42px !important;
        padding: 8px 10px !important;
        font-size: 0.9rem !important;
    }

    .config-choice-image {
        height: 82px;
    }

    .config-choice-card .space-y-2 {
        padding: 10px !important;
    }

    .config-choice-card a {
        display: none;
    }

    .config-summary {
        border-radius: 20px;
        padding: 12px !important;
    }

    .config-summary .text-right {
        text-align: left;
    }

    .config-summary .text-3xl {
        font-size: 1.55rem;
    }

    .config-actions {
        position: sticky;
        bottom: 0;
        z-index: 12;
        flex-direction: row !important;
        margin: 0 -14px calc(-12px - env(safe-area-inset-bottom, 0px));
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid rgba(148, 163, 184, 0.2);
        background: rgba(250, 253, 248, 0.94);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .config-actions .btn-ghost,
    .config-actions .btn-secondary,
    .config-actions .btn-primary {
        flex: 1 1 0;
        min-height: 48px;
        justify-content: center;
        border-radius: 16px;
        padding: 11px 10px;
        font-size: 0.88rem;
        white-space: nowrap;
    }

    .config-actions .btn-ghost:first-child {
        flex: 0 0 48px;
        padding-inline: 0;
    }

    .config-actions .btn-ghost:first-child span {
        display: none;
    }

    .seo-local-section {
        padding-top: 0;
    }

    .seo-local-section .glass-card {
        border-radius: 22px;
        padding: 18px !important;
    }

    .seo-local-section h2 {
        font-size: 1.22rem;
        line-height: 1.16;
    }

    .seo-local-section p {
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .mobile-header-compact .mobile-hero {
        padding: 9px 10px 10px;
        border-radius: 18px;
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
    }

    .mobile-header-compact .hero-head {
        gap: 10px;
    }

    .mobile-header-compact .hero-logo {
        width: 38px;
        height: 38px;
        border-radius: 15px;
    }

    .mobile-header-compact .hero-title {
        max-width: 15ch;
        font-size: clamp(1.18rem, 5vw, 1.56rem);
        line-height: 0.92;
    }

    .mobile-header-compact .hero-utility-row {
        margin-top: 10px;
        gap: 8px;
    }

    .mobile-header-compact .hero-ticker {
        --ticker-item-height: 20px;
        padding: 6px 9px;
    }

    .mobile-header-compact .hero-ticker-item {
        gap: 7px;
        font-size: 10.5px;
    }

    .mobile-header-compact .utility-search {
        padding: 2px;
        border-radius: 15px;
    }

    .mobile-header-compact .utility-search.is-open .utility-search-field {
        width: min(40vw, 154px);
    }

    .mobile-header-compact .utility-search-input {
        min-height: 34px;
    }

    .mobile-header-compact .toolbar-circle-btn,
    .mobile-header-compact .toolbar-cart-btn {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        border-radius: 14px;
    }

    .mobile-header-compact .hero-meta {
        max-height: 0;
        margin-top: 0;
        gap: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transform: translateY(-8px);
    }

    .mobile-header-compact .hero-search-block {
        gap: 10px;
    }

    .mobile-header-compact .hero-search .glass-input {
        min-height: 44px;
        padding-top: 11px;
        padding-bottom: 11px;
        border-radius: 15px;
    }

    .mobile-header-compact .hero-toolbar .btn-primary,
    .mobile-header-compact .hero-toolbar .btn-ghost {
        min-height: 44px;
        padding: 11px 13px;
        border-radius: 15px;
    }

    .mobile-header-compact .category-rail {
        margin-top: 8px;
    }

    .mobile-header-compact .btn-chip {
        min-height: 36px;
        padding: 7px 10px;
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .hero-shell {
        padding: 24px;
    }
}

@media (max-width: 380px) {
    .config-choice-card-dupe {
        padding: 10px !important;
    }

    .config-choice-card-dupe p.font-bold {
        font-size: 0.84rem;
    }

    .config-quantity-controls {
        gap: 4px !important;
    }

    .config-choice-card-dupe .btn-ghost,
    .config-choice-card-dupe .btn-primary {
        width: 34px !important;
        min-width: 34px;
        height: 34px !important;
        min-height: 34px;
    }

    .config-quantity-count {
        min-width: 36px !important;
        padding: 7px 8px !important;
    }

    .landing-copy {
        padding: 15px;
        border-radius: 24px;
    }

    .landing-copy h1 {
        font-size: clamp(2.72rem, 15.8vw, 3.72rem);
        letter-spacing: -0.085em;
    }

    .landing-food-stage {
        min-height: 215px;
    }

    .landing-subtitle {
        font-size: 0.88rem;
        -webkit-line-clamp: 3;
    }

    .hero-food-main {
        width: min(72vw, 245px);
        border-radius: 24px;
    }

    .hero-food-top {
        display: none;
    }

    .hero-food-left,
    .hero-food-bottom {
        width: 28vw;
        opacity: 0.88;
    }

    .landing-price-card {
        width: min(88vw, 270px);
    }

    .landing-primary,
    .landing-secondary {
        min-height: 50px;
        font-size: 0.92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-hero-bg span,
    .landing-copy,
    .landing-food-stage,
    .hero-food,
    .config-step-shell,
    .mobile-frame-story,
    .mobile-frame-hint,
    .product-card,
    .hero-ticker-track {
        animation: none;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes liquidShift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -1.5%, 0) scale(1.04);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes heroTicker {
    0%,
    24% {
        transform: translateY(0);
    }
    33%,
    57% {
        transform: translateY(calc(var(--ticker-item-height) * -1));
    }
    66%,
    90% {
        transform: translateY(calc(var(--ticker-item-height) * -2));
    }
    100% {
        transform: translateY(calc(var(--ticker-item-height) * -3));
    }
}

@keyframes landingRise {
    0% {
        opacity: 0;
        transform: translateY(34px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes landingOrb {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(18px, -18px, 0) scale(1.1);
    }
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -18px, 0) rotate(1.8deg);
    }
}

@keyframes configStepIn {
    0% {
        opacity: 0;
        transform: translateY(12px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mobileFrameHint {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

@keyframes mobileStoryIn {
    0% {
        opacity: 0;
        filter: blur(6px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes productReveal {
    0% {
        opacity: 0;
        transform: translateY(22px) scale(0.985);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes loadingBar {
    0% {
        transform: translateX(-120%);
    }
    55% {
        transform: translateX(220%);
    }
    100% {
        transform: translateX(220%);
    }
}
