/* ==========================================================================
   📐 ARQUITECTURA DE CSS (LÓGICA COMPARTIDA VS DISEÑO DE NEGOCIO)
   ==========================================================================
   1. 📦 ESTRUCTURA Y LÓGICA DE PÁGINA (ESTILOS COMPARTIDOS):
      - Reset & Base: html, body, resets y comportamiento de scroll locks (`body.no-scroll`).
      - Navegación Sticky & Scroll Margin: `.category-nav-wrapper`, `.category-nav` y offsets (`scroll-margin-top: 80px`).
      - Modales Estándar y Bottom Sheets: Estructura general de modales (`.custom-modal-overlay`, `.custom-modal`, `.drag-handle`, `.custom-modal-body-fade`).
      - Sidebar del Carrito: Animación y posicionamiento lateral (`.cart-overlay`, `.cart-sidebar`).

   2. 🎨 DISEÑO E IDENTIDAD VISUAL DE NEGOCIO (PROPIOS DE FLORERÍA):
      - System Design Tokens: Paleta amatista y lila elegante (--bg-dark, --gold, --gold-text, etc.).
      - Componentes Visuales: Hero de boutique floral (`.hero`), cartas de arreglos con relación 4:5 (`.menu-card`), tipografías Playfair Display & Outfit.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #FAF8FD;
    --bg-card: #ffffff;
    --bg-surface: #F3EFF9;
    --gold: #5e35b1;
    /* Amatista */
    --gold-dim: #9575CD;
    --gold-text: #542f9d;
    --gold-glow: rgba(126, 87, 194, 0.15);
    --red-accent: #c92a2a;
    --red-dark: #b02525;
    --text-white: #1C1226;
    --text-muted: #5C5268;
    --text-dim: #8C8099;
    --border: rgba(126, 87, 194, 0.1);
    --transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* HarmonyOS 6 Radius & Shadows */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 100px;
    --shadow-soft: 0 8px 32px rgba(110, 80, 150, 0.04);
    --shadow-elevated: 0 16px 48px rgba(110, 80, 150, 0.08);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #8b8b8b var(--bg-dark);
    scrollbar-gutter: stable;
}

    html::-webkit-scrollbar-track {
        background-color: var(--bg-dark);
    }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

    body.no-scroll {
        overflow: hidden;
        overscroll-behavior: contain;
    }

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FAF8FD 0%, #F5EEF9 100%);
    padding: 100px 24px 60px;
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text-side {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(126, 87, 194, 0.08);
    border: 1px solid rgba(126, 87, 194, 0.15);
    color: var(--gold-text);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

    .hero h1 span {
        color: var(--gold-text);
        font-style: italic;
    }

.hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 0 36px 0;
    font-weight: 400;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(94, 53, 177, 0.2);
}

    .btn-gold:hover {
        background: var(--gold-text);
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(109, 33, 163, 0.3);
        color: #ffffff;
    }

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 30px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

    .btn-secondary-outline:hover {
        background: rgba(126, 87, 194, 0.05);
        border-color: var(--gold);
        color: var(--gold-text);
    }

.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

    .hero-meta i {
        color: var(--gold);
    }

.separator-dot {
    opacity: 0.3;
}

/* ── Hero Image Side ────────────────────────────────── */
.hero-image-side {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1;
    border-radius: 120px 24px 120px 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(110, 80, 150, 0.15);
}

.hero-img-showcase {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 5s ease;
}

.hero-image-container:hover .hero-img-showcase {
    transform: scale(1.08);
}

.hero-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.floating-badge-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--gold);
}

.floating-badge-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

