/* /Components/Pages/Home.razor.rz.scp.css */
/* =============================================================
   HOME / Landing Page — Scoped styles
   ============================================================= */

/* ---------- Language Switcher ---------- */

[b-c6gn8rjdrb] .lang-overlay {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: transparent;
}

[b-c6gn8rjdrb] .lang-switcher {
    position: relative;
    z-index: 1051;
}

[b-c6gn8rjdrb] .lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: 1.5px solid rgba(26, 26, 46, 0.12);
    border-radius: 50px;
    padding: 0.4rem 0.9rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-dark);
    transition: var(--transition);
    font-family: var(--font-body);
}

[b-c6gn8rjdrb] .lang-toggle:hover {
    border-color: var(--color-accent);
    background: var(--color-accent-light);
}

[b-c6gn8rjdrb] .lang-code {
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

[b-c6gn8rjdrb] .lang-chevron {
    font-size: 0.55rem;
    transition: transform 0.2s ease;
    margin-left: 0.1rem;
}

[b-c6gn8rjdrb] .lang-chevron.open {
    transform: rotate(180deg);
}

[b-c6gn8rjdrb] .lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    min-width: 160px;
    z-index: 1100;
    overflow: hidden;
    animation: langDropIn-b-c6gn8rjdrb 0.15s ease-out;
}

@keyframes langDropIn-b-c6gn8rjdrb {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[b-c6gn8rjdrb] .lang-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.6rem 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.88rem;
    font-family: var(--font-body);
    color: var(--color-text);
    transition: background 0.15s ease;
}

[b-c6gn8rjdrb] .lang-option:hover {
    background: var(--color-accent-light);
}

[b-c6gn8rjdrb] .lang-option.active {
    color: var(--color-accent);
    font-weight: 600;
    background: var(--color-accent-light);
}

/* /Components/Pages/Menu.razor.rz.scp.css */
/* =============================================================
   DIGITAL MENU PAGE — /menu/{nomeempresa}
   Scoped styles for Menu.razor
   ============================================================= */

.dm-page[b-0se6t51xoe] {
    --dm-radius: 16px;
    --dm-radius-lg: 24px;
    --dm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --dm-content-max-width: 960px;

    background: var(--dm-bg, #0f0f17);
    min-height: 100vh;
    color: var(--dm-text, rgba(255,255,255,0.92));
    font-family: var(--font-body);
    width: 100%;
    position: relative;
    overflow-x: clip;
}

/* ---------- Loading ---------- */

[b-0se6t51xoe] .dm-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 1.5rem;
}

[b-0se6t51xoe] .dm-loading p {
    color: var(--dm-text-secondary);
    font-size: 0.9rem;
}

[b-0se6t51xoe] .dm-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--dm-border);
    border-top-color: var(--dm-accent);
    border-radius: 50%;
    animation: dm-spin-b-0se6t51xoe 0.8s linear infinite;
}

@keyframes dm-spin-b-0se6t51xoe {
    to { transform: rotate(360deg); }
}

/* ---------- Not Found ---------- */

[b-0se6t51xoe] .dm-not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    gap: 1rem;
}

[b-0se6t51xoe] .dm-not-found-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(200, 149, 108, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dm-accent);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

[b-0se6t51xoe] .dm-not-found h1 {
    color: var(--dm-text);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

[b-0se6t51xoe] .dm-not-found p {
    color: var(--dm-text-secondary);
    font-size: 0.95rem;
}

/* ---------- Header ---------- */

[b-0se6t51xoe] .dm-header {
    position: relative;
    padding-bottom: 1.5rem;
}

[b-0se6t51xoe] .dm-banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    transition: height 0.3s ease;
}

[b-0se6t51xoe] .dm-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[b-0se6t51xoe] .dm-banner-default {
    background: linear-gradient(135deg, #2a1f1a 0%, #1a1410 60%, #0f0f17 100%);
}

[b-0se6t51xoe] .dm-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, var(--dm-bg) 100%);
}

