:root {
    color-scheme: light dark;
    --bg: #f4f4f4;
    --panel: #ffffff;
    --text: #0d131f;
    --muted: #6b7280;
    --brand: #ff5a00;
    --brand-light: #ffb800;
    --line: #e5e5e5;
    --accent-green: #7a9a5b;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0d131f;
        --panel: #222b38;
        --text: #f4f4f4;
        --muted: #9aa0ab;
        --line: #2c3644;
    }
}

* { box-sizing: border-box; }

/* El atributo hidden pierde contra cualquier "display" de clase de autor
   (.btn, .btn-header, etc. -- misma prioridad de especificidad, gana la
   regla de autor sobre la regla por defecto del navegador). Sin esto,
   pedidoRecibidoBtn.hidden = true no ocultaba el boton "Ya lo recibi"
   cuando el pedido estaba en preparacion. */
[hidden] {
    display: none !important;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}

.descubre-header {
    padding: 16px 20px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.descubre-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 22px;
}

.descubre-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.descubre-brand-mark {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 90, 0, 0.35);
    animation: brand-mark-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes brand-mark-pop {
    0% { transform: scale(0.4) rotate(-8deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.descubre-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.descubre-brand-text small {
    font-weight: 700;
    font-size: 0.62rem;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.descubre-header-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: nowrap;
}

.descubre-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.descubre-hero-text h1 {
    margin: 0 0 6px;
    font-size: 1.5rem;
    line-height: 1.15;
}

.text-brand {
    color: var(--brand);
}

.descubre-hero-text p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    max-width: 34ch;
}

.descubre-notif-btn {
    position: relative;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
}

.descubre-notif-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand);
    border: 2px solid var(--panel);
}

.notif-texto {
    margin: 0 0 10px;
    font-size: 0.85rem;
    color: var(--muted);
}

#notifNombre,
#notifTelefono {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--text);
    font-size: 0.92rem;
    font-family: inherit;
    margin-bottom: 10px;
}

[data-notif-activar-btn],
[data-notif-pedido-recibido] {
    width: 100%;
    text-align: center;
}

.notif-estado-msg {
    margin: 8px 0 0;
    font-size: 0.82rem;
    color: var(--brand);
    font-weight: 600;
}

.notif-pedidos-lista {
    display: flex;
    flex-direction: column;
}

.notif-pedido-card {
    --estado-color: var(--brand);
    margin-top: 14px;
    padding: 16px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-top: 4px solid var(--estado-color);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.notif-pedido-tenant {
    margin: 0 0 6px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--estado-color);
}

.notif-pedido-card.is-preparando {
    --estado-color: #f59e0b;
}

.notif-pedido-card.is-en-camino {
    --estado-color: #2563eb;
}

.notif-pedido-titulo {
    margin: 0 0 12px;
    font-weight: 800;
    font-size: 0.96rem;
}

.notif-pedido-lista {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notif-pedido-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--line);
}

.notif-pedido-lista li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.notif-item-cant {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--bg);
    color: var(--estado-color);
    font-weight: 800;
    font-size: 0.74rem;
}

.notif-item-nombre {
    color: var(--text);
    min-width: 0;
}

.notif-pedido-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.88rem;
    padding-top: 10px;
    margin-bottom: 12px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.notif-pedido-total strong {
    font-size: 1.08rem;
    color: var(--text);
}

.btn-recibido {
    background: #16a34a;
    color: #fff;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.notif-pedido-rider {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0 0 12px;
}

