html {
    scroll-behavior: smooth;
}

body.modal-open {
    overflow: hidden;
}

.lc-hidden {
    display: none !important;
}

.lc-backdrop {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
}

.lc-modal,
.lc-sidepanel {
    position: fixed;
    z-index: 130;
    background: rgb(23 23 23);
    color: white;
    border: 1px solid rgb(38 38 38);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.lc-modal {
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 980px);
    max-height: min(90vh, 90dvh);
    border-radius: 28px;
}

.lc-sidepanel {
    top: 0;
    right: 0;
    width: min(100vw, 460px);
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
}

.lc-toast-wrap {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lc-toast {
    min-width: 240px;
    max-width: 520px;
    padding: 12px 16px;
    border-radius: 14px;
    color: white;
    font-weight: 700;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.lc-toast.success {
    background: rgb(22 163 74);
}

.lc-toast.error {
    background: rgb(220 38 38);
}

.lc-toast.info {
    background: rgb(37 99 235);
}

.lc-product-grid-burgers {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 0 1rem 2rem;
    margin: 0 -1rem;
}

.lc-product-grid-small {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding: 0 1rem 2rem;
    margin: 0 -1rem;
}

.lc-product-card {
    isolation: isolate;
    overflow: hidden;
}

.lc-product-card-media {
    width: 100%;
    overflow: hidden;
    border-radius: 1.75rem;
    background: rgb(245 245 245);
    position: relative;
}

.lc-product-card-media-burger {
    height: 180px;
}

.lc-product-card-media-small {
    height: 150px;
}

.lc-product-card-media-drink {
    background: #ffffff;
}

.lc-product-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.lc-product-card:hover .lc-product-card-image {
    transform: scale(1.03);
}

.lc-product-card-image-drink {
    object-fit: contain;
}

.lc-admin-card {
    background: rgb(23 23 23);
    border: 1px solid rgb(38 38 38);
    border-radius: 16px;
    padding: 1rem;
}

.lc-input,
.lc-select,
.lc-textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgb(64 64 64);
    background: rgb(23 23 23);
    color: white;
    padding: 0.75rem 0.9rem;
}

.lc-input,
.lc-select,
.lc-button {
    min-height: 48px;
}

.lc-input::placeholder,
.lc-textarea::placeholder {
    color: rgb(115 115 115);
}

.lc-input.is-invalid,
.lc-select.is-invalid,
.lc-textarea.is-invalid {
    border-color: rgb(248 113 113);
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.08);
}

.lc-field-error {
    margin-top: 0.45rem;
    font-size: 0.78rem;
    color: rgb(252 165 165);
    line-height: 1.4;
}

.lc-textarea {
    min-height: 120px;
    resize: vertical;
}

.lc-button {
    border: 0;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.lc-button.primary {
    background: rgb(220 38 38);
    color: white;
}

.lc-button.secondary {
    background: rgb(38 38 38);
    color: white;
}

.lc-button.success {
    background: rgb(22 163 74);
    color: white;
}

.lc-button.warning {
    background: rgb(234 179 8);
    color: rgb(10 10 10);
}

.lc-button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.lc-button.is-loading {
    pointer-events: none;
}

.lc-button-spinner {
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: currentColor;
    animation: lc-spin 0.8s linear infinite;
}

@keyframes lc-spin {
    to {
        transform: rotate(360deg);
    }
}

.lc-header-icon-button {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lc-header-cart-button {
    background: rgb(220 38 38);
    box-shadow: 0 14px 36px rgba(220, 38, 38, 0.35);
}

.lc-header-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    border-radius: 9999px;
    background: white;
    color: rgb(220 38 38);
    font-size: 10px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid black;
}

.lc-header-auth-button {
    min-height: 48px;
}

.lc-mobile-user-greeting {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
}

.lc-mobile-user-greeting-label {
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
}

.lc-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    display: inline-block;
}

.lc-order-floating {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 90;
}