[b-0se6t51xoe] .dm-header-content {
    position: relative;
    text-align: center;
    margin-top: -50px;
    padding: 0 1.5rem;
    z-index: 2;
    max-width: var(--dm-content-max-width);
    margin-left: auto;
    margin-right: auto;
}

[b-0se6t51xoe] .dm-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 3px solid var(--dm-bg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

[b-0se6t51xoe] .dm-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[b-0se6t51xoe] .dm-logo-placeholder {
    background: linear-gradient(135deg, var(--dm-accent), var(--dm-accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

[b-0se6t51xoe] .dm-restaurant-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dm-text);
    margin-bottom: 0.3rem;
}

[b-0se6t51xoe] .dm-restaurant-desc {
    font-size: 0.85rem;
    color: var(--dm-text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

[b-0se6t51xoe] .dm-powered-by {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: var(--dm-text-secondary);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    border: 1px solid var(--dm-border);
}

[b-0se6t51xoe] .dm-powered-by strong {
    color: var(--dm-accent);
}

[b-0se6t51xoe] .dm-live-dot {
    width: 6px;
    height: 6px;
    background: #4caf50;
    border-radius: 50%;
    display: inline-block;
    animation: dm-pulse-b-0se6t51xoe 2s ease-out infinite;
}

@keyframes dm-pulse-b-0se6t51xoe {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* ---------- Tabs ---------- */

[b-0se6t51xoe] .dm-tabs-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--dm-bg);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--dm-border);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

[b-0se6t51xoe] .dm-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

[b-0se6t51xoe] .dm-tabs {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0 1.2rem;
    min-width: 100%;
    max-width: var(--dm-content-max-width);
    margin: 0 auto;
}

[b-0se6t51xoe] .dm-tab {
    flex-shrink: 0;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--dm-border);
    background: transparent;
    color: var(--dm-text-secondary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--dm-transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

[b-0se6t51xoe] .dm-tab:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--dm-text);
}

[b-0se6t51xoe] .dm-tab.active {
    background: var(--dm-accent);
    border-color: var(--dm-accent);
    color: white;
    font-weight: 600;
}

[b-0se6t51xoe] .dm-tab i {
    font-size: 0.75rem;
}

/* ---------- Content ---------- */

[b-0se6t51xoe] .dm-content {
    padding: 1.2rem;
    padding-bottom: 5rem;
    max-width: var(--dm-content-max-width);
    margin: 0 auto;
}

[b-0se6t51xoe] .dm-group-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0 0.2rem;
}

[b-0se6t51xoe] .dm-group-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dm-text);
    margin: 0;
}

[b-0se6t51xoe] .dm-group-count {
    font-size: 0.75rem;
    color: var(--dm-text-secondary);
}

/* ---------- Item Cards ---------- */

[b-0se6t51xoe] .dm-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

[b-0se6t51xoe] .dm-card {
    display: flex;
    gap: 0.85rem;
    padding: 0.8rem;
    background: var(--dm-bg-card);
    border: 1px solid var(--dm-border);
    border-radius: var(--dm-radius);
    cursor: pointer;
    transition: var(--dm-transition);
    align-items: center;
}

[b-0se6t51xoe] .dm-card:hover {
    background: var(--dm-bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

[b-0se6t51xoe] .dm-card-media {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
}

[b-0se6t51xoe] .dm-card-media img,
[b-0se6t51xoe] .dm-card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

[b-0se6t51xoe] .dm-card-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 149, 108, 0.15), rgba(125, 138, 110, 0.1));
    color: var(--dm-text-secondary);
    font-size: 1.5rem;
}

[b-0se6t51xoe] .dm-live-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--dm-accent);
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 3px;
    backdrop-filter: blur(4px);
}

[b-0se6t51xoe] .dm-live-badge-dot {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    animation: dm-badge-blink-b-0se6t51xoe 1.5s ease-in-out infinite;
}

@keyframes dm-badge-blink-b-0se6t51xoe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