.notif-pedido-mapa {
    display: block;
    width: 100%;
    height: 160px;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin: 0 0 12px;
    overflow: hidden;
    background: var(--bg-soft, #eee);
}

.notif-pedido-mapa .leaflet-control-attribution {
    font-size: 0.6rem;
}

.notif-pedido-mapa-pin {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
}

.btn-ver-mapa {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    margin-top: 8px;
}

.notif-sin-pedido {
    margin: 14px 0 0;
    padding: 26px 16px;
    text-align: center;
    border: 1.5px dashed var(--line);
    border-radius: 14px;
}

.notif-sin-pedido-icon {
    display: block;
    font-size: 1.7rem;
    margin-bottom: 6px;
    opacity: 0.55;
}

.gracias-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

.gracias-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.gracias-card {
    background: radial-gradient(circle at 50% 0%, #241205 0%, #0d131f 65%);
    border: 1px solid rgba(249, 115, 22, 0.35);
    border-radius: 20px;
    padding: 36px 26px 30px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 60px rgba(249, 115, 22, 0.15);
}

.gracias-logo-wrap {
    position: relative;
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gracias-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #f97316;
    opacity: 0;
    animation: gracias-onda 1.8s ease-out infinite;
}

.gracias-ring-2 {
    animation-delay: 0.6s;
}

@keyframes gracias-onda {
    0% { transform: scale(0.75); opacity: 0.7; }
    100% { transform: scale(1.55); opacity: 0; }
}

.gracias-logo {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    box-shadow: 0 6px 22px rgba(249, 115, 22, 0.45);
    animation: gracias-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gracias-check {
    position: absolute;
    right: -4px;
    bottom: -4px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #0d131f;
    animation: gracias-pop 0.4s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

@keyframes gracias-pop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.perfil-spinner-wrap {
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perfil-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-top-color: #f97316;
    animation: perfil-spin 0.8s linear infinite;
}

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

.perfil-check-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gracias-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gracias-mensaje {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #f4f5f7;
    line-height: 1.5;
}

.gracias-tenant {
    color: #f97316;
    font-weight: 800;
}

.notif-sin-pedido p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.descubre-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 16px;
}

.descubre-search-icon {
    flex-shrink: 0;
    opacity: 0.6;
    font-size: 0.9rem;
}

.descubre-search input {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text);
    font-size: 0.92rem;
    font-family: inherit;
}

.descubre-search input::placeholder {
    color: var(--muted);
}

.descubre-ubicacion {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--muted);
}

.descubre-ubicacion strong {
    color: var(--brand);
    font-weight: 700;
}

.descubre-ubicacion-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: transparent;
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    padding: 2px 0;
}

.descubre-categorias {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 18px 14px;
    margin-top: 16px;
    padding: 2px 2px 6px;
}

.descubre-categorias:not(.is-expanded) .categoria-chip:not(.categoria-chip-vermas):nth-child(n + 7) {
    display: none;
}

.categoria-chip {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
}

.categoria-chip-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--panel);
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: border-color 0.15s ease;
}

.categoria-chip-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

.categoria-chip.is-active .categoria-chip-icon {
    border-color: var(--brand);
}

.categoria-chip.is-active .categoria-chip-label {
    color: var(--text);
}

.categoria-chip-vermas {
    align-self: center;
    margin-top: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand);
    white-space: nowrap;
}

.categoria-chip-vermas-icon {
    display: inline-block;
    transition: transform 0.15s ease;
}

.descubre-categorias.is-expanded .categoria-chip-vermas-icon {
    transform: rotate(180deg);
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px 8px 8px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--text);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn-header-registrar-texto-corto {
    display: none;
}

@media (max-width: 400px) {
    .descubre-header-actions {
        gap: 6px;
    }
    .btn-header {
        gap: 4px;
        padding: 6px 10px 6px 6px;
        font-size: 0.7rem;
    }
    .btn-header-icon {
        width: 18px;
        height: 18px;
        font-size: 0.68rem;
    }
    .btn-header-registrar-texto-full {
        display: none;
    }
    .btn-header-registrar-texto-corto {
        display: inline;
    }
}

.btn-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.btn-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-header-download .btn-header-icon {
    background: #2563eb;
}

.btn-header-download:hover {
    border-color: #2563eb;
}

.btn-header-registrar {
    position: relative;
    overflow: hidden;
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    animation: registrar-pulso 2.8s ease-in-out infinite;
}

.btn-header-registrar .btn-header-icon {
    background: rgba(255, 255, 255, 0.22);
}

.btn-header-registrar:hover {
    border-color: var(--brand);
    background: var(--brand);
    animation-play-state: paused;
}

.btn-header-registrar::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    animation: registrar-brillo 3.4s ease-in-out infinite;
}

@keyframes registrar-pulso {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 0 0 0 rgba(255, 90, 0, 0.45);
    }
    50% {
        transform: scale(1.045);
        box-shadow: 0 2px 10px rgba(255, 90, 0, 0.35), 0 0 0 9px rgba(255, 90, 0, 0);
    }
}

