/*
Theme Name: Astra Child Cafeteria
Template: astra
Author: Alberto Vargas
Version: 1.0
Description: Tema hijo personalizado para cafetería con WooCommerce y WhatsApp.
*/

/* ==============================
   VARIABLES Y BASE
============================== */

:root {
    --color-principal: #4b2412;
    --color-secundario: #f4a62a;
    --color-fondo: #fff8ef;
    --color-texto: #2b1a10;
    --color-whatsapp: #25D366;
}

body {
    background-color: var(--color-fondo);
    color: var(--color-texto);
}

/* ==============================
   HEADER GENERAL
============================== */

.ast-primary-header-bar {
    background-color: #ffffff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.main-header-menu .menu-link {
    font-weight: 600;
}

/* ==============================
   HEADER TRANSPARENTE SOBRE HERO
   Solo aplica en Inicio
============================== */

.home .main-header-bar,
.home .ast-primary-header-bar,
.home .site-header-section {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding-top: 16px;
}

/* Limpieza de estilos previos de Astra en el menú */
.home .main-header-menu .menu-item,
.home .main-header-menu .menu-link,
.home .main-header-menu .current-menu-item > .menu-link,
.home .main-header-menu .current_page_item > .menu-link,
.home .main-header-menu .current-menu-ancestor > .menu-link {
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    background: transparent !important;
}

/* Menú base */
.home .main-header-menu .menu-link {
    position: relative !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 0 0 18px 0 !important;
    margin: 0 18px !important;
    transition: color 0.25s ease !important;
}

/* Quitar pseudo-elementos anteriores */
.home .main-header-menu .menu-link::before {
    display: none !important;
    content: none !important;
}

/* Línea inferior personalizada */
.home .main-header-menu .menu-link::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 0 !important;
    width: 0 !important;
    height: 3px !important;
    background: var(--color-secundario) !important;
    border-radius: 99px !important;
    transform: translateX(-50%) !important;
    transition: width 0.25s ease !important;
    display: block !important;
}

/* Hover del menú */
.home .main-header-menu .menu-link:hover {
    color: var(--color-secundario) !important;
}

.home .main-header-menu .menu-link:hover::after {
    width: 65% !important;
}

/* Página activa */
.home .main-header-menu .current-menu-item > .menu-link,
.home .main-header-menu .current_page_item > .menu-link {
    color: var(--color-secundario) !important;
}

.home .main-header-menu .current-menu-item > .menu-link::after,
.home .main-header-menu .current_page_item > .menu-link::after {
    width: 65% !important;
}

/* Logo */
.home .custom-logo,
.custom-logo {
    max-width: 115px !important;
    height: auto !important;
}

.home .custom-logo-link img,
.custom-logo-link img {
    max-width: 115px !important;
    height: auto !important;
    object-fit: contain;
}

.home .site-logo-img {
    background: transparent !important;
}

.home .ast-site-identity {
    padding: 0 !important;
}

/* ==============================
   HERO INICIO
============================== */

.home .entry-title {
    display: none;
}

.cafeteria-hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 120px 70px 80px 70px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
}

.cafeteria-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(18, 8, 4, 0.85) 0%,
        rgba(18, 8, 4, 0.70) 35%,
        rgba(18, 8, 4, 0.25) 65%,
        rgba(18, 8, 4, 0.05) 100%
    );
    z-index: 1;
}

.cafeteria-hero > * {
    position: relative;
    z-index: 2;
}

.cafeteria-hero h1,
.cafeteria-hero h2,
.cafeteria-hero h3,
.cafeteria-hero p {
    color: #ffffff !important;
}

.cafeteria-hero h1 {
    font-size: 58px;
    line-height: 1.05;
    font-weight: 900;
    max-width: 520px;
    margin-bottom: 22px;
}

.cafeteria-hero .hero-script {
    display: block;
    color: var(--color-secundario);
    font-size: 72px;
    line-height: 1;
    font-style: italic;
    font-weight: 900;
}

.cafeteria-hero p {
    font-size: 20px;
    line-height: 1.5;
    color: #f6e7d5 !important;
    max-width: 520px;
    margin-bottom: 28px;
}

.cafeteria-hero .wp-block-button__link {
    background: var(--color-secundario) !important;
    color: #2b1208 !important;
    border-radius: 16px !important;
    padding: 16px 32px !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.20);
}

.cafeteria-hero .wp-block-button__link:hover {
    opacity: 0.92;
}

/* ==============================
   SECCIÓN NUESTRO MENÚ
============================== */

.cafeteria-menu-section {
    background: var(--color-fondo);
    padding: 55px 30px 45px 30px;
    text-align: center;
}

.cafeteria-menu-section h2 {
    font-size: 34px;
    font-weight: 900;
    color: #3a1d0f;
    margin-bottom: 8px;
}

.cafeteria-menu-section > p {
    color: #6f5c51;
    font-size: 16px;
    margin-bottom: 32px;
}

/* Contenedor de tarjetas */
.cafeteria-menu-section .wp-block-columns {
    max-width: 1120px;
    margin: 0 auto 35px auto;
    gap: 18px !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap !important;
}

/* Tarjetas de categorías */
.cafeteria-category-card {
    width: 240px !important;
    height: 170px !important;
    min-height: 170px !important;
    max-height: 170px !important;
    padding: 18px 14px !important;
    box-sizing: border-box !important;
    background: #ffffff;
    border: 1px solid rgba(75, 36, 18, 0.28);
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
    cursor: pointer;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.cafeteria-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.10);
    border-color: var(--color-secundario);
}

/* Textos de tarjeta */
.cafeteria-category-card h1,
.cafeteria-category-card h2,
.cafeteria-category-card h3,
.cafeteria-category-card h4,
.cafeteria-category-card p {
    font-size: 32px !important;
    line-height: 1.1 !important;
    margin: 0 0 24px 0 !important;
    font-weight: 800 !important;
    color: #071b38 !important;
}

/* Iconos */
.cafeteria-category-card img {
    width: 42px !important;
    height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}

/* Tarjeta activa */
.cafeteria-category-card.active {
    border-color: var(--color-secundario);
    box-shadow: 0 12px 28px rgba(244,166,42,0.20);
}

.cafeteria-category-card.active::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    background: var(--color-secundario);
    border-radius: 99px;
    margin: 18px auto 0 auto;
    flex-shrink: 0;
}

/* ==============================
   PRODUCTOS WOOCOMMERCE
============================== */

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 16px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
    overflow: hidden !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
}

.woocommerce ul.products li.product img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    margin-bottom: 14px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--color-texto) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    min-height: 46px;
    padding: 0 !important;
}

.woocommerce ul.products li.product .price {
    color: var(--color-secundario) !important;
    font-weight: 900 !important;
    font-size: 18px !important;
}

/* Productos en Inicio */
.home .woocommerce {
    max-width: 1080px;
    margin: 20px auto 0 auto;
}

/* ==============================
   BOTÓN WHATSAPP PRODUCTO
============================== */

.cafeteria-whatsapp-btn {
    background-color: var(--color-whatsapp) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 12px 20px !important;
    font-weight: 800 !important;
    text-align: center;
    width: 100%;
    display: block;
    text-decoration: none !important;
}

.cafeteria-whatsapp-btn:hover {
    color: #ffffff !important;
    opacity: 0.9;
}

.home .woocommerce ul.products li.product .cafeteria-whatsapp-btn {
    margin-top: 12px !important;
    background: #fff0d2 !important;
    color: #3a1d0f !important;
    border-radius: 12px !important;
}

.home .woocommerce ul.products li.product .cafeteria-whatsapp-btn:hover {
    background: var(--color-secundario) !important;
    color: #2b1208 !important;
}

/* ==============================
   BOTÓN WHATSAPP FLOTANTE
============================== */

.cafeteria-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    background-color: var(--color-whatsapp);
    color: #ffffff !important;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.cafeteria-whatsapp-float:hover {
    opacity: 0.9;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 921px) {
    .cafeteria-hero {
        min-height: 560px;
        padding: 100px 28px 60px 28px;
        background-position: center center !important;
    }

    .cafeteria-hero h1 {
        font-size: 42px;
    }

    .cafeteria-hero .hero-script {
        font-size: 54px;
    }

    .cafeteria-hero p {
        font-size: 18px;
    }

    .cafeteria-category-card {
        width: 210px !important;
        height: 155px !important;
        min-height: 155px !important;
        max-height: 155px !important;
    }

    .cafeteria-category-card h1,
    .cafeteria-category-card h2,
    .cafeteria-category-card h3,
    .cafeteria-category-card h4,
    .cafeteria-category-card p {
        font-size: 26px !important;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 544px) {
    .cafeteria-menu-section {
        padding: 45px 18px 35px 18px;
    }

    .cafeteria-menu-section h2 {
        font-size: 30px;
    }

    .cafeteria-menu-section .wp-block-columns {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px !important;
    }

    .cafeteria-category-card {
        width: 100% !important;
        height: 140px !important;
        min-height: 140px !important;
        max-height: 140px !important;
    }

    .cafeteria-category-card h1,
    .cafeteria-category-card h2,
    .cafeteria-category-card h3,
    .cafeteria-category-card h4,
    .cafeteria-category-card p {
        font-size: 22px !important;
        margin-bottom: 18px !important;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }

    .woocommerce ul.products li.product img {
        height: 210px !important;
    }
}
/* ==============================
   MENÚ: SOLO HOVER, SIN ACTIVO FIJO
============================== */

/* Que la página activa no quede marcada */
.home .main-header-menu .current-menu-item > .menu-link,
.home .main-header-menu .current_page_item > .menu-link,
.home .main-header-menu .current-menu-ancestor > .menu-link {
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}

/* Línea de activo apagada */
.home .main-header-menu .current-menu-item > .menu-link::after,
.home .main-header-menu .current_page_item > .menu-link::after,
.home .main-header-menu .current-menu-ancestor > .menu-link::after {
    width: 0 !important;
}

/* Solo al pasar el mouse */
.home .main-header-menu .menu-link:hover {
    color: #f4b13e !important;
}

.home .main-header-menu .menu-link:hover::after {
    width: 65% !important;
}
/* ==============================
   BOTÓN VER MENÚ - HERO
============================== */

.cafeteria-hero .wp-block-button__link {
    background: #f4a62a !important;
    color: #2b1208 !important;
    border-radius: 18px !important;
    padding: 16px 34px !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    transition: all 0.25s ease !important;
}

/* Efecto al pasar el mouse */
.cafeteria-hero .wp-block-button__link:hover {
    background: #ffbd3f !important;
    color: #2b1208 !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* Efecto al hacer clic */
.cafeteria-hero .wp-block-button__link:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}
/* ==============================
   BOTÓN VER MENÚ - HERO
============================== */

.cafeteria-hero .wp-block-button__link {
    background: #f4a62a !important;
    color: #2b1208 !important;
    border-radius: 18px !important;
    padding: 16px 34px !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    transition: all 0.25s ease !important;
}

/* Efecto al pasar el mouse */
.cafeteria-hero .wp-block-button__link:hover {
    background: #ffbd3f !important;
    color: #2b1208 !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* Efecto al hacer clic */
.cafeteria-hero .wp-block-button__link:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}
/* Desplazamiento suave al tocar categorías */
html {
    scroll-behavior: smooth;
}

/* Espacio superior al llegar a una sección */
.menu-category-section {
    scroll-margin-top: 120px;
    padding: 50px 30px 30px 30px;
}

.menu-category-section h2 {
    font-size: 34px;
    font-weight: 900;
    color: #3a1d0f;
    margin-bottom: 24px;
    text-align: left;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}
/* ==============================
   TARJETAS CLICKEABLES
============================== */

.cafeteria-category-card {
    position: relative !important;
    overflow: hidden !important;
}

/* Botón invisible que cubre toda la tarjeta */
.cafeteria-category-card .wp-block-button,
.cafeteria-category-card .wp-block-button__link {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 13px !important;
    background: transparent !important;
    color: transparent !important;
    font-size: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

/* Mantiene visibles el título y la imagen */
.cafeteria-category-card h1,
.cafeteria-category-card h2,
.cafeteria-category-card h3,
.cafeteria-category-card h4,
.cafeteria-category-card p,
.cafeteria-category-card img {
    position: relative;
    z-index: 2;
}
/* Tarjetas de categoría como enlaces */
a.cafeteria-category-card {
    text-decoration: none !important;
    color: inherit !important;
}

a.cafeteria-category-card:hover {
    text-decoration: none !important;
}
/* ==============================
   FOOTER CAFETERÍA FULL WIDTH
============================== */

/* Hace que el footer use todo el ancho aunque Astra limite el contenido */
.cafeteria-footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    background: #fff8ef;
    color: #2b1a10;
    padding: 65px 35px 0 35px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(75, 36, 18, 0.12);
}

/* Decoración suave de fondo */
.cafeteria-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(244, 166, 42, 0.14), transparent 26%),
        radial-gradient(circle at 82% 75%, rgba(75, 36, 18, 0.08), transparent 28%);
    pointer-events: none;
}