[b-0se6t51xoe] .dm-live-badge-lg {
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 8px;
    top: 10px;
    right: 10px;
}

[b-0se6t51xoe] .dm-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

[b-0se6t51xoe] .dm-card-name {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dm-text);
    margin: 0 0 0.2rem;
    line-height: 1.3;
}

[b-0se6t51xoe] .dm-card-desc {
    font-size: 0.75rem;
    color: var(--dm-text-secondary);
    margin: 0 0 0.4rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

[b-0se6t51xoe] .dm-card-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dm-accent);
}

/* ---------- Featured Card ---------- */

[b-0se6t51xoe] .dm-card-featured {
    position: relative;
    padding-top: 1.6rem;
    border-color: var(--dm-accent);
    background: linear-gradient(135deg, rgba(200, 149, 108, 0.08), var(--dm-bg-card));
    box-shadow: 0 0 0 1px var(--dm-accent), 0 4px 20px rgba(200, 149, 108, 0.12);
}

[b-0se6t51xoe] .dm-card-featured:hover {
    border-color: var(--dm-accent);
    box-shadow: 0 0 0 1px var(--dm-accent), 0 8px 32px rgba(200, 149, 108, 0.2);
}

[b-0se6t51xoe] .dm-card-featured .dm-card-name {
    font-size: 0.82rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

[b-0se6t51xoe] .dm-featured-badge {
    position: absolute;
    top: -1px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--dm-accent);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px 4px;
    border-radius: 0 0 8px 8px;
    z-index: 1;
}

[b-0se6t51xoe] .dm-featured-badge i {
    font-size: 0.5rem;
}

[b-0se6t51xoe] .dm-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.35rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fff;
    background: var(--dm-accent);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--dm-transition);
    white-space: nowrap;
}

[b-0se6t51xoe] .dm-featured-cta:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
}

[b-0se6t51xoe] .dm-featured-cta i {
    font-size: 0.6rem;
}

/* ---------- Featured in Modal ---------- */

[b-0se6t51xoe] .dm-modal-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--dm-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

[b-0se6t51xoe] .dm-modal-featured-badge i {
    font-size: 0.6rem;
}

[b-0se6t51xoe] .dm-modal-featured-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: var(--dm-accent);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--dm-transition);
}

[b-0se6t51xoe] .dm-modal-featured-cta:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 149, 108, 0.3);
}

[b-0se6t51xoe] .dm-modal-featured-cta i {
    font-size: 0.8rem;
}

/* ---------- Empty ---------- */

[b-0se6t51xoe] .dm-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
    text-align: center;
}

[b-0se6t51xoe] .dm-empty i {
    font-size: 2.5rem;
    color: var(--dm-text-secondary);
    opacity: 0.4;
}

[b-0se6t51xoe] .dm-empty p {
    color: var(--dm-text-secondary);
    font-size: 0.9rem;
}

/* ---------- Modal ---------- */

[b-0se6t51xoe] .dm-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: dm-fade-in-b-0se6t51xoe 0.25s ease-out;
}

[b-0se6t51xoe] .dm-modal-backdrop-out {
    animation: dm-fade-out-b-0se6t51xoe 0.25s ease-in forwards;
}