@keyframes registrar-brillo {
    0%, 35% {
        left: -60%;
    }
    65%, 100% {
        left: 130%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn-header-registrar {
        animation: none;
    }
    .btn-header-registrar::after {
        animation: none;
        display: none;
    }
}

.descubre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
    padding: 16px 20px 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.restaurante-card {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.restaurante-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.restaurante-card[hidden] {
    display: none;
}

.restaurante-distancia {
    align-self: flex-start;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

.restaurante-logo-link {
    flex-shrink: 0;
    display: block;
}

.restaurante-logo {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--bg);
    display: block;
}

.restaurante-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.restaurante-nombre-link {
    text-decoration: none;
    color: inherit;
}

.restaurante-nombre {
    margin: 0;
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.restaurante-referencia {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.restaurante-acciones {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.restaurante-acciones .btn {
    padding: 5px 10px;
    font-size: 0.78rem;
}

.restaurante-fav {
    align-self: flex-end;
    flex-shrink: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    padding: 2px;
    color: var(--muted);
}

.restaurante-fav.is-favorito {
    color: var(--brand);
}

.descubre-sin-resultados {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
    padding: 32px 0;
}

.btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.descubre-vacio {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
    padding: 40px 0;
}

.descubre-footer {
    margin-top: 32px;
    margin-bottom: 56px; /* deja lugar al nav fijo de abajo */
    padding: 32px 20px 16px;
    border-top: 1px solid var(--line);
}

.descubre-footer-columnas {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.descubre-footer-col h3 {
    margin: 0 0 12px;
    font-size: 0.85rem;
    color: var(--text);
}

.descubre-footer-col {
    display: flex;
    flex-direction: column;
}

.descubre-footer-link {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 6px 0;
}

.descubre-footer-link:hover {
    color: var(--brand);
    text-decoration: underline;
}

.descubre-footer-bottom {
    max-width: 900px;
    margin: 24px auto 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}

.descubre-footer-tagline {
    margin: 0 0 4px;
    font-weight: 700;
    color: var(--brand);
}

.descubre-footer-marca {
    margin: 0;
    font-size: 0.8rem;
}

@media (max-width: 640px) {
    .descubre-footer-columnas {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 420px) {
    .descubre-footer-columnas {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.descubre-bottomnav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    background: var(--panel);
    border-top: 1px solid var(--line);
    z-index: 500;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.descubre-bottomnav-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 4px 10px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
}

.descubre-bottomnav-icon {
    font-size: 1.15rem;
    line-height: 1;
}

.descubre-bottomnav-item.is-active {
    color: var(--brand);
}

.ubicacion-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 1000;
    /* opacity/visibility en vez de display:none: asi el contenedor del mapa
       nunca colapsa a 0x0 y Leaflet lo puede medir bien apenas se abre,
       sin necesitar timeouts para "esperar" a que se vea. */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
}

.ubicacion-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.ubicacion-modal {
    background: var(--panel);
    border-radius: 16px;
    padding: 18px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ubicacion-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ubicacion-modal-header h2 {
    margin: 0;
    font-size: 1.1rem;
}

.ubicacion-modal-cerrar {
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
}

.ubicacion-modal input[type="text"],
.ubicacion-modal input[type="tel"] {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--text);
    font-size: 0.92rem;
    font-family: inherit;
}

.ubicacion-modal-mapa {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    z-index: 0;
}

.ubicacion-modal-hint {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
}

.ubicacion-modal-acciones {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.ubicacion-modal-acciones .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (min-width: 900px) {
    .descubre-header {
        padding: 32px 20px 28px;
        max-width: 1100px;
    }

    .descubre-hero-text h1 {
        font-size: 2.4rem;
    }

    .descubre-hero-text p {
        font-size: 1.05rem;
        max-width: 46ch;
    }

    .descubre-notif-btn {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }

    .descubre-topbar {
        margin-bottom: 28px;
    }

    .btn-header {
        font-size: 0.92rem;
        padding: 10px 18px 10px 10px;
    }

    .btn-header-icon {
        width: 26px;
        height: 26px;
    }

    .descubre-grid {
        max-width: 1400px;
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 16px;
        padding: 16px 40px 64px;
    }

    .restaurante-card {
        padding: 14px 18px;
        border-radius: 14px;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .restaurante-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .restaurante-logo {
        width: 68px;
        height: 68px;
        border-radius: 12px;
    }

    .restaurante-nombre {
        font-size: 1.02rem;
    }

    .restaurante-acciones .btn {
        padding: 6px 12px;
        font-size: 0.82rem;
    }
}