.lc-admin-table {
    width: 100%;
    border-collapse: collapse;
}

.lc-admin-table th,
.lc-admin-table td {
    padding: 0.9rem;
    border-bottom: 1px solid rgb(38 38 38);
    text-align: left;
    vertical-align: top;
}

.lc-kanban-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
    gap: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(239, 68, 68, 0.2), transparent 34%),
        linear-gradient(135deg, rgba(23, 23, 23, 0.98), rgba(12, 12, 12, 0.92));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.lc-kanban-overline {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgb(252 165 165);
}

.lc-kanban-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.lc-kanban-stat {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(10, 10, 10, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.lc-kanban-stat span {
    display: block;
    font-size: 0.78rem;
    color: rgb(163 163 163);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lc-kanban-stat strong {
    display: block;
    margin-top: 0.4rem;
    font-size: 1.85rem;
    font-weight: 900;
    color: white;
}

.lc-kanban-board {
    display: grid;
    grid-template-columns: repeat(5, minmax(300px, 1fr));
    gap: 1rem;
    align-items: start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.lc-kanban-column {
    min-height: 68vh;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(23, 23, 23, 0.96), rgba(12, 12, 12, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.lc-kanban-column.is-drop-target {
    border-color: rgba(248, 113, 113, 0.7);
    box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.25), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.lc-kanban-column-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.lc-kanban-column-title {
    font-size: 1rem;
    font-weight: 800;
    color: white;
}

.lc-kanban-column-hint {
    margin-top: 0.25rem;
    font-size: 0.82rem;
    color: rgb(163 163 163);
}

.lc-kanban-column-count {
    min-width: 42px;
    height: 42px;
    padding: 0 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 10, 10, 0.5);
    font-weight: 800;
    color: white;
}

.lc-kanban-dropzone {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-height: 220px;
}

.lc-kanban-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(33, 33, 33, 0.95), rgba(17, 17, 17, 0.95));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    cursor: grab;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lc-kanban-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.lc-kanban-card.is-dragging {
    opacity: 0.72;
    transform: rotate(1deg) scale(0.99);
    cursor: grabbing;
}

.lc-kanban-card-new {
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.12);
}

.lc-kanban-card-late {
    border-color: rgba(248, 113, 113, 0.65);
    box-shadow: 0 18px 36px rgba(220, 38, 38, 0.15);
}

.lc-kanban-card-payment {
    border-color: rgba(250, 204, 21, 0.55);
    box-shadow: 0 18px 36px rgba(202, 138, 4, 0.13);
}

.lc-kanban-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
}

.lc-kanban-chip-new {
    color: rgb(191 219 254);
    background: rgba(37, 99, 235, 0.16);
    border-color: rgba(96, 165, 250, 0.24);
}

.lc-kanban-chip-late {
    color: rgb(254 202 202);
    background: rgba(220, 38, 38, 0.14);
    border-color: rgba(248, 113, 113, 0.24);
}

.lc-kanban-chip-payment {
    color: rgb(254 240 138);
    background: rgba(202, 138, 4, 0.16);
    border-color: rgba(250, 204, 21, 0.24);
}

.lc-kanban-chip-cancelled {
    color: rgb(229 231 235);
    background: rgba(82, 82, 82, 0.3);
    border-color: rgba(163, 163, 163, 0.22);
}

.lc-kanban-empty {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.35);
    color: rgb(115 115 115);
    text-align: center;
}

@media (max-width: 1200px) {
    .lc-kanban-hero {
        grid-template-columns: 1fr;
    }

    .lc-kanban-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .lc-kanban-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.lc-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
    padding: 9rem 1rem 3rem;
}

.lc-hero-slider,
.lc-hero-overlays,
.lc-hero-slide {
    position: absolute;
    inset: 0;
}

.lc-hero-slide {
    opacity: 0;
    transition: opacity 700ms ease;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.02);
}

.lc-hero-slide.is-active {
    opacity: 1;
}