@keyframes dm-fade-in-b-0se6t51xoe {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes dm-fade-out-b-0se6t51xoe {
    from { opacity: 1; }
    to { opacity: 0; }
}

[b-0se6t51xoe] .dm-modal {
    background: #141418;
    border-radius: var(--dm-radius-lg) var(--dm-radius-lg) 0 0;
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    animation: dm-slide-up-b-0se6t51xoe 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

[b-0se6t51xoe] .dm-modal::-webkit-scrollbar {
    display: none;
}

[b-0se6t51xoe] .dm-modal-out {
    animation: dm-slide-down-b-0se6t51xoe 0.25s ease-in forwards;
}

@keyframes dm-slide-up-b-0se6t51xoe {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes dm-slide-down-b-0se6t51xoe {
    from { transform: translateY(0); }
    to { transform: translateY(100%); }
}

[b-0se6t51xoe] .dm-modal-handle-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    padding: 10px 0 6px;
}

[b-0se6t51xoe] .dm-modal-handle {
    width: 36px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
}

[b-0se6t51xoe] .dm-modal-close {
    position: fixed;
    top: max(env(safe-area-inset-top, 0px), 10px);
    right: max(env(safe-area-inset-right, 0px), 12px);
    z-index: 1010;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--dm-transition);
}

@media (max-width: 480px) {
    [b-0se6t51xoe] .dm-modal-close {
        top: max(env(safe-area-inset-top, 0px), 10px);
        right: 12px;
    }
}

[b-0se6t51xoe] .dm-modal-close:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.1);
}

[b-0se6t51xoe] .dm-modal-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 420px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

[b-0se6t51xoe] .dm-modal-media img,
[b-0se6t51xoe] .dm-modal-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

[b-0se6t51xoe] .dm-modal-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 149, 108, 0.08), rgba(125, 138, 110, 0.04));
    color: var(--dm-text-secondary);
    font-size: 3.5rem;
    opacity: 0.4;
}

[b-0se6t51xoe] .dm-modal-media-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent, #141418);
    pointer-events: none;
}

[b-0se6t51xoe] .dm-modal-sound-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--dm-transition);
}

[b-0se6t51xoe] .dm-modal-sound-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

[b-0se6t51xoe] .dm-modal-body {
    padding: 1.2rem 1.5rem 2rem;
}

[b-0se6t51xoe] .dm-modal-category {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dm-accent);
    margin-bottom: 0.6rem;
}

[b-0se6t51xoe] .dm-modal-category i {
    font-size: 0.65rem;
}

[b-0se6t51xoe] .dm-modal-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dm-text);
    margin: 0 0 0.8rem;
    line-height: 1.25;
}

[b-0se6t51xoe] .dm-modal-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--dm-accent), transparent);
    border-radius: 2px;
    margin-bottom: 0.8rem;
}

[b-0se6t51xoe] .dm-modal-desc {
    font-size: 0.95rem;
    color: var(--dm-text-secondary);
    line-height: 1.8;
    margin: 0 0 1.5rem;
}

[b-0se6t51xoe] .dm-modal-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dm-border);
}

[b-0se6t51xoe] .dm-modal-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dm-accent);
    font-family: var(--font-heading);
}

[b-0se6t51xoe] .dm-modal-disclaimer {
    margin: 1rem 0 0;
    font-size: 0.65rem;
    color: var(--dm-text-secondary);
    opacity: 0.5;
    line-height: 1.4;
    text-align: center;
}

/* ---------- Footer ---------- */

[b-0se6t51xoe] .dm-footer {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--dm-border);
    max-width: var(--dm-content-max-width);
    margin: 0 auto;
}

[b-0se6t51xoe] .dm-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dm-text-secondary);
    text-decoration: none;
    transition: var(--dm-transition);
}

[b-0se6t51xoe] .dm-footer-brand:hover {
    color: var(--dm-accent);
}

[b-0se6t51xoe] .dm-footer-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

[b-0se6t51xoe] .dm-footer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

[b-0se6t51xoe] .dm-footer-disclaimer {
    margin: 0.6rem 0 0;
    font-size: 0.65rem;
    color: var(--dm-text-secondary);
    opacity: 0.6;
    line-height: 1.4;
}

/* ---------- Video loading / image-to-video swap ---------- */

[b-0se6t51xoe] .dm-media-hidden {
    display: none !important;
}

[b-0se6t51xoe] .dm-loading-live-motion {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    z-index: 10;
    letter-spacing: 0.3px;
}

/* ---------- Responsive: Tablet (≥ 600px) ---------- */