@media (max-width: 991px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-text-side {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-image-container {
        max-width: 380px;
    }
}

.menu-sticky-container {
    /* ── Contenedor que limita el sticky nav al área del menú ───── */
}

.category-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(252, 252, 252, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.category-nav {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 16px 4px;
    justify-content: center;
}

    .category-nav::-webkit-scrollbar {
        display: none;
    }

.cat-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    background: transparent;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .cat-link:hover {
        color: var(--gold-text);
        background: rgba(0, 0, 0, 0.03);
    }

    .cat-link.active {
        color: #ffffff;
        background: var(--gold-text);
        box-shadow: 0 4px 14px rgba(109, 33, 163, 0.3);
    }

    .cat-link:active {
        transform: scale(0.96);
    }



/* ── CÓMO FUNCIONA ──────────────────────────────────── */
/* ── CÓMO FUNCIONA ──────────────────────────────────── */
.how-section {
    position: relative;
    z-index: 5;
    padding: 90px 24px;
    background: #FAF8FD;
}

.section-label {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 64px;
    font-family: 'Playfair Display', serif;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 10px 10px 10px 0;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: visible;
    box-shadow: none;
}

    .step-card:hover {
        transform: translateY(-2px);
    }

.step-number {
    position: absolute;
    top: -45px;
    left: -10px;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    color: rgba(126, 87, 194, 0.08);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 900;
    font-size: 5.5rem;
    display: block;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.steps-indicators {
    display: none;
}

/* ── CATÁLOGO (MENU) ────────────────────────────────── */
.menu-section {
    padding: 60px 24px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 64px;
    scroll-margin-top: 80px;
}

#catalogo, #como-funciona {
    scroll-margin-top: 80px;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 22px;
}

.cat-emoji {
    color: var(--gold);
    vertical-align: middle;
}



.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid rgba(126, 87, 194, 0.04);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 18px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

    .menu-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-elevated);
        border-color: rgba(126, 87, 194, 0.15);
    }

    .menu-card:active {
        transform: scale(0.98);
    }

.menu-img-wrap {
    width: 95px;
    height: 118px;
    aspect-ratio: 4 / 5;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-surface);
    margin-bottom: 0;
    position: relative;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-img {
    transform: scale(1.08);
}

.menu-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
    min-width: 0;
}

    .menu-info h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--text-white);
        margin-bottom: 6px;
        line-height: 1.25;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .menu-info p {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 12px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: none;
    padding-top: 0;
    margin-top: 4px;
}

.price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--gold);
}

.btn-add {
    background: var(--gold);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-pill);
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(126, 87, 194, 0.2);
}

    .btn-add:hover {
        background: var(--gold-text);
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(126, 87, 194, 0.35);
        color: #ffffff;
    }

    .btn-add:active {
        transform: scale(0.95);
    }

    .btn-add.added {
        background: #28a745 !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2) !important;
    }

/* ── ZONA DE COBERTURA ──────────────────────────────── */
.zona-section {
    padding: 80px 24px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.zona-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.zona-info h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 14px;
}

.zona-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

#biz-hours {
    font-size: 0.9rem;
    color: var(--text-muted);
    background: var(--bg-surface);
    border-left: 3px solid var(--gold);
    padding: 12px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 8px !important;
    display: inline-block;
    width: auto;
    max-width: 100%;
    line-height: 1.5;
    box-shadow: var(--shadow-soft);
}

.zona-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zona-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.82rem;
    color: var(--text-white);
    font-weight: 500;
}

    .zona-tag i {
        color: var(--gold);
        font-size: 0.85rem;
    }

.zona-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 320px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

    .zona-map iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: none;
    }

