/*
 * NICEMENU 'default' public tema stilleri.
 *
 * Eskiden resources/views/themes/default/partials/head.blade.php icinde
 * satir-ici <style> blogu olarak duruyordu; her istekte yeniden gonderiliyordu.
 * Birebir ayni CSS, artik onbelleklenebilir dosya olarak servis ediliyor.
 */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
        margin: 0;
        font-family: var(--menu-font, 'Inter', -apple-system, BlinkMacSystemFont, sans-serif);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        background:
            radial-gradient(circle at top, rgba(59, 130, 246, 0.08), transparent 28%),
            linear-gradient(180deg, #0b0f14 0%, #111722 100%);
        color: #f3f5f8;
        overflow-x: hidden;
    }

    :root {
        --bg-app: #0f131a;
        --bg-shell: #151b26;
        --bg-card: #19202d;
        --bg-card-soft: #20293a;
        --bg-card-hover: #242f43;
        --bg-overlay: rgba(10, 13, 18, 0.82);
        --sticky-header-height: 78px;
        --sticky-header-offset: calc(var(--sticky-header-height) + env(safe-area-inset-top, 0px));
        --text-primary: #f8fafc;
        --text-secondary: #a8b0c3;
        --text-muted: #6d7688;
        --border-color: rgba(255, 255, 255, 0.07);
        --border-light: rgba(255, 255, 255, 0.12);
        --accent: #f8fafc;
        --accent-soft: rgba(255, 255, 255, 0.08);
        --accent-strong: #ffffff;
        --success: #22c55e;
        --danger: #ef4444;
        --warning: #f59e0b;
        --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
        --shell-width: 520px;
        --fixed-action-z-index: 85;
        --survey-action-z-index: var(--fixed-action-z-index);
        --survey-action-size: 54px;
        --survey-action-left: max(18px, calc((100vw - var(--shell-width)) / 2 + 18px));
        --survey-action-bottom: 18px;
        --survey-action-bg: rgba(255,255,255,0.09);
        --survey-action-color: var(--text-primary);
        --survey-action-border: 1px solid rgba(255,255,255,0.12);
        --survey-action-shadow: 0 12px 28px rgba(0,0,0,0.28);
        --survey-action-hover-shadow: 0 16px 34px rgba(0,0,0,0.34);
        --scrollbar-track: rgba(255, 255, 255, 0.06);
        --scrollbar-thumb-solid: #64748b;
        --scrollbar-thumb: linear-gradient(180deg, #94a3b8 0%, #475569 100%);
        --scrollbar-thumb-hover: linear-gradient(180deg, #f8fafc 0%, #94a3b8 100%);
        --scrollbar-border: #0f131a;
    }

    * {
        scrollbar-width: thin;
        scrollbar-color: var(--scrollbar-thumb-solid) var(--scrollbar-track);
    }

    *::-webkit-scrollbar {
        width: 9px;
        height: 9px;
    }

    *::-webkit-scrollbar-track {
        background: var(--scrollbar-track);
        border-radius: 999px;
    }

    *::-webkit-scrollbar-thumb {
        background: var(--scrollbar-thumb);
        border: 2px solid var(--scrollbar-border);
        border-radius: 999px;
    }

    *::-webkit-scrollbar-thumb:hover {
        background: var(--scrollbar-thumb-hover);
    }

    *::-webkit-scrollbar-corner {
        background: transparent;
    }

    .menu-container {
        max-width: var(--shell-width);
        min-height: 100vh;
        margin: 0 auto;
        background: linear-gradient(180deg, #111722 0%, #151b26 100%);
        box-shadow: var(--shadow-soft);
        position: relative;
        overflow: hidden;
    }

    .menu-preloader {
        position: fixed;
        inset: 0;
        z-index: 200;
        display: flex;
        align-items: center;
        justify-content: center;
        background:
            radial-gradient(circle at top, rgba(96, 165, 250, 0.12), transparent 32%),
            rgba(9, 13, 20, 0.92);
        opacity: 1;
        visibility: visible;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .menu-preloader.is-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .menu-preloader__card {
        min-width: min(82vw, 260px);
        padding: 1.2rem 1.15rem;
        border-radius: 22px;
        border: 1px solid var(--border-light);
        background: rgba(20, 28, 41, 0.9);
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .menu-preloader__logo {
        width: 78px;
        height: 58px;
        margin: 0 auto 0.8rem;
        border-radius: 18px;
        overflow: hidden;
        background: rgba(255,255,255,0.05);
        border: 1px solid var(--border-light);
        padding: 0.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-preloader__title {
        margin: 0;
        font-size: 1rem;
        font-weight: 900;
        letter-spacing: -0.03em;
        color: var(--text-primary);
    }

    .menu-preloader__copy {
        margin: 0.4rem 0 0;
        color: var(--text-secondary);
        font-size: 0.78rem;
        line-height: 1.6;
    }

    .menu-preloader__dots {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.38rem;
        margin-top: 0.85rem;
    }

    .menu-preloader__dots span {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: rgba(255,255,255,0.26);
        animation: menuPreloaderPulse 1s infinite ease-in-out;
    }

    .menu-preloader__dots span:nth-child(2) { animation-delay: 0.12s; }
    .menu-preloader__dots span:nth-child(3) { animation-delay: 0.24s; }

    @keyframes menuPreloaderPulse {
        0%, 80%, 100% {
            transform: scale(0.85);
            opacity: 0.4;
        }
        40% {
            transform: scale(1);
            opacity: 1;
        }
    }

    .img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
    .img-contain { width: 100%; height: 100%; object-fit: contain; display: block; }
    .line-clamp-1, .line-clamp-2, .line-clamp-3 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .line-clamp-1 { -webkit-line-clamp: 1; }
    .line-clamp-2 { -webkit-line-clamp: 2; }
    .line-clamp-3 { -webkit-line-clamp: 3; }
    .is-hidden { display: none !important; }
    .no-scrollbar::-webkit-scrollbar { width: 0; height: 0; display: none; }
    .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
    .d-inline-flex { display: inline-flex !important; }
    .justify-content-center { justify-content: center !important; }
    .mt-3 { margin-top: 1rem !important; }
    .mb-3 { margin-bottom: 1rem !important; }

    .sticky-header {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: min(100vw, var(--shell-width));
        min-height: var(--sticky-header-offset);
        box-sizing: border-box;
        z-index: 80;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: calc(env(safe-area-inset-top, 0px) + 0.75rem) 0.95rem 0.8rem;
        background: rgba(17, 23, 34, 0.82);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--border-color);
    }

    .header-action,
    .header-brand-chip {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        border: 1px solid var(--border-light);
        background: rgba(255, 255, 255, 0.04);
        color: var(--text-primary);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }
    .header-action:active,
    .header-brand-chip:active { transform: scale(0.97); }

    .header-brand {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        text-align: center;
    }

    .header-brand-logo {
        width: 58px;
        height: 44px;
        border-radius: 14px;
        overflow: hidden;
        background: rgba(255,255,255,0.06);
        border: 1px solid var(--border-light);
        flex-shrink: 0;
        padding: 0.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-brand-title {
        font-size: 0.95rem;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: var(--text-primary);
        margin: 0;
    }

    .header-brand-subtitle {
        font-size: 0.7rem;
        color: var(--text-muted);
        margin: 0.1rem 0 0;
    }

    .page-shell {
        padding: calc(var(--sticky-header-offset) + 0.35rem) 0.95rem 2rem;
        overflow-x: hidden;
    }

    .hero-card {
        position: relative;
        margin-top: 0.9rem;
        min-height: 210px;
        border-radius: 24px;
        overflow: hidden;
        background: #10151f;
        border: 1px solid var(--border-color);
    }

    .hero-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(7, 10, 16, 0.18) 0%, rgba(7, 10, 16, 0.7) 58%, rgba(7, 10, 16, 0.95) 100%),
            linear-gradient(90deg, rgba(7, 10, 16, 0.52) 0%, rgba(7, 10, 16, 0) 48%);
    }

    .hero-card__content {
        position: absolute;
        inset: 0;
        z-index: 1;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        gap: 0.85rem;
    }

    .hero-card__logo {
        width: 84px;
        height: 68px;
        border-radius: 20px;
        overflow: hidden;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.18);
        box-shadow: 0 12px 30px rgba(0,0,0,0.24);
        padding: 0.45rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-card__title {
        font-size: 1.5rem;
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -0.05em;
        margin: 0;
    }

    .hero-card__desc {
        margin: 0;
        font-size: 0.82rem;
        line-height: 1.65;
        color: rgba(255,255,255,0.74);
        max-width: 32rem;
    }

    .hero-card__meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.45rem;
    }

    .hero-chip,
    .subcat-chip,
    .meta-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        border-radius: 999px;
        border: 1px solid var(--border-light);
        background: rgba(255,255,255,0.06);
        color: rgba(255,255,255,0.88);
        font-size: 0.7rem;
        font-weight: 700;
        padding: 0.45rem 0.75rem;
        white-space: nowrap;
    }

    .section-stack {
        display: grid;
        gap: 1.15rem;
        margin-top: 1.15rem;
    }

    .section-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.85rem;
        margin-bottom: 0.85rem;
    }

    .section-heading__eyebrow {
        display: block;
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 0.18rem;
    }

    .section-heading__title {
        margin: 0;
        font-size: 1.35rem;
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -0.04em;
        color: var(--text-primary);
    }

    .section-heading__meta {
        color: var(--text-secondary);
        font-size: 0.74rem;
        font-weight: 700;
    }

    .category-grid,
    .product-grid,
    .highlight-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
        width: 100%;
        align-items: start;
    }

    .section-stack > *,
    .category-grid > *,
    .product-grid > *,
    .highlight-grid > * {
        min-width: 0;
        width: 100%;
    }

    .category-tile {
        position: relative;
        aspect-ratio: 1 / 1.08;
        min-height: 184px;
        height: 100%;
        border: 0;
        padding: 0;
        border-radius: 20px;
        overflow: hidden;
        background: #1a1f2a;
        cursor: pointer;
        text-align: left;
        box-shadow: 0 12px 26px rgba(0,0,0,0.2);
    }

    .category-tile::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(7,10,16,0.18) 20%, rgba(7,10,16,0.86) 100%);
    }

    .category-tile__content {
        position: absolute;
        inset: 0;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1rem 0.9rem;
        gap: 0.35rem;
    }

    .category-tile__title {
        margin: 0;
        font-size: 1.02rem;
        font-weight: 900;
        text-transform: uppercase;
        line-height: 1.15;
        letter-spacing: -0.03em;
        color: #fff;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    }

    .category-tile__meta {
        font-size: 0.72rem;
        font-weight: 700;
        color: rgba(255,255,255,0.72);
    }

    .category-browser {
        margin-top: 1rem;
        border-radius: 24px;
        border: 1px solid var(--border-color);
        background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
        overflow: hidden;
    }

    .category-browser__hero {
        position: relative;
        min-height: 180px;
        background: #111722;
        overflow: hidden;
    }

    .category-browser__hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(10, 13, 18, 0.18) 0%, rgba(10, 13, 18, 0.9) 100%);
    }

    .category-browser__hero-content {
        position: absolute;
        inset: 0;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1rem;
        gap: 0.55rem;
    }

    .category-browser__hero-title {
        margin: 0;
        font-size: 1.7rem;
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -0.05em;
        text-transform: uppercase;
    }

    .category-browser__hero-meta {
        font-size: 0.8rem;
        font-weight: 700;
        color: rgba(255,255,255,0.74);
    }

    .category-browser__body {
        padding: 1rem;
    }

    .subcat-nav {
        display: flex;
        gap: 0.55rem;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        padding-bottom: 0.35rem;
        margin-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        scrollbar-width: none;
    }
    .subcat-nav::-webkit-scrollbar { display: none; }

    .subcat-chip {
        flex: 0 0 auto;
        background: rgba(255,255,255,0.05);
        color: var(--text-secondary);
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
    .subcat-chip.is-active {
        background: #0f131a;
        color: #fff;
        border-color: rgba(255,255,255,0.18);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    }

    .ghost-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        border: 1px solid var(--border-light);
        background: rgba(255,255,255,0.05);
        color: var(--text-primary);
        border-radius: 999px;
        padding: 0.55rem 0.9rem;
        font-size: 0.76rem;
        font-weight: 800;
        cursor: pointer;
    }

    .product-card {
        display: flex;
        flex-direction: column;
        border: 1px solid var(--border-color);
        border-radius: 18px;
        overflow: hidden;
        background: var(--bg-card);
        cursor: pointer;
        min-height: 100%;
        height: 100%;
    }

    .product-card__media {
        position: relative;
        aspect-ratio: 1 / 1;
        background: #0c1016;
        overflow: hidden;
    }

    .product-card__media::after {
        content: '';
        position: absolute;
        inset: auto 0 0;
        height: 44%;
        background: linear-gradient(180deg, rgba(25, 32, 45, 0) 0%, rgba(25, 32, 45, 0.92) 100%);
    }

    .product-card__price {
        position: absolute;
        left: 0.65rem;
        bottom: 0.65rem;
        z-index: 1;
        font-size: 0.92rem;
        font-weight: 900;
        color: #fff;
        text-shadow: 0 2px 12px rgba(0,0,0,0.45);
    }

    .product-card__body {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0.8rem 0.8rem 0.9rem;
        min-height: 124px;
    }

    .product-card__title {
        margin: 0;
        font-size: 0.95rem;
        font-weight: 900;
        line-height: 1.15;
        letter-spacing: -0.03em;
        color: var(--text-primary);
        text-transform: uppercase;
        min-height: 2.2em;
    }

    .product-card__description {
        margin: 0.45rem 0 0;
        color: var(--text-secondary);
        font-size: 0.74rem;
        line-height: 1.55;
        min-height: 2.4em;
    }

    .meta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-top: auto;
        padding-top: 0.55rem;
    }

    .meta-chip {
        font-size: 0.62rem;
        padding: 0.35rem 0.6rem;
        background: rgba(255,255,255,0.05);
        color: var(--text-secondary);
    }

    .tag-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        padding: 0.34rem 0.65rem;
        font-size: 0.62rem;
        font-weight: 700;
        border: 1px solid var(--border-light);
        background: rgba(255,255,255,0.05);
        color: var(--text-secondary);
    }

    .tag-pill--alert {
        color: #fdb4b4;
        border-color: rgba(239,68,68,0.25);
        background: rgba(239,68,68,0.1);
    }

    .tag-pill--accent {
        color: #fef3c7;
        border-color: rgba(245,158,11,0.25);
        background: rgba(245,158,11,0.12);
    }

    .product-detail__content > div:first-child > .tag-pill--accent {
        margin-bottom: 0.55rem;
    }

    .highlight-strip {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(180px, 1fr);
        gap: 0.8rem;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .highlight-strip::-webkit-scrollbar { display: none; }

    .highlight-card--button {
        width: 100%;
        display: block;
        padding: 0;
        text-align: left;
        color: inherit;
        border: 1px solid var(--border-color);
    }

    .highlight-card {
        border-radius: 18px;
        overflow: hidden;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        cursor: pointer;
    }

    .highlight-card__media {
        aspect-ratio: 1.05 / 0.86;
        background: #0d1118;
    }

    .highlight-card__body {
        padding: 0.85rem;
    }

    .favorites-carousel {
        display: flex;
        gap: 0.8rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0.15rem;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
    }

    .favorites-carousel__item {
        flex: 0 0 44%;
        min-width: 148px;
        max-width: 220px;
        scroll-snap-align: start;
    }

    @media (max-width: 420px) {
        .favorites-carousel__item {
            flex-basis: 46%;
            min-width: 140px;
        }
    }

    .search-overlay {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: none;
        background: rgba(5, 8, 12, 0.92);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .search-overlay.active { display: block; }

    .search-overlay__inner {
        max-width: var(--shell-width);
        margin: 0 auto;
        padding: 1rem 0.95rem 2rem;
    }

    .search-box {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-top: 0.8rem;
    }

    .search-input-wrap {
        flex: 1;
        position: relative;
    }

    .search-input {
        width: 100%;
        height: 52px;
        border-radius: 16px;
        border: 1px solid var(--border-light);
        background: rgba(255,255,255,0.06);
        color: var(--text-primary);
        padding: 0 1rem 0 2.7rem;
        font: inherit;
        outline: none;
    }
    .search-input::placeholder { color: var(--text-muted); }

    .search-results {
        margin-top: 1rem;
        display: grid;
        gap: 0.75rem;
        max-height: calc(100vh - 130px);
        overflow-y: auto;
        padding-bottom: 2rem;
    }

    .search-result-card {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        border-radius: 18px;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 0.7rem;
        cursor: pointer;
    }

    .search-result-card__thumb {
        width: 76px;
        height: 76px;
        border-radius: 14px;
        overflow: hidden;
        flex-shrink: 0;
        background: #0c1016;
    }

    .modal-overlay {
        position: fixed;
        inset: 0;
        z-index: 120;
        display: none;
        align-items: flex-end;
        justify-content: center;
        background: rgba(7, 10, 16, 0.82);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    .modal-overlay.active { display: flex; }

    .modal-sheet {
        width: 100%;
        max-width: var(--shell-width);
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 24px 24px 0 0;
        background: linear-gradient(180deg, #141b28 0%, #101722 100%);
        border: 1px solid var(--border-color);
        border-bottom: 0;
        animation: slideUp 0.24s ease;
    }
    @keyframes slideUp {
        from { transform: translateY(28px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    .product-detail__hero {
        position: relative;
        aspect-ratio: 1 / 0.78;
        background: #0c1016;
    }

    .product-detail__hero::after {
        content: '';
        position: absolute;
        inset: auto 0 0;
        height: 46%;
        background: linear-gradient(180deg, rgba(12,16,22,0) 0%, rgba(20,27,40,0.95) 100%);
    }

    .product-detail__close {
        position: absolute;
        top: 0.85rem;
        right: 0.85rem;
        z-index: 1;
        width: 40px;
        height: 40px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(16, 23, 34, 0.72);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .product-detail__content {
        padding: 1rem 1rem 1.4rem;
        display: grid;
        gap: 0.95rem;
    }

    .detail-title {
        margin: 0;
        font-size: 1.35rem;
        font-weight: 900;
        letter-spacing: -0.05em;
        line-height: 1.06;
        text-transform: uppercase;
        color: var(--text-primary);
    }

    .detail-price {
        margin: 0.25rem 0 0;
        font-size: 1.7rem;
        font-weight: 900;
        color: #fff;
        letter-spacing: -0.05em;
    }

    .detail-copy {
        color: var(--text-secondary);
        font-size: 0.85rem;
        line-height: 1.75;
        margin: 0;
    }

    .detail-block {
        border-top: 1px solid var(--border-color);
        padding-top: 0.95rem;
    }

    .detail-block__title {
        margin: 0 0 0.55rem;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .detail-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .nutrition-card {
        border-radius: 16px;
        border: 1px solid var(--border-color);
        background: rgba(255,255,255,0.03);
        padding: 0.75rem;
    }

    .nutrition-card strong {
        display: block;
        color: #fff;
        font-size: 1rem;
        margin-top: 0.25rem;
    }

    .empty-state-card {
        border: 1px dashed var(--border-light);
        border-radius: 20px;
        background: rgba(255,255,255,0.03);
        padding: 2.2rem 1.1rem;
        text-align: center;
        color: var(--text-secondary);
    }

    .social-action-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        border-radius: 1rem;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        color: var(--text-secondary);
        font-size: 0.75rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        white-space: nowrap;
    }
    .social-action-btn:hover {
        background: var(--bg-card-hover);
        color: var(--text-primary);
        border-color: var(--border-light);
    }

    .fab-circle {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        text-decoration: none;
        font-size: 1.35rem;
        border: 1px solid rgba(255,255,255,0.12);
        color: #fff;
        box-shadow: 0 12px 28px rgba(0,0,0,0.28);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        appearance: none;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
    }

    .fab-circle:hover,
    .fab-circle:focus-visible {
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(0,0,0,0.34);
        filter: brightness(1.05);
        outline: none;
    }

    .fab-circle:active {
        transform: translateY(0) scale(0.98);
    }

    .fab-circle--tripadvisor {
        background: rgba(52, 224, 161, 0.2);
        color: #34e0a1;
    }

    .fab-circle--whatsapp {
        background: #25d366;
        color: #fff;
    }

    .fab-circle--top {
        position: fixed;
        right: max(18px, calc((100vw - var(--shell-width)) / 2 + 18px));
        bottom: 18px;
        z-index: var(--fixed-action-z-index);
        background: rgba(255,255,255,0.09);
        color: var(--text-primary);
    }

    .product-img-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1d2533, #2a3548);
        color: rgba(255,255,255,0.75);
        font-size: 1.8rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .menu-footer {
        border-top: 1px solid var(--border-color);
        background: rgba(10, 10, 18, 0.56);
        padding: 1.5rem 0.85rem 5rem;
        text-align: center;
        margin-top: 1.35rem;
    }

    .menu-footer__logo {
        max-width: min(180px, 68vw);
        max-height: 52px;
        width: auto;
        object-fit: contain;
        opacity: 0.72;
        filter: none;
        margin-bottom: 1rem;
    }

    .menu-footer__name {
        font-size: 0.85rem;
        font-weight: 800;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin: 0 0 1rem;
    }

    .menu-footer__chips,
    .menu-footer__socials {
        display: flex;
        justify-content: center;
        gap: 0.55rem;
        flex-wrap: wrap;
    }

    .menu-footer__chips {
        margin-bottom: 0.95rem;
    }

    .menu-footer__chip {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 0.5rem 0.85rem;
        border-radius: 999px;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        color: var(--text-secondary);
        font-size: 0.7rem;
        font-weight: 600;
        text-decoration: none;
    }

    .menu-footer__socials {
        margin-bottom: 1rem;
    }

    .footer-social-link {
        width: 44px;
        height: 44px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        border: 1px solid var(--border-light);
        background: rgba(255,255,255,0.05);
        color: #fff;
        box-shadow: 0 10px 24px rgba(0,0,0,0.2);
        transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .footer-social-link:active {
        transform: scale(0.96);
    }

    .footer-social-link--whatsapp {
        background: rgba(37, 211, 102, 0.16);
        color: #25d366;
    }

    .footer-social-link--instagram {
        background: rgba(225, 48, 108, 0.16);
        color: #f472b6;
    }

    .footer-social-link--tripadvisor {
        background: rgba(52, 224, 161, 0.16);
        color: #34e0a1;
    }

    .footer-social-link--google {
        background: rgba(66, 133, 244, 0.16);
        color: #8ab4ff;
    }

    .menu-footer__copyright p {
        margin: 0;
        color: var(--text-muted);
    }

    .menu-footer__copyright p:first-child {
        font-size: 0.65rem;
    }

    .menu-footer__copyright p:last-child {
        font-size: 0.55rem;
        margin-top: 0.4rem;
        opacity: 0.6;
    }

    @media (max-width: 420px) {
        .page-shell { padding-left: 0.8rem; padding-right: 0.8rem; }
        .sticky-header { padding-left: 0.8rem; padding-right: 0.8rem; }
        .category-grid,
        .product-grid { gap: 0.65rem; }
        .category-tile {
            aspect-ratio: 1 / 1.08;
            min-height: 168px;
        }
        .category-tile__title { font-size: 0.95rem; }
        .detail-grid { grid-template-columns: 1fr; }
        .fab-circle--top { right: 14px; bottom: 14px; }
        :root {
            --survey-action-mobile-left: max(14px, env(safe-area-inset-left));
            --survey-action-mobile-bottom: max(14px, env(safe-area-inset-bottom));
        }
    }

    .menu-drawer {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 50%;
        width: min(100vw, var(--shell-width));
        transform: translateX(-50%);
        z-index: 90;
        background: rgba(5, 8, 12, 0.58);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.28s ease, visibility 0.28s ease;
    }
    .menu-drawer.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .menu-drawer__panel {
        width: min(88%, 360px);
        height: 100%;
        background: linear-gradient(180deg, #131925 0%, #0f141d 100%);
        border-right: 1px solid var(--border-color);
        box-shadow: 24px 0 50px rgba(0,0,0,0.35);
        display: flex;
        flex-direction: column;
        transform: translateX(-28px);
        opacity: 0.98;
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
        will-change: transform, opacity;
    }
    .menu-drawer.active .menu-drawer__panel {
        transform: translateX(0);
        opacity: 1;
    }

    .menu-drawer__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 1rem 1rem 0.85rem;
        border-bottom: 1px solid var(--border-color);
    }

    .menu-drawer__body {
        padding: 1rem;
        overflow-y: auto;
        display: grid;
        gap: 1rem;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.24s ease 0.06s, transform 0.24s ease 0.06s;
    }
    .menu-drawer.active .menu-drawer__body {
        opacity: 1;
        transform: translateY(0);
    }

    .menu-drawer__intro {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        padding: 0.9rem;
        border-radius: 18px;
        background: rgba(255,255,255,0.03);
        border: 1px solid var(--border-color);
    }

    .menu-drawer__logo {
        width: 72px;
        height: 56px;
        border-radius: 16px;
        overflow: hidden;
        flex-shrink: 0;
        border: 1px solid var(--border-light);
        background: rgba(255,255,255,0.05);
        padding: 0.45rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-drawer__title {
        font-size: 1rem;
        font-weight: 800;
        color: var(--text-primary);
    }

    .menu-drawer__copy {
        margin: 0.25rem 0 0;
        color: var(--text-secondary);
        font-size: 0.74rem;
        line-height: 1.55;
    }

    .menu-drawer__list {
        display: grid;
        gap: 0.7rem;
    }

    .menu-drawer__item {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.7rem;
        border: 1px solid var(--border-color);
        border-radius: 18px;
        background: rgba(255,255,255,0.03);
        color: var(--text-primary);
        cursor: pointer;
    }

    .menu-drawer__thumb {
        width: 62px;
        height: 62px;
        border-radius: 14px;
        overflow: hidden;
        flex-shrink: 0;
        background: #0c1016;
    }

    .menu-drawer__item-title {
        font-size: 0.88rem;
        font-weight: 800;
        line-height: 1.2;
    }

    .menu-drawer__item-meta {
        margin-top: 0.28rem;
        font-size: 0.72rem;
        color: var(--text-secondary);
    }

    .menu-drawer__item-arrow {
        color: var(--text-muted);
        font-size: 1.05rem;
    }

    .slider-carousel {
        position: relative;
        border-radius: 22px;
        overflow: hidden;
        border: 1px solid var(--border-color);
        background: #0f141d;
        box-shadow: 0 18px 40px rgba(0,0,0,0.24);
    }

    .slider-carousel__viewport {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 10;
        min-height: clamp(220px, 52vw, 310px);
        isolation: isolate;
    }

    .slider-carousel__slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        display: block;
        overflow: hidden;
    }
    .slider-carousel__slide.is-active {
        opacity: 1;
        pointer-events: auto;
    }

    .slider-carousel__slide .img-cover {
        transform: translateZ(0);
        user-select: none;
        -webkit-user-drag: none;
    }

    .slider-carousel__slide::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(180deg, rgba(7,10,16,0.06) 0%, rgba(7,10,16,0.38) 100%);
        pointer-events: auto;
        cursor: default;
    }

    .slider-carousel__caption {
        position: absolute;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        z-index: 2;
        display: grid;
        gap: 0.36rem;
        color: #fff;
        pointer-events: none;
    }

    .slider-carousel__caption h3,
    .slider-carousel__caption p {
        margin: 0;
        text-shadow: 0 10px 24px rgba(0,0,0,0.42);
    }

    .slider-carousel__caption h3 {
        font-size: clamp(1.2rem, 6vw, 1.95rem);
        font-weight: 900;
        line-height: 1.02;
        letter-spacing: -0.04em;
    }

    .slider-carousel__caption p {
        max-width: 92%;
        color: rgba(255,255,255,0.86);
        font-size: 0.78rem;
        font-weight: 650;
        line-height: 1.45;
    }

    .slider-carousel__dots {
        position: absolute;
        left: 50%;
        bottom: 0.8rem;
        transform: translateX(-50%);
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.4rem 0.65rem;
        border-radius: 999px;
        background: rgba(9, 12, 18, 0.58);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 4;
    }

    .slider-carousel__dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        border: 0;
        padding: 0;
        background: rgba(255,255,255,0.35);
        cursor: pointer;
    }
    .slider-carousel__dot.is-active { background: #fff; }