/* Contenido interno centrado */
.cafeteria-footer-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1fr;
    gap: 38px;
    align-items: start;
}

.cafeteria-footer h3 {
    color: #3a1d0f;
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 18px;
}

.cafeteria-footer p {
    color: #5d4638;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cafeteria-footer a {
    color: #3a1d0f;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    transition: all 0.22s ease;
}

.cafeteria-footer a:hover {
    color: #f4a62a;
    transform: translateX(4px);
}

/* Logo */
.cafeteria-footer-brand img {
    max-width: 125px;
    height: auto;
    margin-bottom: 18px;
    filter: drop-shadow(0 10px 24px rgba(244, 166, 42, 0.18));
}

.cafeteria-footer-brand p {
    max-width: 340px;
}

/* Botón WhatsApp */
.cafeteria-footer-whatsapp {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 14px;
    background: #25D366;
    color: #ffffff !important;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.cafeteria-footer-whatsapp:hover {
    background: #1ebe5d;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
}

/* Iconos sociales */
.cafeteria-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.cafeteria-social-icons a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}

.cafeteria-social-icons a:hover {
    transform: translateY(-4px) !important;
}

.social-whatsapp {
    background: #25D366;
}

.social-facebook {
    background: #1877F2;
}

.social-instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C, #FCAF45);
}

.cafeteria-footer-note {
    max-width: 230px;
    font-size: 15px;
}

/* Franja inferior */
.cafeteria-footer-bottom {
    position: relative;
    z-index: 2;
    margin: 45px -35px 0 -35px;
    padding: 18px 35px;
    background: #3a1d0f;
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.cafeteria-footer-bottom p {
    font-size: 14px;
    margin: 0;
    color: #fff8ef;
}

.cafeteria-footer-bottom strong {
    color: #f4a62a;
}

/* Ocultar footer por defecto de Astra si aparece */
.site-footer {
    display: none !important;
}

/* Responsive */
@media (max-width: 921px) {
    .cafeteria-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .cafeteria-footer-bottom {
        text-align: center;
    }
}

@media (max-width: 544px) {
    .cafeteria-footer {
        padding: 50px 24px 0 24px;
    }

    .cafeteria-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .cafeteria-footer-brand p,
    .cafeteria-footer-note {
        max-width: 100%;
    }

    .cafeteria-footer-brand img {
        margin-left: auto;
        margin-right: auto;
    }

    .cafeteria-social-icons {
        justify-content: center;
    }

    .cafeteria-footer-whatsapp {
        margin-left: auto;
        margin-right: auto;
    }

    .cafeteria-footer a:hover {
        transform: none;
    }

    .cafeteria-footer-bottom {
        margin-left: -24px;
        margin-right: -24px;
        flex-direction: column;
        gap: 8px;
    }
}
/* ==============================
   FORZAR FOOTER A TODO EL ANCHO
============================== */

.home .entry-content {
    overflow-x: hidden;
}

.home .cafeteria-footer {
    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* El contenido interno sí queda centrado y ordenado */
.home .cafeteria-footer-content {
    max-width: 1180px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 35px !important;
    padding-right: 35px !important;
}

/* Franja inferior también a todo el ancho */
.home .cafeteria-footer-bottom {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 35px !important;
    padding-right: 35px !important;
}
/* ==============================
   SECCIÓN EXTRA: PROMO + BENEFICIOS + PASOS
============================== */

.cafeteria-extra-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #fff8ef;
    padding: 35px 30px 25px 30px;
}

/* ==============================
   PROMOCIÓN
============================== */

.cafeteria-promo-banner {
    max-width: 1180px;
    margin: 0 auto 65px auto;
    background: linear-gradient(135deg, #3a1d0f 0%, #5a2a12 55%, #7a3a16 100%);
    border-radius: 28px;
    padding: 34px 38px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    box-shadow: 0 18px 45px rgba(58, 29, 15, 0.24);
    position: relative;
    overflow: hidden;
}

.cafeteria-promo-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(244, 166, 42, 0.20), transparent 28%),
        radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.08), transparent 26%);
    pointer-events: none;
}

.cafeteria-promo-icon,
.cafeteria-promo-text,
.cafeteria-promo-action {
    position: relative;
    z-index: 2;
}

.cafeteria-promo-icon {
    width: 86px;
    height: 86px;
    background: #f4a62a;
    color: #3a1d0f;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.cafeteria-promo-text span {
    color: #f4a62a;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.cafeteria-promo-text h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    margin: 4px 0 8px 0;
}

.cafeteria-promo-text p {
    color: #f7e8d6;
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
}

.cafeteria-promo-action a {
    background: #25D366;
    color: #ffffff !important;
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none !important;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
    transition: all 0.25s ease;
}

.cafeteria-promo-action a:hover {
    transform: translateY(-3px);
    background: #1ebe5d;
}

/* ==============================
   BENEFICIOS
============================== */

.cafeteria-benefits,
.cafeteria-order-steps {
    max-width: 1180px;
    margin: 0 auto 70px auto;
    text-align: center;
}

.cafeteria-benefits h2,
.cafeteria-order-steps h2 {
    color: #3a1d0f;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 8px;
}

.cafeteria-section-subtitle {
    color: #6f5c51;
    font-size: 17px;
    margin-bottom: 34px;
}

.cafeteria-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.cafeteria-benefit-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 22px;
    border: 1px solid rgba(75, 36, 18, 0.10);
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
}

.cafeteria-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.10);
    border-color: rgba(244, 166, 42, 0.55);
}

.benefit-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px auto;
    background: #fff0d2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.cafeteria-benefit-card h3 {
    color: #3a1d0f;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.cafeteria-benefit-card p {
    color: #6f5c51;
    line-height: 1.5;
    margin: 0;
}

/* ==============================
   PASOS DE PEDIDO
============================== */

.cafeteria-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    counter-reset: steps;
}

.cafeteria-step-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 22px 28px 22px;
    border: 1px solid rgba(75, 36, 18, 0.10);
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.25s ease;
}

.cafeteria-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.10);
    border-color: rgba(244, 166, 42, 0.55);
}

.cafeteria-step-card span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f4a62a;
    color: #3a1d0f;
    font-weight: 900;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    box-shadow: 0 10px 22px rgba(244, 166, 42, 0.35);
}

.cafeteria-step-card h3 {
    color: #3a1d0f;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.cafeteria-step-card p {
    color: #6f5c51;
    line-height: 1.5;
    margin: 0;
}

/* ==============================
   RESPONSIVE SECCIÓN EXTRA
============================== */

@media (max-width: 921px) {
    .cafeteria-promo-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cafeteria-promo-icon {
        margin: 0 auto;
    }

    .cafeteria-benefit-grid,
    .cafeteria-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 544px) {
    .cafeteria-extra-section {
        padding: 30px 20px 20px 20px;
    }

    .cafeteria-promo-banner {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .cafeteria-promo-text h2,
    .cafeteria-benefits h2,
    .cafeteria-order-steps h2 {
        font-size: 28px;
    }

    .cafeteria-benefit-grid,
    .cafeteria-steps-grid {
        grid-template-columns: 1fr;
    }
}
/* Separador crema suave */
.cafeteria-soft-separator {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 70px;
    background: linear-gradient(180deg, #fff8ef 0%, #ffffff 100%);
    border-top: 1px solid rgba(75, 36, 18, 0.08);
    border-bottom: 1px solid rgba(75, 36, 18, 0.08);
}
.cafeteria-mini-banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #3a1d0f;
    color: #fff8ef;
    text-align: center;
    padding: 18px 20px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.cafeteria-mini-banner p {
    margin: 0;
    color: #fff8ef;
}
/* ==============================
   PRODUCTOS POR CATEGORÍA - TABS
============================== */

.cafeteria-products-tabs {
    width: 100%;
    max-width: 1180px;
    margin: 45px auto 80px auto;
    padding: 0 30px;
}

/* Ocultar todos los paneles */
.cafeteria-products-panel {
    display: none !important;
    animation: cafeteriaFadeIn 0.25s ease;
}

/* Mostrar solo el panel activo */
.cafeteria-products-panel.active {
    display: block !important;
}

/* Título de categoría */
.cafeteria-products-panel h2 {
    text-align: center !important;
    font-size: 38px !important;
    font-weight: 900 !important;
    color: #3a1d0f !important;
    margin: 0 auto 35px auto !important;
}

/* Línea dorada debajo del título */
.cafeteria-products-panel h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    background: #f4a62a;
    border-radius: 99px;
    margin: 12px auto 0 auto;
}

/* Animación suave al cambiar categoría */
@keyframes cafeteriaFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================
   GRID DE PRODUCTOS WOOCOMMERCE
============================== */

.cafeteria-products-tabs .woocommerce {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.cafeteria-products-tabs .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.cafeteria-products-tabs .woocommerce ul.products::before,
.cafeteria-products-tabs .woocommerce ul.products::after {
    display: none !important;
    content: none !important;
}

.cafeteria-products-tabs .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;

    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 14px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
    overflow: hidden !important;
    text-align: left !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;

    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cafeteria-products-tabs .woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.13) !important;
}