/* ── MODALES (ESTRUCTURA GENERAL) ───────────────────
   ==========================================================================
   PLANTILLA ARQUITECTÓNICA DE MODAL (Estándar para Hamburguesas, Florería, Pastelería)
   --------------------------------------------------------------------------
   ESTRUCTURA HTML COMPATIBLE:
   <div class="custom-modal-overlay" id="modal-xyz-overlay">
       <div class="custom-modal">
           <!-- Drag handle (Solo visible en responsive/mobile) -->
           <div class="drag-handle">
               <div class="drag-handle-body"></div>
           </div>
           
           <!-- Cabecera del modal -->
           <div class="modal-header">
               <h3>Título del Modal</h3>
               <button class="modal-close-x" id="modal-xyz-cancel">&times;</button>
           </div>
           
           <!-- Cuerpo interno scrollable -->
           <div class="custom-modal-body">
               <p>Contenido del cuerpo...</p>
               <div class="custom-modal-body-fade"></div>
           </div>
           
           <!-- Acciones del pie -->
           <div class="modal-footer-actions">
               <button class="btn-modal-cancel" id="modal-xyz-cancel-2">Cancelar</button>
               <button class="btn-modal-confirm" id="modal-xyz-confirm">Confirmar</button>
           </div>
       </div>
   </div>

   MECÁNICA Y LÓGICA DE INTERACCIÓN:
   - Mostrar: Se añade la clase `.active` a `.custom-modal-overlay` y `.no-scroll` a `body`.
   - Ocultar: Se remueve la clase `.active` de `.custom-modal-overlay` y `.no-scroll` a `body`.
   - Responsive / Mobile: En pantallas < 768px, el modal se transforma en un "Bottom Sheet"
     (se alinea abajo, se desliza desde abajo mediante 'translateY(100%)' a 'translateY(0)').
     El drag-handle se hace visible para arrastrar/cerrar en mobile.
   ========================================================================== */
.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

    .custom-modal-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.custom-modal {
    background: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    overflow: hidden;
    padding: 0;
    will-change: transform;
}

.custom-modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 16px 24px 24px 24px;
    scrollbar-width: thin;
    scrollbar-color: #8b8b8b var(--bg-surface);
    position: relative;
    overscroll-behavior: contain;
}

    .custom-modal-body::-webkit-scrollbar-track {
        background-color: var(--bg-surface);
    }

.custom-modal-body-fade {
    position: sticky;
    bottom: 0;
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .custom-modal-body-fade::after {
        content: '›';
        display: block;
        font-size: 2rem;
        color: var(--text-muted);
        transform: rotate(90deg);
        animation: scroll-hint 1.5s ease-in-out infinite;
    }

@keyframes scroll-hint {
    0%, 100% {
        transform: rotate(90deg) translateX(0);
    }

    50% {
        transform: rotate(90deg) translateX(4px);
    }
}

.custom-modal-body-fade.hidden {
    opacity: 0;
}



.custom-modal-overlay.active .custom-modal {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}

    .modal-header h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-white);
        line-height: 1.3;
        margin: 0;
    }

.modal-close-x {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin-left: 12px;
    flex-shrink: 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

    .modal-close-x:hover {
        color: var(--text-white);
    }

.custom-option-group {
    margin-bottom: 18px;
}

.option-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.radio-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.radio-btn {
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

    .radio-btn.selected {
        border-color: var(--gold);
        background: var(--gold-glow);
        color: var(--gold);
    }

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--bg-card);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.88rem;
}

    .check-item:hover {
        border-color: rgba(232, 184, 75, 0.25);
    }

    .check-item.selected {
        border-color: var(--gold);
        background: var(--gold-glow);
        color: var(--gold);
    }

    .check-item .item-name {
        color: var(--text-white);
        font-weight: 600;
    }

    .check-item .item-extra-price {
        color: var(--gold);
        font-size: 0.78rem;
        font-weight: 600;
    }

    .check-item input[type="checkbox"] {
        display: none;
    }

.modal-footer-actions {
    display: flex;
    gap: 10px;
    padding: 16px 24px 24px 24px;
    flex-shrink: 0;
}

    .modal-footer-actions.flex-column {
        flex-direction: column;
        gap: 8px;
    }