.lc-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 100% 72px, 72px 100%;
    opacity: 0.2;
}

.lc-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255, 137, 53, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 28%, rgba(0, 0, 0, 0.58) 100%);
}

.lc-hero-vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.9);
}

.lc-hero-nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: 72px;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.6rem;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.lc-hero-brand {
    display: inline-flex;
    align-items: center;
    transition: opacity 220ms ease, transform 220ms ease, width 220ms ease, margin 220ms ease;
    transform-origin: left center;
}

.lc-hero-brand-logo {
    display: block;
    width: 138px;
    max-width: 100%;
    height: auto;
}

.lc-hero-nav-links {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
}

.lc-hero-nav-links a,
.lc-hero-mode-button {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 180ms ease, opacity 180ms ease;
}

.lc-hero-nav-links a:hover,
.lc-hero-nav-links a.is-active,
.lc-hero-mode-button:hover {
    color: #fff;
}

.lc-hero-nav-links a.is-active {
    text-decoration: underline;
    text-underline-offset: 0.35rem;
}

.lc-hero-mode-button {
    border: 0;
    background: transparent;
    font-weight: 700;
}

.lc-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 12rem);
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.lc-hero-copy {
    max-width: 760px;
    padding-top: 6rem;
}

.lc-hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.lc-hero-subtitle {
    margin: 1rem auto 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 2vw, 1.45rem);
    line-height: 1.5;
    font-weight: 400;
}

.lc-hero-cta-row {
    margin-top: 2rem;
}

.lc-hero-primary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lc-hero-primary-link:hover {
    opacity: 0.88;
}

.lc-hero-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 2rem;
}

.lc-hero-dot {
    width: 0.75rem;
    height: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 9999px;
    background: transparent;
    transition: all 180ms ease;
}

.lc-hero-dot.is-active {
    background: #fff;
    transform: scale(1.1);
}

.lc-checkout-panel {
    display: flex;
    flex-direction: column;
}

.lc-checkout-header {
    position: sticky;
    top: 0;
    z-index: 2;
}

.lc-checkout-body {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
}

.lc-cart-item {
    align-items: stretch;
}

.lc-cart-item-extras {
    word-break: break-word;
}

.lc-cart-qty button {
    border-radius: 10px;
}

.lc-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lc-checkout-section {
    background: rgba(38, 38, 38, 0.35);
    border: 1px solid rgb(38 38 38);
    border-radius: 18px;
    padding: 1rem;
    display: grid;
    gap: 0.875rem;
}

.lc-checkout-section-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: white;
}

.lc-checkout-section-header p {
    margin: 0.3rem 0 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgb(163 163 163);
}

.lc-checkout-optin {
    min-height: 48px;
}

.lc-checkout-choice-group,
.lc-checkout-change-box,
.lc-saved-address-card {
    display: grid;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgb(64 64 64);
    background: rgba(10, 10, 10, 0.28);
}

.lc-checkout-choice-options {
    display: grid;
    gap: 0.75rem;
}

.lc-checkout-choice-option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 50px;
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    border: 1px solid rgb(64 64 64);
    background: rgb(23 23 23);
    color: white;
    font-weight: 700;
}

.lc-checkout-choice-option.is-active {
    border-color: rgb(239 68 68);
    background: rgba(127, 29, 29, 0.22);
}

.lc-checkout-choice-option input {
    accent-color: rgb(239 68 68);
}

.lc-saved-address-title {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgb(163 163 163);
}

.lc-saved-address-text {
    color: rgb(229 231 235);
    line-height: 1.6;
}

.lc-payment-options {
    display: grid;
    gap: 0.75rem;
}

.lc-payment-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 52px;
    padding: 0.95rem 1rem;
    border: 1px solid rgb(64 64 64);
    border-radius: 16px;
    background: rgb(38 38 38);
    color: white;
    font-weight: 600;
}