@media (min-width: 600px) {
    [b-0se6t51xoe] .dm-banner {
        height: 260px;
    }

    [b-0se6t51xoe] .dm-header-content {
        margin-top: -60px;
    }

    [b-0se6t51xoe] .dm-logo {
        width: 96px;
        height: 96px;
        border-radius: 22px;
    }

    [b-0se6t51xoe] .dm-restaurant-name {
        font-size: 1.9rem;
    }

    [b-0se6t51xoe] .dm-restaurant-desc {
        font-size: 0.9rem;
    }

    [b-0se6t51xoe] .dm-tabs {
        padding: 0 1.5rem;
        gap: 0.6rem;
    }

    [b-0se6t51xoe] .dm-tab {
        font-size: 0.88rem;
        padding: 0.6rem 1.4rem;
    }

    [b-0se6t51xoe] .dm-content {
        padding: 1.5rem;
        padding-bottom: 5rem;
    }

    [b-0se6t51xoe] .dm-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    [b-0se6t51xoe] .dm-card {
        padding: 1rem;
    }

    [b-0se6t51xoe] .dm-card-media {
        width: 90px;
        height: 90px;
    }

    [b-0se6t51xoe] .dm-card-name {
        font-size: 1rem;
    }

    [b-0se6t51xoe] .dm-card-desc {
        font-size: 0.8rem;
    }

    [b-0se6t51xoe] .dm-card-price {
        font-size: 1rem;
    }

    [b-0se6t51xoe] .dm-group-title {
        font-size: 1.35rem;
    }

    /* Modal: centered dialog on tablet+ */
    [b-0se6t51xoe] .dm-modal-backdrop {
        align-items: center;
    }

    [b-0se6t51xoe] .dm-modal {
        border-radius: var(--dm-radius-lg);
        max-width: 520px;
        max-height: 85vh;
    }

    [b-0se6t51xoe] .dm-modal-handle-bar {
        display: none;
    }
}

/* ---------- Responsive: Desktop (≥ 900px) ---------- */

@media (min-width: 900px) {
    [b-0se6t51xoe] .dm-banner {
        height: 300px;
        max-width: var(--dm-content-max-width);
        margin: 0 auto;
        border-radius: 0 0 var(--dm-radius-lg) var(--dm-radius-lg);
    }

    [b-0se6t51xoe] .dm-header-content {
        margin-top: -65px;
    }

    [b-0se6t51xoe] .dm-logo {
        width: 110px;
        height: 110px;
        border-radius: 24px;
    }

    [b-0se6t51xoe] .dm-restaurant-name {
        font-size: 2.2rem;
    }

    [b-0se6t51xoe] .dm-content {
        padding: 2rem;
        padding-bottom: 5rem;
    }

    [b-0se6t51xoe] .dm-items-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    [b-0se6t51xoe] .dm-card {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        overflow: hidden;
    }

    [b-0se6t51xoe] .dm-card-media {
        width: 100%;
        height: 160px;
        border-radius: 0;
    }

    [b-0se6t51xoe] .dm-card-info {
        padding: 1rem;
    }

    [b-0se6t51xoe] .dm-card-name {
        font-size: 1.02rem;
    }

    [b-0se6t51xoe] .dm-card-desc {
        font-size: 0.82rem;
        -webkit-line-clamp: 2;
    }

    [b-0se6t51xoe] .dm-live-badge {
        top: 8px;
        right: 8px;
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    [b-0se6t51xoe] .dm-card-featured {
        grid-column: 1 / -1;
        padding-top: 0;
    }

    [b-0se6t51xoe] .dm-card-featured .dm-card-name {
        font-size: 1.02rem;
        -webkit-line-clamp: 2;
    }

    [b-0se6t51xoe] .dm-card-featured .dm-card-media {
        height: 200px;
    }

    [b-0se6t51xoe] .dm-featured-badge {
        left: 16px;
    }

    [b-0se6t51xoe] .dm-modal {
        max-width: 580px;
    }

    [b-0se6t51xoe] .dm-modal-media {
        max-height: 480px;
    }
}