.btn-modal-cancel {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

    .btn-modal-cancel:hover {
        border-color: rgba(255, 255, 255, 0.2);
        color: var(--text-white);
    }

.btn-modal-confirm {
    flex: 2;
    padding: 12px;
    border-radius: var(--radius-pill);
    border: none;
    background: var(--gold);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 199, 44, 0.2);
}

    .btn-modal-confirm:hover {
        background: var(--gold-text);
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(255, 199, 44, 0.3);
    }

    .btn-modal-confirm:active {
        transform: scale(0.96);
        box-shadow: 0 2px 6px rgba(255, 199, 44, 0.2);
    }

/* ── MODAL ENTREGA ──────────────────────────────────── */
@keyframes pulseError {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(109, 33, 163, 0.7);
        border-color: rgba(109, 33, 163, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(109, 33, 163, 0);
        border-color: rgba(109, 33, 163, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(109, 33, 163, 0);
        border-color: rgba(109, 33, 163, 0);
    }
}

.pulse-error {
    animation: pulseError 0.5s ease-in-out;
    border-color: var(--red-accent) !important;
    color: var(--red-accent) !important;
}

.custom-modal .modal-sub {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.custom-field {
    margin-bottom: 18px;
}

    .custom-field label {
        display: block;
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--gold);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .custom-field input[type="text"] {
        width: 100%;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 11px 14px;
        color: var(--text-white);
        font-family: 'Outfit', sans-serif;
        font-size: 0.9rem;
        transition: var(--transition);
        outline: none;
    }

        .custom-field input[type="text"]:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px var(--gold-glow);
        }

.pay-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-btn {
    flex: 1;
    min-width: 90px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

    .pay-btn.selected {
        border-color: var(--gold);
        background: var(--gold-glow);
        color: var(--gold);
    }

.btn-modal-back {
    display: block;
    width: 100%;
    margin-top: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.83rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

    .btn-modal-back:hover {
        color: var(--text-white);
    }

/* ── CARRITO FLOTANTE ───────────────────────────────── */
.cart-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: #ffffff;
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .cart-fab.footer-hide {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.5) translateY(20px);
    }

    .cart-fab:hover {
        transform: scale(1.1) translateY(-3px);
        background: var(--gold-text);
    }

    .cart-fab .badge {
        position: absolute;
        top: -4px;
        right: -4px;
        width: 22px;
        height: 22px;
        background: var(--gold);
        color: #fff;
        border-radius: 50%;
        font-size: 0.7rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--bg-dark);
        font-family: 'Outfit', sans-serif;
        transition: var(--transition);
    }

        .cart-fab .badge.hidden {
            transform: scale(0);
            opacity: 0;
        }

/* ── CART SIDEBAR ───────────────────────────────────── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

    .cart-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--bg-card);
    z-index: 5001;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
    overscroll-behavior: contain;
    border-left: 1px solid rgba(0, 0, 0, 0.03);
    will-change: transform;
}

.cart-overlay.active .cart-sidebar {
    transform: translateX(0);
}

.cart-header {
    padding: 8px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cart-header h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--text-white);
    }

.btn-clear-cart {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

    .btn-clear-cart:hover {
        background: rgba(109, 33, 163, 0.1);
        color: var(--red-accent);
    }

    .btn-clear-cart:active {
        transform: scale(0.95);
    }

.cart-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

    .cart-close-btn:hover {
        color: var(--text-white);
    }

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    overscroll-behavior: contain;
}

    .cart-items-list::-webkit-scrollbar {
        width: 4px;
    }

    .cart-items-list::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 2px;
    }

.empty-cart {
    text-align: center;
    color: var(--text-muted);
    padding: 60px 0;
    font-size: 0.9rem;
}

    .empty-cart i {
        font-size: 2.5rem;
        display: block;
        margin-bottom: 12px;
        opacity: 0.3;
    }

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 3px;
    line-height: 1.3;
}

.cart-item-opts {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

    .qty-btn:hover {
        border-color: var(--gold-text);
        color: var(--gold-text);
    }

.qty-num {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-white);
    min-width: 18px;
    text-align: center;
}

.cart-item-price {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gold);
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-surface);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.cart-total-label {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.cart-total-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
}

.btn-whatsapp {
    width: 100%;
    max-width: 420px;
    padding: 14px;
    border-radius: var(--radius-pill);
    border: none;
    background: #25d366;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    align-items: center;
    justify-content: center;
    display: inline-flex;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

    .btn-whatsapp:hover {
        background: #20b858;
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
    }

    .btn-whatsapp:active {
        transform: scale(0.96);
    }

    .btn-whatsapp:disabled {
        background: var(--text-dim);
        cursor: not-allowed;
        transform: none;
    }

/* ── TOOLTIP ────────────────────────────────────────── */
.cart-tooltip {
    position: fixed;
    bottom: 110px;
    right: 32px;
    background: var(--gold);
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    max-width: 200px;
    text-align: center;
    z-index: 999;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

    .cart-tooltip::after {
        content: '';
        position: absolute;
        bottom: -7px;
        right: 25px;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid var(--gold);
    }

    .cart-tooltip.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .cart-tooltip.footer-hide {
        opacity: 0;
        transform: translateY(10px);
    }

/* ── CONFIRM MODAL ──────────────────────────────────── */
/* ── Confirm modal styles are removed as they are now normalized under .custom-modal-overlay and .custom-modal ───── */

.btn-cancel-confirm {
    flex: 1;
    padding: 11px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.btn-ok-confirm {
    flex: 1;
    padding: 11px;
    border-radius: var(--radius-pill);
    border: none;
    background: var(--red-accent);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

    .btn-ok-confirm:hover {
        background: var(--red-dark);
    }

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
    background: #F5EEF9;
    border-top: 1px solid var(--border);
    padding: 80px 24px 40px;
    color: var(--text-white);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 1.2fr;
    gap: 48px;
    text-align: left;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 12px;
}

    .footer-brand span {
        color: var(--gold);
    }

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

    .social-links a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(126, 87, 194, 0.08);
        color: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: var(--transition);
        border: 1px solid rgba(126, 87, 194, 0.12);
    }

        .social-links a:hover {
            background: var(--gold-text);
            color: #ffffff;
            transform: translateY(-2px);
        }

#footer-biz-hours {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links-list li {
        margin-bottom: 10px;
    }

    .footer-links-list a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.9rem;
        transition: var(--transition);
    }

        .footer-links-list a:hover {
            color: var(--gold-text);
            padding-left: 4px;
        }