.lc-payment-option.is-active {
    border-color: rgb(239 68 68);
    background: rgba(127, 29, 29, 0.25);
}

.lc-payment-option.is-pix.is-active {
    border-color: rgb(34 197 94);
    background: rgba(20, 83, 45, 0.35);
}

.lc-pix-checkout-note {
    display: grid;
    gap: 0.5rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(250, 204, 21, 0.35);
    border-radius: 16px;
    background: rgba(146, 64, 14, 0.18);
}

.lc-pix-checkout-note-title {
    color: rgb(254 240 138);
    font-size: 0.9rem;
    font-weight: 800;
}

.lc-pix-checkout-note-text {
    color: rgb(229 231 235);
    font-size: 0.82rem;
    line-height: 1.5;
}

.lc-pix-payment-card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.22);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.96) 0%, rgba(23, 23, 23, 0.98) 100%);
}

.lc-pix-payment-header {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

.lc-pix-payment-amount {
    color: rgb(229 231 235);
    text-align: center;
    font-size: 0.95rem;
}

.lc-pix-payment-amount strong {
    color: rgb(34 197 94);
    font-size: 1.2rem;
}

.lc-pix-payment-alert {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(250, 204, 21, 0.28);
    background: rgba(146, 64, 14, 0.2);
    color: rgb(254 240 138);
    font-size: 0.86rem;
    line-height: 1.5;
    font-weight: 700;
}

.lc-pix-payment-grid {
    display: grid;
    gap: 1rem;
}

.lc-pix-qr-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgb(38 38 38);
    background: #fff;
}

.lc-pix-qr-image {
    display: block;
    width: min(100%, 220px);
    max-height: 220px;
    object-fit: contain;
}

.lc-pix-qr-placeholder {
    color: rgb(82 82 91);
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 700;
}

.lc-pix-key-block {
    display: grid;
    gap: 0.75rem;
}

.lc-pix-key-label,
.lc-pix-instructions-title {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lc-pix-key-value {
    padding: 0.95rem 1rem;
    border: 1px solid rgb(38 38 38);
    border-radius: 16px;
    background: rgb(10 10 10);
    color: rgb(74 222 128);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    word-break: break-word;
}

.lc-pix-copy-feedback,
.lc-pix-proof-status {
    color: rgb(163 163 163);
    font-size: 0.78rem;
    text-align: center;
}

.lc-pix-instructions {
    display: grid;
    gap: 0.6rem;
    padding: 1rem;
    border: 1px solid rgb(38 38 38);
    border-radius: 18px;
    background: rgba(23, 23, 23, 0.75);
}

.lc-pix-instructions ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
    color: rgb(229 231 235);
    font-size: 0.84rem;
    line-height: 1.5;
}

.lc-checkout-footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem 0 0;
    background: linear-gradient(180deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0.94) 20%, rgba(23, 23, 23, 1) 100%);
}

.lc-checkout-total-card {
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid rgb(38 38 38);
    border-radius: 18px;
    padding: 0.95rem 1rem;
}

.lc-checkout-submit {
    min-height: 56px;
    border-radius: 16px;
    font-size: 1rem;
    box-shadow: 0 18px 40px rgba(22, 163, 74, 0.3);
}