/* Imagen producto */
.cafeteria-products-tabs .woocommerce ul.products li.product img {
    width: 100% !important;
    height: 190px !important;
    object-fit: cover !important;
    border-radius: 15px !important;
    margin-bottom: 14px !important;
}

/* Categoría del producto si Astra la muestra */
.cafeteria-products-tabs .woocommerce ul.products li.product .ast-woo-product-category {
    color: #8a7a6d !important;
    font-size: 13px !important;
    margin-bottom: 6px !important;
}

/* Nombre producto */
.cafeteria-products-tabs .woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #2b1a10 !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
    min-height: 44px !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
}

/* Precio */
.cafeteria-products-tabs .woocommerce ul.products li.product .price {
    color: #f4a62a !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    margin-bottom: 12px !important;
}

/* Descripción corta si aparece */
.cafeteria-products-tabs .woocommerce ul.products li.product .woocommerce-product-details__short-description,
.cafeteria-products-tabs .woocommerce ul.products li.product .ast-woo-shop-product-description {
    color: #5d4638 !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
}

/* Botón WhatsApp producto */
.cafeteria-products-tabs .woocommerce ul.products li.product .cafeteria-whatsapp-btn {
    margin-top: auto !important;
    background: #fff0d2 !important;
    color: #3a1d0f !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-decoration: none !important;
    width: 100% !important;
    display: block !important;
    transition: all 0.22s ease;
}

.cafeteria-products-tabs .woocommerce ul.products li.product .cafeteria-whatsapp-btn:hover {
    background: #f4a62a !important;
    color: #2b1208 !important;
    transform: translateY(-2px);
}

/* ==============================
   RESPONSIVE PRODUCTOS
============================== */

/* Laptop/tablet grande: 3 columnas */
@media (max-width: 1100px) {
    .cafeteria-products-tabs .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .cafeteria-products-tabs .woocommerce ul.products li.product img {
        height: 185px !important;
    }
}

/* Tablet: 2 columnas */
@media (max-width: 768px) {
    .cafeteria-products-tabs {
        padding: 0 22px;
        margin: 35px auto 65px auto;
    }

    .cafeteria-products-tabs .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }

    .cafeteria-products-panel h2 {
        font-size: 32px !important;
    }

    .cafeteria-products-tabs .woocommerce ul.products li.product img {
        height: 175px !important;
    }
}

/* Celular: 1 columna */
@media (max-width: 544px) {
    .cafeteria-products-tabs {
        padding: 0 18px;
    }

    .cafeteria-products-tabs .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }

    .cafeteria-products-tabs .woocommerce ul.products li.product img {
        height: 210px !important;
    }

    .cafeteria-products-panel h2 {
        font-size: 30px !important;
    }
}/* ==============================
   CENTRAR TÍTULO DE CATEGORÍA ACTIVA
============================== */

.cafeteria-products-panel h2 {
    text-align: center !important;
    font-size: 38px !important;
    font-weight: 900 !important;
    color: #3a1d0f !important;
    margin: 0 auto 35px auto !important;
}

.cafeteria-products-panel h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #f4a62a;
    border-radius: 99px;
    margin: 12px auto 0 auto;
}
/* ==============================
   PÁGINA CONTACTO MEJORADA
============================== */

.cafeteria-contact-page {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #fff8ef;
    padding: 55px 30px 80px 30px;
}

/* ==============================
   FRANJA SUPERIOR
============================== */

.cafeteria-contact-topbar {
    max-width: 1180px;
    margin: 0 auto 38px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f3f1ef;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.cafeteria-contact-top-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 24px;
    border-right: 1px solid rgba(0,0,0,0.05);
}

.cafeteria-contact-top-item:last-child {
    border-right: none;
}

.cafeteria-contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    border: 2px solid #99b80d;
    color: #99b80d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: #ffffff;
}

.cafeteria-contact-top-item strong {
    display: block;
    color: #3a1d0f;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 5px;
}

.cafeteria-contact-top-item p {
    margin: 0;
    color: #6f5c51;
    font-size: 15px;
    line-height: 1.5;
}

/* ==============================
   CONTENIDO PRINCIPAL
============================== */

.cafeteria-contact-main {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
}

/* TARJETA MAPA */
.cafeteria-contact-map-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 14px 38px rgba(0,0,0,0.08);
    border: 1px solid rgba(75, 36, 18, 0.08);
}

.cafeteria-contact-map-card h2 {
    color: #3a1d0f;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 10px;
}

.cafeteria-contact-map-card p {
    color: #6f5c51;
    font-size: 16px;
    margin-bottom: 20px;
}

.cafeteria-contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.cafeteria-contact-map iframe {
    display: block;
    width: 100%;
    min-height: 450px;
}

/* TARJETA FORMULARIO */
.cafeteria-contact-form-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 14px 38px rgba(0,0,0,0.08);
    border: 1px solid rgba(75, 36, 18, 0.08);
}

.cafeteria-contact-form-card > span {
    color: #f4a62a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.cafeteria-contact-form-card h2 {
    color: #3a1d0f;
    font-size: 34px;
    font-weight: 900;
    margin: 8px 0 10px 0;
}