.footer-col.newsletter-col p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 6px;
    border-radius: var(--radius-pill);
}

    .newsletter-form input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 8px 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 0.85rem;
        color: var(--text-white);
        outline: none;
    }

    .newsletter-form button {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: var(--gold);
        color: #ffffff;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .newsletter-form button:hover {
            background: var(--gold-text);
        }

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

    .footer-bottom p {
        font-size: 0.8rem;
        color: var(--text-dim);
        margin: 0;
    }



@media (max-width: 991px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 60px 16px 30px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        margin-top: 40px;
        text-align: center;
        justify-content: center;
    }
}

/* ── DRAG HANDLE (MOBILE BOTTOM SHEETS) ─────────────── */
.drag-handle {
    display: none;
}

.drag-handle-body {
    width: 36px;
    height: 4px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 100px;
    margin: 8px auto 8px auto;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
    .drag-handle {
        display: block;
    }

    .zona-inner {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .menu-card {
        padding: 12px;
        border-radius: var(--radius-md);
        gap: 14px;
    }

    .menu-img-wrap {
        width: 75px;
        height: 94px;
        aspect-ratio: 4/5;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .menu-info h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
        min-height: auto;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .menu-info p {
        display: none;
    }

    .menu-footer {
        padding-top: 0;
        gap: 8px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        width: 100%;
        margin-top: 6px;
    }

    .price {
        font-size: 0.95rem;
    }

    .btn-add {
        padding: 6px 14px;
        font-size: 0.75rem;
        width: auto;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .steps-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 10px 4px 20px 4px;
        scrollbar-width: none;
    }

        .steps-grid::-webkit-scrollbar {
            display: none;
        }

    .step-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        margin: 0;
    }

    .steps-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

        .steps-indicators .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.12);
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
        }

            .steps-indicators .indicator.active {
                width: 20px;
                border-radius: 100px;
                background: var(--gold);
            }

    /* ── HarmonyOS Bottom Sheet Modals ──────────────────── */
    .custom-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .custom-modal {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        margin: 0;
        max-width: 100%;
        transform: translateY(100%) scale(1);
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
        padding: 0;
    }

    .modal-header {
        padding: 0px 20px;
    }

    .custom-modal-body {
        padding: 8px 20px 20px 20px;
    }

    .modal-footer-actions {
        padding: 12px 20px max(16px, env(safe-area-inset-bottom)) 20px;
    }

    .btn-modal-confirm,
    .btn-modal-cancel {
        padding: 10px;
        font-size: 0.9rem;
    }



    .btn-modal-back {
        margin-top: 12px;
    }

    .custom-modal-overlay.active .custom-modal {
        transform: translateY(0) scale(1);
    }

    /* ── Bottom Sheet Cart ──────────────────────────────── */
    .cart-sidebar {
        max-width: 100%;
        height: 88vh;
        top: auto;
        bottom: 0;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        transform: translateY(100%);
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.03);
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    }

    .cart-overlay.active .cart-sidebar {
        transform: translateY(0);
    }

    /* FAB Mobile Position */
    .cart-fab {
        bottom: calc(24px + env(safe-area-inset-bottom));
        right: 20px;
        width: 58px;
        height: 58px;
    }

    .cart-tooltip {
        bottom: calc(95px + env(safe-area-inset-bottom));
        right: 20px;
    }

        .cart-tooltip::after {
            right: 22px;
        }

    .hero-scroll-indicator {
        bottom: calc(32px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 480px) {
    .category-nav {
        justify-content: flex-start;
    }
}

.margin-0 {
    margin: 0px !important;
}

/* ── --- Desktop Handoff & QR Modal --- ─────────────── */
/* ── QR modal layout styles are removed as they are now normalized under .custom-modal-overlay and .custom-modal ───── */



.custom-modal-qr {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.spinner {
    border: 3px solid rgba(255, 199, 44, 0.2);
    border-left-color: var(--gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

.btn-generate-qr {
    display: none;
    width: 100%;
    margin-top: 10px;
    background: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-white);
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .btn-generate-qr:hover {
        background: var(--gold);
        color: #ffffff;
        border-color: var(--gold);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(126, 87, 194, 0.25);
    }

    .btn-generate-qr:active {
        transform: scale(0.96);
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- Productos No Disponibles (Agotados) --- */
.menu-card.no-disponible {
    opacity: 0.65;
    transition: opacity 0.3s ease;
    pointer-events: none;
    /* Evita cualquier interacción */
}

    .menu-card.no-disponible .menu-img {
        filter: grayscale(100%);
    }

    .menu-card.no-disponible .btn-add {
        background: #475569 !important;
        color: #94a3b8 !important;
        cursor: not-allowed !important;
        transform: none !important;
        box-shadow: none !important;
        pointer-events: none;
    }


.agotado-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: var(--red-accent, #da291c);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm, 4px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* --- Clases de Estilo de la Plantilla --- */
.delivery-time-strong {
    color: var(--gold-text);
}

.zona-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-header-title-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-modal-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.qr-modal-img {
    display: none;
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

.custom-modal-note {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* ── --- Detalle de Producto en Modal --- ───────────── */

.custom-modal-detail {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.custom-modal-img-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.custom-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.custom-modal-img-container:hover .custom-modal-image {
    transform: scale(1.04);
}

.custom-modal-description {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}