@media (min-width: 768px) {
    .lc-product-grid-burgers,
    .lc-product-grid-small {
        overflow: visible;
        margin: 0;
        padding: 0 0 2rem;
        display: grid;
    }

    .lc-product-grid-burgers {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }

    .lc-product-grid-small {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .lc-pix-payment-grid {
        grid-template-columns: 220px minmax(0, 1fr);
        align-items: center;
    }

    .lc-hero-section {
        padding-top: 8.5rem;
        padding-bottom: 4rem;
    }

    .lc-hero-nav-links {
        display: flex;
    }
}

@media (max-width: 767px) {
    .lc-product-card {
        padding: 1rem;
        border-radius: 2rem;
        overflow: hidden;
    }

    .lc-product-card-media {
        margin-bottom: 0.75rem;
    }

    .lc-product-card-media-burger {
        height: 180px;
    }

    .lc-product-card-media-small {
        height: 150px;
    }

    .lc-product-card-media-drink {
        background: #ffffff;
    }

    .lc-product-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .lc-product-card-image-drink {
        object-fit: contain;
    }

    .lc-modal {
        width: min(94vw, 560px);
        border-radius: 22px;
        max-height: calc(100dvh - 16px);
    }

    .lc-sidepanel {
        width: 100vw;
    }

    .lc-hero-brand.is-hidden-on-scroll {
        opacity: 0;
        transform: scale(0.9);
        width: 0;
        margin: 0;
        overflow: hidden;
        pointer-events: none;
    }

    .lc-hero-nav-shell {
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 0.75rem;
        min-height: 64px;
        padding: 0.75rem 0.9rem;
        border-radius: 1.2rem;
    }

    .lc-hero-brand {
        display: inline-flex;
    }

    .lc-hero-nav-links {
        display: none;
    }

    .lc-hero-brand-logo {
        width: 96px;
    }

    .lc-hero-header-actions {
        width: 100%;
        justify-content: flex-end;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .lc-hero-copy {
        padding-top: 4.5rem;
    }

    .lc-hero-title {
        max-width: 12ch;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.02;
    }

    .lc-hero-subtitle {
        max-width: 280px;
        font-size: 0.98rem;
    }

    .lc-hero-section {
        min-height: 88vh;
        padding: 7.25rem 0.85rem 2rem;
    }

    .lc-hero-content {
        min-height: calc(88vh - 8rem);
    }

    .lc-hero-primary-link {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .lc-header-icon-button {
        width: 44px;
        height: 44px;
    }

    .lc-header-icon-button svg {
        width: 18px;
        height: 18px;
    }

    .lc-header-auth-button {
        min-height: 44px;
        padding: 0 0.95rem;
        font-size: 0.8rem;
    }

    .lc-toast-wrap {
        top: 12px;
        left: 12px;
        right: 12px;
        transform: none;
    }

    .lc-toast {
        min-width: 0;
        width: 100%;
        max-width: none;
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 0.92rem;
    }

    .lc-checkout-header {
        padding: 1rem;
    }

    .lc-checkout-body {
        padding: 1rem;
        gap: 1rem;
    }

    .lc-cart-item {
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .lc-cart-item-media {
        width: 56px;
        height: 56px;
    }

    .lc-cart-qty {
        align-self: center;
    }

    .lc-checkout-form {
        gap: 0.875rem;
    }

    .lc-checkout-section {
        padding: 0.9rem;
        border-radius: 16px;
    }

    .lc-checkout-choice-options {
        grid-template-columns: 1fr;
    }

    .lc-checkout-address-grid {
        grid-template-columns: 1fr 84px;
    }

    .lc-input,
    .lc-select,
    .lc-textarea {
        font-size: 16px;
        padding: 0.85rem 0.9rem;
    }

    .lc-textarea {
        min-height: 96px;
    }

    .lc-checkout-footer {
        margin: 0 -1rem;
        padding: 0.75rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
    }

    .lc-checkout-submit {
        min-height: 54px;
        font-size: 0.98rem;
    }

    #floating-cart-button {
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
    }

    #scroll-top-button {
        right: 12px;
        bottom: calc(84px + env(safe-area-inset-bottom));
        padding: 0.85rem;
    }
}

@media (max-width: 480px) {
    html,
    body {
        overflow-x: hidden;
    }

    .lc-hero-section {
        padding-top: 6.9rem;
    }

    .lc-hero-title {
        max-width: 10ch;
    }

    #menu-section {
        border-top-left-radius: 2rem;
        border-top-right-radius: 2rem;
    }

    #menu-section > div:first-child {
        border-top-left-radius: 2rem;
        border-top-right-radius: 2rem;
    }
}