.cafeteria-contact-form-card > p {
    color: #6f5c51;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ==============================
   WPFORMS
============================== */

.cafeteria-contact-form-card .wpforms-container {
    margin: 0 !important;
}

.cafeteria-contact-form-card .wpforms-field {
    padding: 8px 0 !important;
}

.cafeteria-contact-form-card .wpforms-field-label {
    color: #3a1d0f !important;
    font-weight: 800 !important;
    margin-bottom: 7px !important;
}

.cafeteria-contact-form-card input,
.cafeteria-contact-form-card textarea,
.cafeteria-contact-form-card select {
    width: 100% !important;
    border: 1px solid rgba(75, 36, 18, 0.18) !important;
    border-radius: 14px !important;
    padding: 13px 15px !important;
    background: #fffaf4 !important;
    color: #2b1a10 !important;
    font-size: 15px !important;
    box-shadow: none !important;
}

.cafeteria-contact-form-card input:focus,
.cafeteria-contact-form-card textarea:focus,
.cafeteria-contact-form-card select:focus {
    border-color: #f4a62a !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(244, 166, 42, 0.18) !important;
}

.cafeteria-contact-form-card textarea {
    min-height: 150px !important;
}

.cafeteria-contact-form-card .wpforms-submit {
    background: #f4a62a !important;
    color: #3a1d0f !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 14px 28px !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    transition: all 0.25s ease !important;
}

.cafeteria-contact-form-card .wpforms-submit:hover {
    background: #ffbd3f !important;
    transform: translateY(-3px);
}

/* Nombre compuesto WPForms */
.cafeteria-contact-form-card .wpforms-field-name .wpforms-field-row {
    display: flex !important;
    gap: 18px !important;
}

.cafeteria-contact-form-card .wpforms-field-name .wpforms-field-row-block {
    width: 50% !important;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1024px) {
    .cafeteria-contact-topbar {
        grid-template-columns: repeat(2, 1fr);
    }

    .cafeteria-contact-top-item:nth-child(2) {
        border-right: none;
    }

    .cafeteria-contact-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 544px) {
    .cafeteria-contact-page {
        padding: 35px 18px 60px 18px;
    }

    .cafeteria-contact-topbar {
        grid-template-columns: 1fr;
    }

    .cafeteria-contact-top-item {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .cafeteria-contact-top-item:last-child {
        border-bottom: none;
    }

    .cafeteria-contact-map-card,
    .cafeteria-contact-form-card {
        padding: 22px;
        border-radius: 20px;
    }

    .cafeteria-contact-map-card h2,
    .cafeteria-contact-form-card h2 {
        font-size: 28px;
    }

    .cafeteria-contact-form-card .wpforms-field-name .wpforms-field-row {
        display: block !important;
    }

    .cafeteria-contact-form-card .wpforms-field-name .wpforms-field-row-block {
        width: 100% !important;
        margin-bottom: 12px !important;
    }
}
/* ==============================
   PÁGINA ACERCA DE NOSOTROS
============================== */

.cafeteria-about-page {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #fff8ef;
    color: #2b1a10;
}

/* HERO */
.cafeteria-about-hero {
    min-height: 420px;
    background:
        linear-gradient(90deg, rgba(18,8,4,0.82), rgba(18,8,4,0.35)),
        url("URL-DE-IMAGEN-HERO-NOSOTROS");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 35px 70px 35px;
}

.cafeteria-about-hero-content {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

.cafeteria-about-hero span,
.cafeteria-about-story span {
    color: #f4a62a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.cafeteria-about-hero h1 {
    max-width: 680px;
    color: #ffffff;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 900;
    margin: 12px 0 18px 0;
}

.cafeteria-about-hero p {
    max-width: 580px;
    color: #f7e8d6;
    font-size: 19px;
    line-height: 1.6;
}

/* HISTORIA */
.cafeteria-about-story {
    max-width: 1180px;
    margin: 0 auto;
    padding: 75px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.cafeteria-about-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.cafeteria-about-text h2 {
    color: #3a1d0f;
    font-size: 40px;
    font-weight: 900;
    margin: 10px 0 18px 0;
}

.cafeteria-about-text p {
    color: #6f5c51;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* VALORES */
.cafeteria-about-values {
    background: #ffffff;
    padding: 75px 30px;
    text-align: center;
}

.cafeteria-about-values h2,
.cafeteria-about-gallery h2,
.cafeteria-about-cta h2 {
    color: #3a1d0f;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 10px;
}

.cafeteria-about-values > p,
.cafeteria-about-gallery > p,
.cafeteria-about-cta > p {
    color: #6f5c51;
    font-size: 17px;
    margin-bottom: 36px;
}

.cafeteria-about-values-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.cafeteria-about-value-card {
    background: #fff8ef;
    border: 1px solid rgba(75, 36, 18, 0.10);
    border-radius: 24px;
    padding: 32px 22px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

.cafeteria-about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.10);
    border-color: rgba(244, 166, 42, 0.55);
}

.cafeteria-about-value-card div {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px auto;
    background: #fff0d2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.cafeteria-about-value-card h3 {
    color: #3a1d0f;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.cafeteria-about-value-card p {
    color: #6f5c51;
    line-height: 1.5;
    margin: 0;
}

/* MISIÓN VISIÓN VALORES */
.cafeteria-about-mission {
    max-width: 1180px;
    margin: 0 auto;
    padding: 75px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cafeteria-about-mission-card {
    background: linear-gradient(135deg, #3a1d0f 0%, #5a2a12 100%);
    color: #ffffff;
    border-radius: 26px;
    padding: 34px 28px;
    box-shadow: 0 14px 36px rgba(58,29,15,0.20);
}

.cafeteria-about-mission-card h3 {
    color: #f4a62a;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 14px;
}

.cafeteria-about-mission-card p {
    color: #f7e8d6;
    line-height: 1.6;
    margin: 0;
}

/* GALERÍA */
.cafeteria-about-gallery {
    padding: 75px 30px;
    background: #fff8ef;
    text-align: center;
}

.cafeteria-about-gallery-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cafeteria-about-gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    transition: all 0.25s ease;
}

.cafeteria-about-gallery-grid img:hover {
    transform: scale(1.02);
}

/* CTA */
.cafeteria-about-cta {
    background: linear-gradient(135deg, #3a1d0f 0%, #5a2a12 100%);
    text-align: center;
    padding: 70px 30px;
}

.cafeteria-about-cta h2 {
    color: #ffffff;
}

.cafeteria-about-cta p {
    color: #f7e8d6;
}

.cafeteria-about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cafeteria-about-cta-buttons a {
    background: #f4a62a;
    color: #2b1208 !important;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.cafeteria-about-cta-buttons a:nth-child(2) {
    background: #25D366;
    color: #ffffff !important;
}

.cafeteria-about-cta-buttons a:hover {
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 921px) {
    .cafeteria-about-story,
    .cafeteria-about-mission {
        grid-template-columns: 1fr;
    }

    .cafeteria-about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cafeteria-about-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 544px) {
    .cafeteria-about-hero {
        min-height: 360px;
        padding: 100px 22px 55px 22px;
    }

    .cafeteria-about-hero h1 {
        font-size: 34px;
    }

    .cafeteria-about-story,
    .cafeteria-about-values,
    .cafeteria-about-mission,
    .cafeteria-about-gallery,
    .cafeteria-about-cta {
        padding: 55px 22px;
    }

    .cafeteria-about-values-grid,
    .cafeteria-about-gallery-grid {
        grid-template-columns: 1fr;
    }

    .cafeteria-about-image img,
    .cafeteria-about-gallery-grid img {
        height: 240px;
    }

    .cafeteria-about-text h2,
    .cafeteria-about-values h2,
    .cafeteria-about-gallery h2,
    .cafeteria-about-cta h2 {
        font-size: 30px;
    }
}
/* ==============================
   PÁGINA PROMOCIONES
============================== */

.cafeteria-promos-page {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #fff8ef;
    color: #2b1a10;
}

/* HERO */
.cafeteria-promos-hero {
    min-height: 390px;
    background:
        linear-gradient(90deg, rgba(18,8,4,0.86), rgba(18,8,4,0.35)),
        url("URL-IMAGEN-HERO-PROMOCIONES");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 35px 70px 35px;
}

.cafeteria-promos-hero-content {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

.cafeteria-promos-hero span,
.cafeteria-featured-promo-info span,
.cafeteria-promo-card-content span {
    color: #f4a62a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.cafeteria-promos-hero h1 {
    max-width: 700px;
    color: #ffffff;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 900;
    margin: 12px 0 18px 0;
}

.cafeteria-promos-hero p {
    max-width: 600px;
    color: #f7e8d6;
    font-size: 19px;
    line-height: 1.6;
}

/* PROMOCIÓN DESTACADA */
.cafeteria-featured-promo {
    max-width: 1180px;
    margin: 75px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.cafeteria-featured-promo-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

.cafeteria-featured-promo-info {
    background: #ffffff;
    padding: 42px;
    border-radius: 30px;
    border: 1px solid rgba(75, 36, 18, 0.10);
    box-shadow: 0 14px 38px rgba(0,0,0,0.08);
}

.cafeteria-featured-promo-info h2 {
    color: #3a1d0f;
    font-size: 44px;
    font-weight: 900;
    margin: 10px 0 14px 0;
}

.cafeteria-featured-promo-info p {
    color: #6f5c51;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cafeteria-promo-price {
    color: #f4a62a;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
}

.cafeteria-featured-promo-info a {
    display: inline-block;
    background: #25D366;
    color: #ffffff !important;
    padding: 15px 26px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
    transition: all 0.25s ease;
}

.cafeteria-featured-promo-info a:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* GRID PROMOS */
.cafeteria-promos-grid-section {
    max-width: 1180px;
    margin: 0 auto 75px auto;
    padding: 0 30px;
    text-align: center;
}

.cafeteria-promos-grid-section h2,
.cafeteria-promos-steps h2 {
    color: #3a1d0f;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 8px;
}

.cafeteria-promos-grid-section > p {
    color: #6f5c51;
    font-size: 17px;
    margin-bottom: 35px;
}

.cafeteria-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.cafeteria-promo-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(75, 36, 18, 0.10);
    text-align: left;
    transition: all 0.25s ease;
}

.cafeteria-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.13);
}

.cafeteria-promo-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.cafeteria-promo-card-content {
    padding: 24px;
}

.cafeteria-promo-card-content h3 {
    color: #3a1d0f;
    font-size: 24px;
    font-weight: 900;
    margin: 8px 0 10px 0;
}

.cafeteria-promo-card-content p {
    color: #6f5c51;
    line-height: 1.5;
    margin-bottom: 12px;
}

.cafeteria-promo-card-content strong {
    display: block;
    color: #f4a62a;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 18px;
}

.cafeteria-promo-card-content a {
    display: inline-block;
    background: #fff0d2;
    color: #3a1d0f !important;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.cafeteria-promo-card-content a:hover {
    background: #f4a62a;
    transform: translateY(-3px);
}

/* PASOS */
.cafeteria-promos-steps {
    background: #ffffff;
    padding: 70px 30px;
    text-align: center;
}

.cafeteria-promos-steps-grid {
    max-width: 950px;
    margin: 35px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cafeteria-promos-steps-grid div {
    background: #fff8ef;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    border: 1px solid rgba(75, 36, 18, 0.10);
}

.cafeteria-promos-steps-grid span {
    width: 54px;
    height: 54px;
    background: #f4a62a;
    color: #3a1d0f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    font-weight: 900;
    font-size: 22px;
}

.cafeteria-promos-steps-grid h3 {
    color: #3a1d0f;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

.cafeteria-promos-steps-grid p {
    color: #6f5c51;
    margin: 0;
}

/* NOTA */
.cafeteria-promos-note {
    background: #3a1d0f;
    color: #ffffff;
    text-align: center;
    padding: 24px 30px;
}

.cafeteria-promos-note p {
    margin: 0;
    color: #fff8ef;
    font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 921px) {
    .cafeteria-featured-promo {
        grid-template-columns: 1fr;
    }

    .cafeteria-promos-grid,
    .cafeteria-promos-steps-grid {
        grid-template-columns: 1fr;
    }

    .cafeteria-promos-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 544px) {
    .cafeteria-promos-hero {
        min-height: 330px;
        padding: 100px 22px 55px 22px;
    }

    .cafeteria-promos-hero h1 {
        font-size: 34px;
    }

    .cafeteria-featured-promo,
    .cafeteria-promos-grid-section {
        padding: 0 22px;
        margin: 55px auto;
    }

    .cafeteria-featured-promo-info {
        padding: 28px 22px;
    }

    .cafeteria-featured-promo-info h2 {
        font-size: 34px;
    }

    .cafeteria-promo-price {
        font-size: 40px;
    }

    .cafeteria-featured-promo-image img {
        height: 320px;
    }
}
/* ==============================
   PÁGINA PROMOCIONES CON WOOCOMMERCE
============================== */

.cafeteria-promos-page {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #fff8ef;
    color: #2b1a10;
}

/* HERO */
.cafeteria-promos-hero {
    min-height: 390px;
    background:
        linear-gradient(90deg, rgba(18,8,4,0.86), rgba(18,8,4,0.35)),
        url("URL-IMAGEN-HERO-PROMOCIONES");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 35px 70px 35px;
}

.cafeteria-promos-hero-content {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

.cafeteria-promos-hero span {
    color: #f4a62a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.cafeteria-promos-hero h1 {
    max-width: 700px;
    color: #ffffff;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 900;
    margin: 12px 0 18px 0;
}

.cafeteria-promos-hero p {
    max-width: 600px;
    color: #f7e8d6;
    font-size: 19px;
    line-height: 1.6;
}

/* PRODUCTOS PROMOCIONES */
.cafeteria-promos-products {
    max-width: 1180px;
    margin: 75px auto;
    padding: 0 30px;
    text-align: center;
}

.cafeteria-promos-products h2 {
    color: #3a1d0f;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 8px;
}

.cafeteria-promos-products > p {
    color: #6f5c51;
    font-size: 17px;
    margin-bottom: 36px;
}

.cafeteria-promos-products .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.cafeteria-promos-products .woocommerce ul.products::before,
.cafeteria-promos-products .woocommerce ul.products::after {
    display: none !important;
    content: none !important;
}

.cafeteria-promos-products .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 16px !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(75, 36, 18, 0.10);
    overflow: hidden !important;
    text-align: left !important;
    transition: all 0.25s ease;
}

.cafeteria-promos-products .woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.13) !important;
}

.cafeteria-promos-products .woocommerce ul.products li.product img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    border-radius: 18px !important;
    margin-bottom: 16px !important;
}

.cafeteria-promos-products .woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #3a1d0f !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    min-height: 52px;
    padding: 0 !important;
    margin-bottom: 10px !important;
}

.cafeteria-promos-products .woocommerce ul.products li.product .price {
    color: #f4a62a !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    margin-bottom: 14px !important;
}

.cafeteria-promos-products .woocommerce ul.products li.product .cafeteria-whatsapp-btn {
    background: #25D366 !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 13px 20px !important;
    font-weight: 900 !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    text-decoration: none !important;
}

.cafeteria-promos-products .woocommerce ul.products li.product .cafeteria-whatsapp-btn:hover {
    background: #1ebe5d !important;
    transform: translateY(-2px);
}

/* PASOS */
.cafeteria-promos-steps {
    background: #ffffff;
    padding: 70px 30px;
    text-align: center;
}

.cafeteria-promos-steps h2 {
    color: #3a1d0f;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 8px;
}

.cafeteria-promos-steps-grid {
    max-width: 950px;
    margin: 35px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cafeteria-promos-steps-grid div {
    background: #fff8ef;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    border: 1px solid rgba(75, 36, 18, 0.10);
}

.cafeteria-promos-steps-grid span {
    width: 54px;
    height: 54px;
    background: #f4a62a;
    color: #3a1d0f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    font-weight: 900;
    font-size: 22px;
}

.cafeteria-promos-steps-grid h3 {
    color: #3a1d0f;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

.cafeteria-promos-steps-grid p {
    color: #6f5c51;
    margin: 0;
}

/* NOTA */
.cafeteria-promos-note {
    background: #3a1d0f;
    color: #ffffff;
    text-align: center;
    padding: 24px 30px;
}

.cafeteria-promos-note p {
    margin: 0;
    color: #fff8ef;
    font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 921px) {
    .cafeteria-promos-products .woocommerce ul.products,
    .cafeteria-promos-steps-grid {
        grid-template-columns: 1fr !important;
    }

    .cafeteria-promos-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 544px) {
    .cafeteria-promos-hero {
        min-height: 330px;
        padding: 100px 22px 55px 22px;
    }

    .cafeteria-promos-hero h1 {
        font-size: 34px;
    }

    .cafeteria-promos-products {
        padding: 0 22px;
        margin: 55px auto;
    }

    .cafeteria-promos-products h2,
    .cafeteria-promos-steps h2 {
        font-size: 30px;
    }

    .cafeteria-promos-products .woocommerce ul.products li.product img {
        height: 230px !important;
    }
}
/* ==============================
   PÁGINA MENÚ / SHOP
============================== */

.woocommerce-shop .woocommerce-products-header__title.page-title,
.tax-product_cat .woocommerce-products-header__title.page-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #3a1d0f;
    margin-bottom: 12px;
}

.woocommerce-breadcrumb {
    color: #6f5c51;
    font-weight: 600;
}

.woocommerce-breadcrumb a {
    color: #3a1d0f;
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
    color: #f4a62a;
}

.cafeteria-shop-categories {
    max-width: 1180px;
    margin: 0 auto 45px auto;
    padding: 20px 20px 10px 20px;
    text-align: center;
}

.cafeteria-shop-categories h2 {
    font-size: 30px;
    font-weight: 900;
    color: #3a1d0f;
    margin-bottom: 24px;
}

.cafeteria-shop-categories-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.cafeteria-shop-category-card {
    background: #ffffff;
    color: #3a1d0f !important;
    border: 1px solid rgba(75, 36, 18, 0.16);
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.22s ease;
}

.cafeteria-shop-category-card:hover {
    background: #f4a62a;
    color: #2b1208 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(244,166,42,0.22);
}

@media (max-width: 544px) {
    .woocommerce-shop .woocommerce-products-header__title.page-title,
    .tax-product_cat .woocommerce-products-header__title.page-title {
        font-size: 34px;
    }

    .cafeteria-shop-categories-grid {
        gap: 10px;
    }

    .cafeteria-shop-category-card {
        padding: 11px 16px;
        font-size: 14px;
    }
}
/* Ocultar contador y selector de orden en página Menú */
.woocommerce-result-count,
.woocommerce-ordering {
    display: none !important;
}
/* Botón WhatsApp en producto individual */
.cafeteria-whatsapp-btn-single {
    display: inline-block !important;
    background: #25D366 !important;
    color: #ffffff !important;
    padding: 14px 26px !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.cafeteria-whatsapp-btn-single:hover {
    background: #1ebe5d !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}
/* ==============================
   CARRITO / PEDIDO POR WHATSAPP
============================== */

/* Botón enviar carrito por WhatsApp */
.cafeteria-whatsapp-cart-btn {
    display: block !important;
    width: 100%;
    text-align: center;
    background: #25D366 !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 15px 22px !important;
    font-weight: 900 !important;
    margin-bottom: 14px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.cafeteria-whatsapp-cart-btn:hover {
    background: #1ebe5d !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Botón WhatsApp de productos en listados */
.cafeteria-whatsapp-btn {
    background-color: #25D366 !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 12px 20px !important;
    font-weight: 800 !important;
    text-align: center;
    width: 100%;
    display: block;
    text-decoration: none !important;
}

.cafeteria-whatsapp-btn:hover {
    background-color: #1ebe5d !important;
    color: #ffffff !important;
    opacity: 0.95;
}

/* Botón flotante WhatsApp */
.cafeteria-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    background-color: #25D366;
    color: #ffffff !important;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.cafeteria-whatsapp-float:hover {
    background-color: #1ebe5d;
    color: #ffffff !important;
}

/* Ocultar contador y selector solo en menú/categorías */
.woocommerce-shop .woocommerce-result-count,
.woocommerce-shop .woocommerce-ordering,
.tax-product_cat .woocommerce-result-count,
.tax-product_cat .woocommerce-ordering {
    display: none !important;
}

/* ==============================
   PRODUCTO INDIVIDUAL
============================== */

.single-product .product_title {
    color: #3a1d0f !important;
    font-weight: 900 !important;
}

.single-product .price {
    color: #f4a62a !important;
    font-size: 30px !important;
    font-weight: 900 !important;
}

.single-product form.cart .button {
    background: #f4a62a !important;
    color: #3a1d0f !important;
    border-radius: 999px !important;
    padding: 13px 24px !important;
    font-weight: 900 !important;
}

.single-product form.cart .button:hover {
    background: #ffbd3f !important;
    color: #3a1d0f !important;
}

.single-product form.cart input.qty {
    border-radius: 10px !important;
    border: 1px solid rgba(75, 36, 18, 0.20) !important;
    padding: 10px !important;
}

/* Si no quieres mostrar SKU y categoría, descomenta esta parte */
/*
.single-product .product_meta {
    display: none !important;
}
*/

/* ==============================
   PÁGINA MENÚ / SHOP
============================== */

.woocommerce-shop .woocommerce-products-header__title.page-title,
.tax-product_cat .woocommerce-products-header__title.page-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #3a1d0f;
    margin-bottom: 12px;
}

.woocommerce-breadcrumb {
    color: #6f5c51;
    font-weight: 600;
}

.woocommerce-breadcrumb a {
    color: #3a1d0f;
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
    color: #f4a62a;
}

.cafeteria-shop-categories {
    max-width: 1180px;
    margin: 0 auto 45px auto;
    padding: 20px 20px 10px 20px;
    text-align: center;
}

.cafeteria-shop-categories h2 {
    font-size: 30px;
    font-weight: 900;
    color: #3a1d0f;
    margin-bottom: 24px;
}

.cafeteria-shop-categories-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.cafeteria-shop-category-card {
    background: #ffffff;
    color: #3a1d0f !important;
    border: 1px solid rgba(75, 36, 18, 0.16);
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.22s ease;
}

.cafeteria-shop-category-card:hover {
    background: #f4a62a;
    color: #2b1208 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(244,166,42,0.22);
}

/* ==============================
   CARRITO
============================== */

.woocommerce-cart table.cart {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.woocommerce-cart .cart_totals {
    background: #fff8ef;
    border-radius: 20px;
    padding: 24px !important;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    background: #f4a62a !important;
    color: #3a1d0f !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
}

/* Si NO quieres que usen checkout normal y solo WhatsApp, descomenta esto */
/*
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    display: none !important;
}
*/

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 544px) {
    .woocommerce-shop .woocommerce-products-header__title.page-title,
    .tax-product_cat .woocommerce-products-header__title.page-title {
        font-size: 34px;
    }

    .cafeteria-shop-categories-grid {
        gap: 10px;
    }

    .cafeteria-shop-category-card {
        padding: 11px 16px;
        font-size: 14px;
    }

    .cafeteria-whatsapp-float {
        right: 16px;
        bottom: 16px;
        padding: 12px 18px;
        font-size: 14px;
    }
}
/* Ocultar checkout normal y dejar solo WhatsApp */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    display: none !important;
}
/* ==============================
   NOTA ESPECIAL EN PRODUCTO
============================== */

.cafeteria-product-note {
    margin: 18px 0 20px 0;
}

.cafeteria-product-note label {
    display: block;
    color: #3a1d0f;
    font-weight: 900;
    margin-bottom: 8px;
}

.cafeteria-product-note textarea {
    width: 100%;
    min-height: 95px;
    border: 1px solid rgba(75, 36, 18, 0.22);
    border-radius: 14px;
    padding: 13px 15px;
    background: #fffaf4;
    color: #2b1a10;
    font-size: 15px;
    resize: vertical;
}

.cafeteria-product-note textarea:focus {
    border-color: #f4a62a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 166, 42, 0.18);
}

/* Nota mostrada en carrito */
.woocommerce-cart .variation,
.woocommerce-checkout .variation {
    margin-top: 8px;
    color: #5d4638;
    font-size: 14px;
}

.woocommerce-cart .variation dt,
.woocommerce-checkout .variation dt {
    font-weight: 900;
    color: #3a1d0f;
}
/* ==============================
   DATOS DEL PEDIDO EN CARRITO
============================== */

.cafeteria-order-options {
    background: #fff8ef;
    border: 1px solid rgba(75, 36, 18, 0.14);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.cafeteria-order-options h3 {
    color: #3a1d0f;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 6px;
}

.cafeteria-order-help {
    color: #6f5c51;
    margin-bottom: 18px;
}

.cafeteria-order-field {
    margin-bottom: 16px;
}

.cafeteria-order-field label {
    display: block;
    color: #3a1d0f;
    font-weight: 900;
    margin-bottom: 8px;
}

.cafeteria-order-field select,
.cafeteria-order-field textarea {
    width: 100%;
    border: 1px solid rgba(75, 36, 18, 0.22);
    border-radius: 14px;
    padding: 13px 15px;
    background: #ffffff;
    color: #2b1a10;
    font-size: 15px;
}

.cafeteria-order-field textarea {
    min-height: 95px;
    resize: vertical;
}

.cafeteria-order-field select:focus,
.cafeteria-order-field textarea:focus {
    border-color: #f4a62a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 166, 42, 0.18);
}
/* Ocultar envío tradicional de WooCommerce en carrito */
.woocommerce-cart .cart_totals .woocommerce-shipping-totals {
    display: none !important;
}
/* ==============================
   CORREGIR SELECT DATOS DEL PEDIDO
============================== */

.cafeteria-order-field select {
    height: auto !important;
    min-height: 52px !important;
    line-height: 1.4 !important;
    padding: 13px 42px 13px 15px !important;
    box-sizing: border-box !important;
    appearance: auto !important;
    -webkit-appearance: menulist !important;
    display: block !important;
}

.cafeteria-order-field select option {
    padding: 10px !important;
    line-height: 1.4 !important;
}
/* ==============================
   SECCIÓN DE CONFIANZA
============================== */

.cafeteria-trust-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #ffffff;
    padding: 75px 30px;
}

.cafeteria-trust-wrapper {
    max-width: 1180px;
    margin: 0 auto;
}

.cafeteria-trust-header {
    text-align: center;
    margin-bottom: 38px;
}

.cafeteria-trust-header span {
    color: #f4a62a;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cafeteria-trust-header h2 {
    color: #3a1d0f;
    font-size: 40px;
    font-weight: 900;
    margin: 8px 0 10px 0;
}

.cafeteria-trust-header p {
    color: #6f5c51;
    font-size: 17px;
    margin: 0;
}

.cafeteria-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.cafeteria-trust-card {
    background: #fff8ef;
    border: 1px solid rgba(75, 36, 18, 0.10);
    border-radius: 24px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
}

.cafeteria-trust-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 166, 42, 0.55);
    box-shadow: 0 16px 35px rgba(0,0,0,0.10);
}

.cafeteria-trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px auto;
    background: #fff0d2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.cafeteria-trust-card h3 {
    color: #3a1d0f;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.cafeteria-trust-card p {
    color: #6f5c51;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 921px) {
    .cafeteria-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 544px) {
    .cafeteria-trust-section {
        padding: 55px 22px;
    }

    .cafeteria-trust-grid {
        grid-template-columns: 1fr;
    }

    .cafeteria-trust-header h2 {
        font-size: 30px;
    }
}

/* =========================================================
   MENÚ MÓVIL ASTRA - FIX LIMPIO FINAL
   Importante: este bloque debe ir al final del CSS.
========================================================= */

@media (max-width: 921px) {

    /* Header móvil transparente sobre el hero de inicio */
    .home .site-header {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        background: transparent !important;
        box-shadow: none !important;
        padding-top: 8px !important;
    }

    .home .main-header-bar,
    .home .ast-primary-header-bar,
    .home .site-header-section,
    .home .ast-mobile-header-wrap {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    /* Oculta el texto del título del sitio en móvil para que no se monte sobre el hero */
    .site-title,
    .site-title a,
    .ast-site-title-wrap {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* Logo móvil */
    .custom-logo,
    .custom-logo-link img,
    .home .custom-logo,
    .home .custom-logo-link img {
        max-width: 86px !important;
        width: 86px !important;
        height: auto !important;
    }

    .ast-site-identity {
        padding: 0 !important;
    }

    /* Botón hamburguesa */
    .ast-button-wrap .menu-toggle,
    .ast-mobile-menu-trigger-minimal {
        background: rgba(74, 31, 9, 0.94) !important;
        color: #ffffff !important;
        border-radius: 10px !important;
        padding: 8px 10px !important;
        border: none !important;
        position: relative !important;
        z-index: 999999 !important;
        box-shadow: 0 6px 18px rgba(0,0,0,0.25) !important;
        cursor: pointer !important;
    }

    .ast-button-wrap .menu-toggle svg,
    .ast-button-wrap .menu-toggle .ast-mobile-svg,
    .ast-mobile-menu-trigger-minimal svg,
    .ast-mobile-menu-trigger-minimal .ast-mobile-svg {
        fill: #ffffff !important;
        color: #ffffff !important;
    }

    /* Ajuste del hero móvil */
    .cafeteria-hero {
        min-height: 560px !important;
        padding: 115px 22px 55px 22px !important;
        background-position: center center !important;
    }

    .cafeteria-hero h1 {
        font-size: 36px !important;
        line-height: 1.1 !important;
    }

    .cafeteria-hero p {
        font-size: 17px !important;
        line-height: 1.45 !important;
        max-width: 95% !important;
    }

    .cafeteria-hero .wp-block-button__link {
        padding: 15px 28px !important;
        font-size: 17px !important;
    }

    /* Panel del menú móvil abierto */
    .ast-mobile-popup-drawer,
    .ast-mobile-popup-drawer.active,
    .ast-mobile-popup-inner,
    .ast-mobile-popup-content {
        background: #ffffff !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 999999 !important;
    }

    .ast-mobile-popup-content {
        padding: 22px 24px 35px 24px !important;
    }

    /* Contenedor/lista del menú móvil */
    .ast-mobile-popup-content .main-header-menu,
    .ast-mobile-popup-content .menu,
    .ast-mobile-popup-content nav,
    .ast-mobile-popup-content .ast-builder-menu-mobile,
    .ast-mobile-popup-content .main-navigation {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        margin: 18px 0 0 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
    }

    .ast-mobile-popup-content .main-header-menu .menu-item,
    .ast-mobile-popup-content .menu-item,
    .ast-mobile-popup-content li {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Links visibles siempre */
    .home .ast-mobile-popup-content .main-header-menu .menu-link,
    .home .ast-mobile-popup-content .menu-link,
    .home .ast-mobile-popup-content .menu-item > a,
    .ast-mobile-popup-content .main-header-menu .menu-link,
    .ast-mobile-popup-content .menu-link,
    .ast-mobile-popup-content .menu-item > a,
    .ast-header-break-point .ast-mobile-popup-content .main-header-menu .menu-link,
    .ast-header-break-point .ast-builder-menu-mobile .main-navigation .menu-item > .menu-link {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        color: #3a1d0f !important;
        background: #ffffff !important;
        font-size: 20px !important;
        font-weight: 900 !important;
        line-height: 1.4 !important;
        padding: 15px 10px !important;
        margin: 0 !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(244, 166, 42, 0.45) !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
    }

    /* Apaga líneas decorativas heredadas del menú de escritorio */
    .ast-mobile-popup-content .main-header-menu .menu-link::before,
    .ast-mobile-popup-content .main-header-menu .menu-link::after,
    .ast-mobile-popup-content .menu-link::before,
    .ast-mobile-popup-content .menu-link::after {
        display: none !important;
        content: none !important;
        width: 0 !important;
        height: 0 !important;
        background: transparent !important;
    }

    /* Activo y hover */
    .ast-mobile-popup-content .current-menu-item > .menu-link,
    .ast-mobile-popup-content .current_page_item > .menu-link,
    .ast-mobile-popup-content .menu-link:hover,
    .ast-mobile-popup-content .menu-item > a:hover {
        color: #f4a62a !important;
        background: #fff8ef !important;
    }

    /* Botón cerrar X */
    .ast-mobile-popup-drawer .menu-toggle-close,
    .ast-mobile-popup-drawer .ast-mobile-popup-drawer-close {
        background: #4a1f09 !important;
        color: #ffffff !important;
        border-radius: 10px !important;
        width: 42px !important;
        height: 42px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .ast-mobile-popup-drawer .menu-toggle-close svg,
    .ast-mobile-popup-drawer .ast-mobile-popup-drawer-close svg {
        fill: #ffffff !important;
        color: #ffffff !important;
    }
}
/* ==============================
   COLOR TÍTULO TOTO CAFETERÍA EN INICIO
============================== */

.home .site-title a,
.home .site-title,
.home .ast-site-title-wrap .site-title a {
    color: #f4a62a !important;
    font-weight: 900 !important;
    text-shadow: 0 3px 10px rgba(0,0,0,0.45) !important;
}

.home .site-title a:hover {
    color: #ffbd3f !important;
}
/* ==============================
   COLOR TÍTULO TOTO CAFETERÍA TODAS LAS PÁGINAS
============================== */

.site-title,
.site-title a,
.ast-site-title-wrap .site-title,
.ast-site-title-wrap .site-title a {
    color: #f4a62a !important;
    font-weight: 900 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
}

.site-title a:hover,
.ast-site-title-wrap .site-title a:hover {
    color: #ffbd3f !important;
}
/* ==============================
   NOTA EDITABLE EN CARRITO
============================== */

.cafeteria-cart-note-edit {
    margin-top: 10px;
}

.cafeteria-cart-note-edit label {
    display: block;
    font-weight: 900;
    color: #3a1d0f;
    margin-bottom: 6px;
}

.cafeteria-cart-note-edit textarea {
    width: 100%;
    min-height: 70px;
    border: 1px solid rgba(75, 36, 18, 0.18);
    border-radius: 12px;
    padding: 10px 12px;
    background: #fffaf4;
    color: #2b1a10;
    font-size: 14px;
    resize: vertical;
}

.cafeteria-cart-note-edit textarea:focus {
    border-color: #f4a62a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 166, 42, 0.18);
}
/* ==============================
   BOTÓN WHATSAPP CARRITO
============================== */

.woocommerce-cart .cafeteria-whatsapp-cart-btn {
    display: block !important;
    width: calc(100% - 72px) !important;
    margin: 24px auto 32px auto !important;
    text-align: center !important;
    background: #25D366 !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 16px 24px !important;
    font-weight: 900 !important;
    font-size: 17px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14) !important;
}

.woocommerce-cart .cafeteria-whatsapp-cart-btn:hover {
    background: #1ebe5d !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.woocommerce-cart .cafeteria-field-mesa,
.woocommerce-cart .cafeteria-field-direccion {
    margin-top: 18px !important;
}
/* ==============================
   CATEGORÍAS INICIO - ESTILO COMO PÁGINA MENÚ
============================== */

.home .cafeteria-home-categories-filter {
    background: #ffffff !important;
    padding: 45px 30px 28px 30px !important;
    text-align: center !important;
}

.home .cafeteria-home-categories-filter h2 {
    color: #3a1d0f !important;
    font-size: 34px !important;
    font-weight: 900 !important;
    margin: 0 0 28px 0 !important;
    text-align: center !important;
}

.home .cafeteria-home-category-buttons {
    max-width: 1180px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
}

/* Botones normales */
.home .cafeteria-home-category-buttons .cafeteria-home-category-btn,
.home button.cafeteria-home-category-btn {
    appearance: none !important;
    -webkit-appearance: none !important;

    background: #ffffff !important;
    color: #3a1d0f !important;

    border: 1px solid rgba(75, 36, 18, 0.18) !important;
    border-radius: 999px !important;

    padding: 15px 28px !important;
    min-height: 54px !important;

    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    text-align: center !important;

    cursor: pointer !important;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05) !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    transition: all 0.22s ease !important;
}

/* Hover */
.home .cafeteria-home-category-buttons .cafeteria-home-category-btn:hover,
.home button.cafeteria-home-category-btn:hover {
    background: #ffffff !important;
    color: #3a1d0f !important;
    border-color: #f4a62a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 26px rgba(0,0,0,0.09) !important;
}

/* Botón activo */
.home .cafeteria-home-category-buttons .cafeteria-home-category-btn.active,
.home button.cafeteria-home-category-btn.active {
    background: #fff8ef !important;
    color: #3a1d0f !important;
    border-color: #f4a62a !important;
    box-shadow: 0 12px 28px rgba(244,166,42,0.20) !important;
}

/* Línea dorada del activo */
.home .cafeteria-home-category-buttons .cafeteria-home-category-btn.active::after,
.home button.cafeteria-home-category-btn.active::after {
    content: "" !important;
    display: block !important;
    width: 36px !important;
    height: 3px !important;
    background: #f4a62a !important;
    border-radius: 99px !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* Necesario para posicionar la línea */
.home .cafeteria-home-category-buttons .cafeteria-home-category-btn,
.home button.cafeteria-home-category-btn {
    position: relative !important;
}

/* Paneles productos */
.home .cafeteria-products-panel {
    display: none !important;
}

.home .cafeteria-products-panel.active {
    display: block !important;
}

/* Responsive */
@media (max-width: 544px) {
    .home .cafeteria-home-categories-filter {
        padding: 35px 18px 22px 18px !important;
    }

    .home .cafeteria-home-categories-filter h2 {
        font-size: 28px !important;
    }

    .home .cafeteria-home-category-buttons {
        gap: 10px !important;
    }

    .home .cafeteria-home-category-buttons .cafeteria-home-category-btn,
    .home button.cafeteria-home-category-btn {
        width: 100% !important;
        padding: 14px 18px !important;
        font-size: 15px !important;
    }
}
/* ==============================
   FILTRO PRODUCTOS INICIO
============================== */

.home .cafeteria-products-panel {
    display: none !important;
}

.home .cafeteria-products-panel.active {
    display: block !important;
}

/* Quitar espacio del título eliminado */
.home .cafeteria-home-categories-filter {
    padding-top: 20px !important;
}
/* ==============================
   BOTÓN AGREGAR AL PEDIDO
============================== */

.woocommerce ul.products li.product .cafeteria-add-to-cart-btn,
.cafeteria-products-tabs .woocommerce ul.products li.product .cafeteria-add-to-cart-btn {
    margin-top: auto !important;
    background: #fff0d2 !important;
    color: #3a1d0f !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-decoration: none !important;
    width: 100% !important;
    display: block !important;
    transition: all 0.22s ease !important;
}

.woocommerce ul.products li.product .cafeteria-add-to-cart-btn:hover,
.cafeteria-products-tabs .woocommerce ul.products li.product .cafeteria-add-to-cart-btn:hover {
    background: #f4a62a !important;
    color: #2b1208 !important;
    transform: translateY(-2px);
}

/* Cuando WooCommerce cambia el texto a "Ver pedido" después de agregar */
.woocommerce ul.products li.product .added_to_cart {
    display: block !important;
    margin-top: 8px !important;
    background: #25D366 !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 11px 18px !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-decoration: none !important;
}

.woocommerce ul.products li.product .added_to_cart:hover {
    background: #1ebe5d !important;
    color: #ffffff !important;
}

/* ==============================
   BOTÓN FLOTANTE VER PEDIDO
============================== */

.cafeteria-floating-cart-btn {
    position: fixed !important;
    right: 22px !important;
    bottom: 86px !important;
    z-index: 99999 !important;

    background: #f4a62a !important;
    color: #2b1208 !important;

    padding: 14px 22px !important;
    border-radius: 999px !important;

    font-size: 16px !important;
    font-weight: 900 !important;
    text-decoration: none !important;

    box-shadow: 0 10px 26px rgba(0,0,0,0.22) !important;
    transition: all 0.22s ease !important;
}

.cafeteria-floating-cart-btn:hover {
    background: #ffbd3f !important;
    color: #2b1208 !important;
    transform: translateY(-3px);
}

@media (max-width: 544px) {
    .cafeteria-floating-cart-btn {
        right: 16px !important;
        bottom: 82px !important;
        padding: 13px 18px !important;
        font-size: 15px !important;
    }
}
/* ==============================
   PRODUCTO YA AGREGADO AL PEDIDO
============================== */

.woocommerce ul.products li.product.cafeteria-product-in-cart,
.cafeteria-products-tabs .woocommerce ul.products li.product.cafeteria-product-in-cart {
    border: 2px solid #25D366 !important;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.20) !important;
    position: relative !important;
}



/* Botón ya agregado */
.woocommerce ul.products li.product .cafeteria-product-added-btn,
.cafeteria-products-tabs .woocommerce ul.products li.product .cafeteria-product-added-btn {
    margin-top: auto !important;
    background: #25D366 !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-decoration: none !important;
    width: 100% !important;
    display: block !important;
}

.woocommerce ul.products li.product .cafeteria-product-added-btn:hover,
.cafeteria-products-tabs .woocommerce ul.products li.product .cafeteria-product-added-btn:hover {
    background: #1ebe5d !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}
/* ==============================
   BOTÓN QUITAR DEL PEDIDO
============================== */

.woocommerce ul.products li.product .cafeteria-product-remove-btn,
.cafeteria-products-tabs .woocommerce ul.products li.product .cafeteria-product-remove-btn {
    margin-top: auto !important;
    background: #fff0f0 !important;
    color: #a01f1f !important;
    border: 1px solid rgba(160, 31, 31, 0.22) !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-decoration: none !important;
    width: 100% !important;
    display: block !important;
    transition: all 0.22s ease !important;
}

.woocommerce ul.products li.product .cafeteria-product-remove-btn:hover,
.cafeteria-products-tabs .woocommerce ul.products li.product .cafeteria-product-remove-btn:hover {
    background: #d93636 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}
/* ==============================
   BOTÓN AGREGAR / QUITAR PEDIDO
============================== */

.woocommerce ul.products li.product .cafeteria-add-to-cart-btn,
.cafeteria-products-tabs .woocommerce ul.products li.product .cafeteria-add-to-cart-btn {
    margin-top: auto !important;
    background: #fff0d2 !important;
    color: #3a1d0f !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-decoration: none !important;
    width: 100% !important;
    display: block !important;
    border: none !important;
    transition: all 0.22s ease !important;
}

.woocommerce ul.products li.product .cafeteria-add-to-cart-btn:hover,
.cafeteria-products-tabs .woocommerce ul.products li.product .cafeteria-add-to-cart-btn:hover {
    background: #f4a62a !important;
    color: #2b1208 !important;
    transform: translateY(-2px);
}

.woocommerce ul.products li.product .cafeteria-product-remove-btn,
.cafeteria-products-tabs .woocommerce ul.products li.product .cafeteria-product-remove-btn {
    margin-top: auto !important;
    background: #fff0f0 !important;
    color: #a01f1f !important;
    border: 1px solid rgba(160, 31, 31, 0.22) !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-decoration: none !important;
    width: 100% !important;
    display: block !important;
    transition: all 0.22s ease !important;
}

.woocommerce ul.products li.product .cafeteria-product-remove-btn:hover,
.cafeteria-products-tabs .woocommerce ul.products li.product .cafeteria-product-remove-btn:hover {
    background: #d93636 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}
/* ==============================
   CANTIDAD EN PRODUCTO AGREGADO
============================== */

.woocommerce ul.products li.product,
.cafeteria-products-tabs .woocommerce ul.products li.product {
    position: relative !important;
}

.woocommerce ul.products li.product .cafeteria-product-cart-qty,
.cafeteria-products-tabs .woocommerce ul.products li.product .cafeteria-product-cart-qty {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    z-index: 30 !important;

    background: #25D366 !important;
    color: #ffffff !important;

    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;

    padding: 9px 14px !important;
    border-radius: 999px !important;

    box-shadow: 0 8px 18px rgba(0,0,0,0.18) !important;
}

/* Borde verde cuando está agregado */
.woocommerce ul.products li.product.cafeteria-product-in-cart,
.cafeteria-products-tabs .woocommerce ul.products li.product.cafeteria-product-in-cart {
    border: 2px solid #25D366 !important;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.20) !important;
}
/* ==============================
   BOTÓN NUEVO PEDIDO / VACIAR
============================== */

.cafeteria-empty-cart-btn {
    width: 100% !important;
    display: block !important;
    margin-top: 14px !important;
    padding: 14px 18px !important;

    background: #fff0f0 !important;
    color: #a01f1f !important;

    border: 1px solid rgba(160, 31, 31, 0.25) !important;
    border-radius: 14px !important;

    text-align: center !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 900 !important;

    transition: all 0.2s ease !important;
}

.cafeteria-empty-cart-btn:hover {
    background: #d93636 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}
.cafeteria-qty-control{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    margin-top:18px;
}

.cafeteria-minus,
.cafeteria-plus {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #f5a623;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    line-height: 1;
}
.cafeteria-floating-cart-btn {
    position: relative;
}

.cafeteria-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e53935;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}
/* ==============================
   BOTÓN PERSONALIZAR PLATO
============================== */

button.toto-btn-personalizar,
.woocommerce ul.products li.product button.toto-btn-personalizar,
.cafeteria-products-tabs .woocommerce ul.products li.product button.toto-btn-personalizar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;

    margin: 10px 0 0 0 !important;
    padding: 0 14px !important;
    box-sizing: border-box !important;

    background: #8b4513 !important;
    background-image: none !important;
    background-size: auto !important;

    border: none !important;
    border-radius: 12px !important;

    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-align: center !important;

    box-shadow: none !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

/* Elimina íconos heredados del tema o plugins */
button.toto-btn-personalizar::before,
button.toto-btn-personalizar::after,
.woocommerce ul.products li.product button.toto-btn-personalizar::before,
.woocommerce ul.products li.product button.toto-btn-personalizar::after {
    content: none !important;
    display: none !important;
    background: none !important;
    background-image: none !important;
}

button.toto-btn-personalizar:hover,
button.toto-btn-personalizar:focus {
    background: #6f350f !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}
/* Botón cerrar popup de personalización */
.toto-popup-close {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;

    width: 38px !important;
    height: 38px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    border: none !important;
    border-radius: 10px !important;

    background: #fff8ef !important;
    color: #3a1d0f !important;

    font-size: 28px !important;
    font-weight: 500 !important;
    line-height: 1 !important;

    cursor: pointer !important;
}

.toto-popup-close:hover {
    background: #f4a62a !important;
    color: #2b1208 !important;
}
/* Personalización mostrada en Pedido solicitado */
.cafeteria-cart-customization {
    margin: 10px 0 12px 0;
    padding: 10px 12px;
    background: #fff8ef;
    border-left: 4px solid #f4a62a;
    border-radius: 10px;
    color: #3a1d0f;
    font-size: 14px;
}

.cafeteria-cart-customization strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 900;
}

.cafeteria-cart-customization ul {
    margin: 0;
    padding-left: 18px;
}

.cafeteria-cart-customization li {
    margin: 2px 0;
}
/* ==============================
   PEDIDO PERSONALIZADO EN CARRITO
============================== */

.woocommerce-cart .cafeteria-cart-customization {
    position: relative;
    margin: 14px 0 14px 0 !important;
    padding: 14px 15px 13px 15px !important;

    background: #fff7e8 !important;
    border: 1px solid rgba(244, 166, 42, 0.55) !important;
    border-left: 5px solid #f4a62a !important;
    border-radius: 14px !important;

    color: #3a1d0f !important;
    font-size: 14px !important;
}

/* Etiqueta superior */
.woocommerce-cart .cafeteria-cart-customization::before {
    content: "🍽️ Personalizado";
    display: inline-flex;
    align-items: center;

    margin-bottom: 9px;
    padding: 5px 10px;

    background: #f4a62a;
    color: #3a1d0f;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

/* Texto Sin: */
.woocommerce-cart .cafeteria-cart-customization strong {
    display: block !important;
    margin-bottom: 5px !important;

    color: #a01f1f !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

/* Lista de ingredientes quitados */
.woocommerce-cart .cafeteria-cart-customization ul {
    margin: 0 !important;
    padding-left: 20px !important;
}

.woocommerce-cart .cafeteria-cart-customization li {
    margin: 3px 0 !important;
    color: #6f2b20 !important;
    font-weight: 700 !important;
}

.woocommerce-cart .cafeteria-cart-customization li::marker {
    color: #d93636 !important;
}
/* =====================================================
   CATEGORÍA EXTRAS DESTACADA
===================================================== */

.cafeteria-home-category-btn-extras {
    background: #fff7e8 !important;
    border: 2px solid #f4a62a !important;
    color: #3a1d0f !important;
    font-weight: 900 !important;
    box-shadow: 0 8px 18px rgba(244, 166, 42, 0.18) !important;
    transform: scale(1.02);
}

.cafeteria-home-category-btn-extras:hover {
    background: #fef0cf !important;
    transform: translateY(-2px) scale(1.02);
}

.cafeteria-home-category-btn-extras.active {
    background: #fff0cf !important;
    border-color: #f4a62a !important;
    color: #2e160b !important;
    box-shadow: 0 10px 22px rgba(244, 166, 42, 0.25) !important;
}

/* =====================================================
   BOTÓN FLOTANTE DE EXTRAS
===================================================== */

.cafeteria-floating-extras-btn {
    position: fixed;
    right: 18px;
    bottom: 88px; /* arriba del botón Ver pedido */
    z-index: 9998;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;
    max-width: calc(100vw - 36px);
    padding: 13px 18px;

    border: none;
    border-radius: 999px;

    background: #f4a62a;
    color: #3a1d0f;

    font-size: 15px;
    font-weight: 900;
    line-height: 1;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: all .2s ease;
}

.cafeteria-floating-extras-btn:hover {
    transform: translateY(-2px);
    background: #f2a01a;
}

@media (max-width: 768px) {
    .cafeteria-floating-extras-btn {
        right: 14px;
        bottom: 82px;
        min-width: 175px;
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* =========================================
   BOTONES FLOTANTES SIN ENCIMARSE
========================================= */

/* Ver pedido */
.cafeteria-floating-cart-btn {
    position: fixed !important;
    right: 18px !important;
    bottom: 18px !important;
    z-index: 9999 !important;
}

/* Agregar extras */
.cafeteria-floating-extras-btn {
    position: fixed !important;
    right: 18px !important;
    bottom: 92px !important; /* lo sube arriba del botón Ver pedido */
    z-index: 9998 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 180px !important;
    max-width: calc(100vw - 36px) !important;
    padding: 12px 16px !important;

    border: none !important;
    border-radius: 999px !important;

    background: #f4a62a !important;
    color: #3a1d0f !important;

    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;

    box-shadow: 0 8px 20px rgba(0,0,0,.18) !important;
    cursor: pointer !important;
}

/* Hover */
.cafeteria-floating-extras-btn:hover {
    background: #ee9d17 !important;
    transform: translateY(-2px);
}

/* En celular: un poco más separados */
@media (max-width: 768px) {
    .cafeteria-floating-cart-btn {
        right: 14px !important;
        bottom: 14px !important;
    }

    .cafeteria-floating-extras-btn {
        right: 14px !important;
        bottom: 84px !important;
        min-width: 170px !important;
        font-size: 13px !important;
        padding: 11px 14px !important;
    }
}
/* =====================================================
   BOTÓN ENVIAR PEDIDO A COCINA
===================================================== */

.toto-enviar-cocina-btn {
    width: 100% !important;
    margin-top: 14px !important;
    padding: 15px 18px !important;
    border: none !important;
    border-radius: 14px !important;
    background: #20b455 !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    text-align: center !important;
    cursor: pointer !important;
}

.toto-enviar-cocina-btn:hover {
    background: #168f42 !important;
}

.toto-btn-enviar-cocina-externo {
    background: #f4a62a !important;
    color: #3a1d0f !important;
}

.toto-btn-enviar-cocina-externo:hover {
    background: #e89512 !important;
}

.toto-enviar-cocina-btn:disabled {
    opacity: .65 !important;
    cursor: wait !important;
}

.toto-enviar-cocina-help {
    margin: 8px 0 12px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #666666 !important;
}
/* =====================================================
   PANTALLA DE COCINA
===================================================== */

.toto-kitchen-screen {
    padding: 24px;
    background: #f7f3ee;
    min-height: 100vh;
    font-family: inherit;
}

.toto-kitchen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.toto-kitchen-header h1 {
    margin: 0;
    font-size: 34px;
    color: #2b160b;
    font-weight: 900;
}

.toto-kitchen-header p {
    margin: 4px 0 0;
    color: #7a6a5e;
    font-weight: 700;
}

.toto-kitchen-clock {
    padding: 12px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #2b160b;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.toto-kitchen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.toto-kitchen-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
    border: 3px solid transparent;
}

.toto-kitchen-status-pendiente {
    border-color: #f4a62a;
}

.toto-kitchen-status-preparacion {
    border-color: #2271b1;
}

.toto-kitchen-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.toto-kitchen-card-header h2 {
    margin: 0;
    font-size: 26px;
    color: #2b160b;
    font-weight: 900;
}

.toto-kitchen-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.toto-kitchen-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f7f3ee;
    color: #4b2a17;
    font-size: 13px;
    font-weight: 900;
}

.toto-kitchen-badge {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.toto-kitchen-badge-pendiente {
    background: #fff4d6;
    color: #8a5200;
}

.toto-kitchen-badge-preparacion {
    background: #e6f1fb;
    color: #105c93;
}

.toto-kitchen-client,
.toto-kitchen-note {
    margin: 12px 0;
    padding: 12px;
    border-radius: 14px;
    background: #fff8ef;
    color: #3a1d0f;
    font-size: 15px;
}

.toto-kitchen-items {
    margin-top: 14px;
}

.toto-kitchen-item {
    padding: 14px;
    border-radius: 16px;
    background: #f8f8f8;
    margin-bottom: 10px;
    color: #2b160b;
    font-size: 16px;
}

.toto-kitchen-item strong {
    font-size: 17px;
}

.toto-kitchen-item ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

.toto-kitchen-item li {
    margin-bottom: 4px;
}

.toto-kitchen-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.toto-kitchen-actions button {
    flex: 1;
    border: none;
    border-radius: 14px;
    padding: 13px 12px;
    font-weight: 900;
    cursor: pointer;
    color: #ffffff;
}

.toto-kitchen-btn-preparar {
    background: #2271b1;
}

.toto-kitchen-btn-finalizar {
    background: #20b455;
}

.toto-kitchen-btn-cancelar {
    background: #c0392b;
}

.toto-kitchen-actions button:disabled {
    opacity: .6;
    cursor: wait;
}

.toto-kitchen-empty {
    padding: 40px;
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.toto-kitchen-empty h2 {
    margin: 0 0 8px;
    color: #2b160b;
    font-size: 28px;
}

.toto-kitchen-empty p {
    margin: 0;
    color: #7a6a5e;
    font-weight: 700;
}

@media (max-width: 768px) {
    .toto-kitchen-screen {
        padding: 14px;
    }

    .toto-kitchen-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .toto-kitchen-grid {
        grid-template-columns: 1fr;
    }

    .toto-kitchen-actions {
        flex-direction: column;
    }
}
/* =====================================================
   PANTALLA DEL ENCARGADO
===================================================== */

.toto-manager-screen {
    padding: 24px;
    background: #f7f3ee;
    min-height: 100vh;
    font-family: inherit;
}

.toto-manager-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.toto-manager-header h1 {
    margin: 0;
    font-size: 34px;
    color: #2b160b;
    font-weight: 900;
}

.toto-manager-header p {
    margin: 4px 0 0;
    color: #7a6a5e;
    font-weight: 700;
}

.toto-manager-clock {
    padding: 12px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #2b160b;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.toto-manager-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 20px;
}

.toto-manager-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
    border: 3px solid #f4a62a;
}

.toto-manager-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.toto-manager-card-header h2 {
    margin: 0;
    font-size: 26px;
    color: #2b160b;
    font-weight: 900;
}

.toto-manager-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.toto-manager-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f7f3ee;
    color: #4b2a17;
    font-size: 13px;
    font-weight: 900;
}

.toto-manager-badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff4d6;
    color: #8a5200;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.toto-manager-client,
.toto-manager-note {
    margin: 12px 0;
    padding: 12px;
    border-radius: 14px;
    background: #fff8ef;
    color: #3a1d0f;
    font-size: 15px;
}

.toto-manager-items {
    margin-top: 14px;
}

.toto-manager-item {
    padding: 14px;
    border-radius: 16px;
    background: #f8f8f8;
    margin-bottom: 10px;
    color: #2b160b;
    font-size: 16px;
}

.toto-manager-item strong {
    font-size: 17px;
}

.toto-manager-item ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

.toto-manager-item li {
    margin-bottom: 4px;
}

.toto-manager-total {
    margin-top: 14px;
    padding: 12px;
    border-radius: 14px;
    background: #e9f9ee;
    color: #087a2f;
    font-size: 18px;
    font-weight: 900;
}

.toto-manager-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.toto-manager-actions button {
    flex: 1;
    border: none;
    border-radius: 14px;
    padding: 13px 12px;
    font-weight: 900;
    cursor: pointer;
    color: #ffffff;
}

.toto-manager-btn-cocina {
    background: #20b455;
}

.toto-manager-btn-cancelar {
    background: #c0392b;
}

.toto-manager-actions button:disabled {
    opacity: .6;
    cursor: wait;
}

.toto-manager-empty {
    padding: 40px;
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.toto-manager-empty h2 {
    margin: 0 0 8px;
    color: #2b160b;
    font-size: 28px;
}

.toto-manager-empty p {
    margin: 0;
    color: #7a6a5e;
    font-weight: 700;
}

@media (max-width: 768px) {
    .toto-manager-screen {
        padding: 14px;
    }

    .toto-manager-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .toto-manager-grid {
        grid-template-columns: 1fr;
    }

    .toto-manager-actions {
        flex-direction: column;
    }
}
/* =====================================================
   BOTÓN DE SONIDO Y ALERTA DE NUEVO PEDIDO
===================================================== */

.toto-screen-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.toto-sound-toggle {
    border: none !important;
    border-radius: 999px !important;
    padding: 12px 16px !important;
    background: #3a1d0f !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.12) !important;
}

.toto-sound-toggle.activo {
    background: #20b455 !important;
    color: #ffffff !important;
}

.toto-alert-flash::before {
    content: "🔔 Nuevo pedido recibido";
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    padding: 16px 24px;
    border-radius: 999px;
    background: #20b455;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 14px 38px rgba(0,0,0,.25);
    animation: totoAlertFlash .35s ease-in-out infinite alternate;
}

@keyframes totoAlertFlash {
    from {
        transform: translateX(-50%) scale(1);
    }

    to {
        transform: translateX(-50%) scale(1.05);
    }
}

@media (max-width: 768px) {
    .toto-screen-tools {
        justify-content: flex-start;
    }

    .toto-alert-flash::before {
        width: calc(100% - 28px);
        text-align: center;
        font-size: 16px;
    }
}