@charset "utf-8";
/* CSS Document
   =========================================================
   CSS MAESTRO - PORTAL + RESTAURANTES
   Las propiedades estructurales se mantienen aquí.
   La identidad de cada restaurante se controla desde HTML
   mediante variables CSS inline.
   ========================================================= */

/* =========================================================
   VARIABLES GENERALES
   ========================================================= */

:root {
    --navbar-color: #424830;
    --navbar-logo-height: 50px;

    --whatsapp-color: #25D366;
    --whatsapp-hover: #25D366;
    --whatsapp-text: #ffffff;

    --header-height: 80vh;

    --linea-color: #f7931e;

    --social-facebook: #3e5c9a;
    --social-instagram: #8134AF;
    --social-linkedin: #117bb8;
    --social-tiktok: #000000;
    --social-whatsapp: #05d327;
    --social-youtube: #c3271a;
}

/* =========================================================
   NAVBAR PORTAL / INDEX
   ========================================================= */

.navbar-custom {
    background-color: var(--navbar-color);
    padding: 10px 0;
    height: 120px;
}

.navbar-custom .navbar-brand img {
    width: auto;
    max-width: 100%;
    height: clamp(60px, 10vw, 100px);
    display: block;
}

@media (max-width: 576px) {
    .navbar-custom {
        padding: 8px 0;
        min-height: 60px;
    }
}

/* =========================================================
   VIDEO - INDEX
   ========================================================= */

.container1-max-width {
    position: relative;
    height: 80vh;
    margin-top: 0px;
}

.video-container {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
}

/* =========================================================
   NAVBAR RESTAURANTES
   ========================================================= */

.navbar-real {
    background-color: var(--navbar-color);
    min-height: 70px;
    padding: 8px 20px;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}

body {
    padding-top: 70px;
}

.navbar-real .navbar-brand img {
    height: var(--navbar-logo-height);
    width: auto;
    display: block;
}

/* =========================================================
   WHATSAPP SUPERIOR
   ========================================================= */

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: var(--whatsapp-text);
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    color: var(--whatsapp-text);
    transform: scale(1.30);
}

.btn-whatsapp i {
    font-size: 22px;
}

@media (max-width: 576px) {
    .navbar-real {
        padding: 7px 12px;
    }

    .navbar-real .navbar-brand img {
        height: 42px;
    }

    .btn-whatsapp {
        padding: 8px 12px;
        font-size: 14px;
    }

    .btn-whatsapp i {
        font-size: 20px;
    }
}

/* =========================================================
   HEADER RESTAURANTE
   La imagen se define desde HTML.
   ========================================================= */

.header-restaurante {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: var(--header-height);
    flex-direction: column;
}

/* HEADER RESTAURANTES */
.header-restaurante {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    flex-direction: column;
}

/* =========================================================
   CONTENIDO
   ========================================================= */

.contenido {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: clamp(15px, 5vw, 60px);
    padding-right: clamp(15px, 5vw, 60px);
}

/* =========================================================
   LÍNEAS
   ========================================================= */

.linea-cal-1 {
    border-top: 10px solid var(--linea-color);
    opacity: 1;
}

.linea-cal-2 {
    border-top: 3px solid var(--linea-color);
    opacity: 1;
}

/* =========================================================
   BOTONES DE PRODUCTOS
   ========================================================= */

.btn-real {
    background-color: var(--navbar-color);
    border-color: var(--menu-color-principal);
    color: var(--menu-color-texto-claro);
}

.btn-real:hover {
    background-color: var(--menu-color-principal);
    border-color: var(--menu-color-principal);
    color: var(--menu-color-texto-claro);
}

/* =========================================================
   REDES SOCIALES
   Los colores se pueden definir desde el contenedor HTML:
   style="--social-facebook:#...; --social-instagram:#..."
   ========================================================= */

.redes-container {
    display: flex;
    margin-right: 35px;
    align-items: center;
    justify-content: center;
}

.redes-container ul li {
    display: inline-block;
    margin: 0 3px;
    width: 35px;
    height: 35px;
    text-align: center;
}

.redes-container ul li a {
    display: block;
    padding: 0 10px;
    background: var(--menu-color-principal);
    border-radius: 6px;
    color: var(--menu-color-texto-claro);
    line-height: 35px;
    font-size: 10pt;
    box-shadow: 0 3px 5px 0px rgba(0, 0, 0, .3);
}

.redes-container ul li .facebook {
    background: var(--social-facebook-base);
}

.redes-container ul li .instagram {
    background: var(--social-instagram-base);
}

.redes-container ul li .linkedin {
    background: var(--social-linkedin-base);
}

.redes-container ul li .tiktok {
    background: var(--social-tiktok-base);
}

.redes-container ul li .youtube {
    background: var(--social-youtube-base);
}

.redes-container ul li .whatsapp {
    background: var(--social-whatsapp-base);
}

.redes-container ul li a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, .7);
}

.redes-container ul li .whatsapp:hover {
    background: var(--social-whatsapp);
}

.redes-container ul li .facebook:hover {
    background: var(--social-facebook);
}

.redes-container ul li .instagram:hover {
    background: var(--social-instagram);
}

.redes-container ul li .linkedin:hover {
    background: var(--social-linkedin);
}

.redes-container ul li .tiktok:hover {
    background: var(--social-tiktok);
}

.redes-container ul li .youtube:hover {
    background: var(--social-youtube);
}

/* =========================================================
   FIN PORTAL / RESTAURANTE
   ========================================================= */


/* =========================================================
   MOTOR VISUAL DEL MENÚ FLOTANTE Y CARRITO
   ========================================================= */

/* =========================================================
   MENÃš FLOTANTE - CAFÃ‰ REAL
   ========================================================= */


/* =========================================================
   ðŸŽ¨ CONFIGURACIÃ“N RÃPIDA
   CAMBIA AQUÃ LOS COLORES DEL MENÃš
   ========================================================= */




/* =========================================================
   CONTENEDOR GENERAL
   ========================================================= */

.menu-flotante {
    position: fixed;

    right: var(--menu-derecha);
    bottom: var(--menu-abajo);

    z-index: 9999;

    font-family: inherit;
}


/* =========================================================
   BOTÃ“N PRINCIPAL
   ========================================================= */

.menu-flotante__boton {

    display: flex;
    align-items: center;
    gap: 10px;

    border: none;

    padding: 14px 20px;

    border-radius: 50px;

    background-color: var(--menu-color-principal);
    color: var(--menu-color-texto);

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    box-shadow: var(--menu-sombra);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* Efecto al pasar el mouse */

.menu-flotante__boton:hover {

    background-color: var(--menu-color-hover);

    transform: translateY(-3px);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.22);
}


/* Icono */

.menu-flotante__icono {

    font-size: 19px;

    line-height: 1;
}


/* Texto */

.menu-flotante__texto {
    white-space: nowrap;
}


/* =========================================================
   PANEL DEL MENÃš
   ========================================================= */

.menu-flotante__panel {

    position: absolute;

    right: 0;
    bottom: calc(100% + 12px);

    width: 280px;

    padding: 18px;

    background: var(--menu-color-fondo);

    border-radius: var(--menu-radio);

    box-shadow: var(--menu-sombra);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(15px)
        scale(0.96);

    transform-origin: bottom right;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}


/* Panel abierto */

.menu-flotante__panel.activo {

    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

.menu-flotante__encabezado {

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 14px;

    padding-bottom: 12px;

    border-bottom:
        1px solid rgba(0, 0, 0, 0.08);

    color: var(--menu-color-opcion);

    font-size: 17px;
    font-weight: 700;
}


/* BotÃ³n cerrar */

.menu-flotante__cerrar {

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: transparent;

    color: var(--menu-color-opcion);

    font-size: 24px;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.menu-flotante__cerrar:hover {

    background-color: var(--menu-color-opcion-hover);

    transform: rotate(90deg);
}


/* =========================================================
   OPCIONES
   ========================================================= */

.menu-flotante__opciones {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


/* Cada opciÃ³n */

.menu-opcion {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px 12px;

    border-radius: 10px;

    color: var(--menu-color-opcion);

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


/* Hover */

.menu-opcion:hover {

    background-color:
        var(--menu-color-opcion-hover);

    color: var(--menu-color-opcion);

    transform: translateX(4px);
}


/* Iconos */

.menu-opcion span:first-child {

    width: 25px;

    text-align: center;

    font-size: 18px;
}


/* =========================================================
   ANIMACIÃ“N DEL BOTÃ“N
   ========================================================= */

@keyframes menuFlotanteEntrada {

    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.menu-flotante {

    animation:
        menuFlotanteEntrada 0.6s ease;
}


/* =========================================================
   RESPONSIVE - TABLETS
   ========================================================= */

@media (max-width: 768px) {

    .menu-flotante {

        right: 18px;
        bottom: 18px;
    }

    .menu-flotante__panel {

        width: 270px;
    }
}


/* =========================================================
   RESPONSIVE - CELULARES
   ========================================================= */

@media (max-width: 480px) {

    .menu-flotante {

        right: 15px;
        bottom: 15px;
    }


    .menu-flotante__boton {

        padding: 13px 17px;

        font-size: 14px;
    }


    .menu-flotante__panel {

        width:
            calc(100vw - 30px);

        right: 0;

        max-height: 70vh;

        overflow-y: auto;
    }


    .menu-opcion {

        padding: 13px 12px;
    }
}


/* =========================================================
   SCROLL SUAVE
   ========================================================= */

html {

    scroll-behavior: smooth;
}


/*
   Espacio para que el tÃ­tulo de la secciÃ³n
   no quede pegado al borde superior.
*/

section {

    scroll-margin-top: 75px;
}


/* =========================================================
   BOTÓN MAESTRO
   ========================================================= */

.cr-float__button {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 260px;

    padding: 15px 20px;

    background: var(--menu-color-principal);
    color: var(--menu-color-texto-claro);

    border: none;
    border-radius: 18px;

    cursor: pointer;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);

    z-index: 2;
}

.cr-float__linea {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    line-height: 1.4 !important;
}

.cr-float__carrito {
    margin-top: 5px !important;
}

.cr-float__carrito strong {
    margin-left: 5px !important;
}


/* =========================================================
   CAFÉ REAL - PANEL DEL BOTÓN MAESTRO
   ========================================================= */

.acciones-flotantes {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 999999;
}


/* PANEL DE OPCIONES */

.panel-acciones {
    position: absolute;

    right: 0;
    bottom: calc(100% + 15px);

    width: 260px;

    padding: 12px;

    background: var(--menu-color-fondo);

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);

    display: none;

    z-index: 3;
}


/* Cuando JavaScript lo abra */

.panel-acciones.activo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* OPCIONES DEL PANEL */

.accion-item {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 13px 15px;

    border: none;
    border-radius: 12px;

    background: transparent;

    color: var(--menu-color-opcion);

    font-size: 15px;
    font-weight: 600;

    text-align: left;

    cursor: pointer;

    transition: background-color .2s ease;
}


/* Hover */

.accion-item:hover {
    background: var(--menu-color-opcion-hover);
}


/* Iconos */

.accion-icono {
    width: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}


/* CONTADOR */

.contador-carrito {
    margin-left: auto;

    min-width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 7px;

    border-radius: 50px;

    background: var(--menu-color-principal);

    color: var(--menu-color-texto-claro);

    font-size: 12px;
    font-weight: 700;
}


/* RESPONSIVE */

@media (max-width: 480px) {

    .acciones-flotantes {
        right: 15px;
        bottom: 15px;
    }

    .panel-acciones {
        width: calc(100vw - 30px);
        max-width: 300px;
    }

}

.panel-acciones .accion-item {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.panel-acciones .accion-item + .accion-item {
    display: flex !important;
}

.panel-acciones > button {
    display: flex !important;
}

.panel-acciones {
    z-index: 1000000 !important;
}

.cr-float__button {
    z-index: 1000001 !important;
}

@media (max-width: 480px) {

    body {
        padding-bottom: 110px !important;
    }

}

/* =========================================================
   PANEL - EXPLORA NUESTRO MENÚ
   ========================================================= */

.panel-menu-categorias {
    position: absolute;

    right: 0;
    bottom: calc(100% + 15px);

    width: 280px;
    max-height: 70vh;

    padding: 16px;

    background: var(--menu-color-fondo);

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    overflow-y: auto;

    z-index: 1000002;

    display: none;
}


/* ENCABEZADO */

.panel-menu-titulo {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 12px;
    padding-bottom: 10px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

    color: var(--menu-color-opcion);

    font-size: 17px;
    font-weight: 700;
}


/* BOTÓN CERRAR */

#btnCerrarCategorias {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: transparent;

    color: var(--menu-color-opcion);

    font-size: 24px;

    cursor: pointer;
}


/* CATEGORÍAS */

.menu-categorias {
    display: flex;

    flex-direction: column;

    gap: 6px;
}


.categoria-menu {
    display: block;

    padding: 12px 14px;

    border-radius: 10px;

    color: var(--menu-color-opcion);

    background: transparent;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        background-color .2s ease,
        transform .2s ease;
}


.categoria-menu:hover {
    background: var(--menu-color-opcion-hover);

    color: var(--menu-color-opcion);

    transform: translateX(3px);
}


/* =========================================================
   MÓVILES
   ========================================================= */

@media (max-width: 480px) {

    .panel-menu-categorias {
        right: 0;

        width: calc(100vw - 30px);

        max-width: 300px;

        max-height: 65vh;
    }

    .categoria-menu {
        padding: 13px 14px;
    }

}

/* =========================================================
   PANEL DEL CARRITO
   ========================================================= */

.panel-carrito {
    position: absolute;

    right: 0;
    bottom: calc(100% + 15px);

    width: 340px;
    max-width: calc(100vw - 30px);

    max-height: 70vh;

    padding: 18px;

    background: var(--menu-color-fondo);

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    z-index: 1000002;

    display: none;
}


.panel-carrito__titulo {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 15px;
    padding-bottom: 12px;

    border-bottom:
        1px solid rgba(0, 0, 0, 0.08);

    color: var(--menu-color-opcion);

    font-size: 18px;
    font-weight: 700;
}


#btnCerrarCarrito {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: transparent;

    color: var(--menu-color-opcion);

    font-size: 24px;

    cursor: pointer;
}


.contenido-carrito {
    overflow-y: auto;
    max-height: 50vh;
}


.carrito-vacio {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    padding: 25px 10px;

    text-align: center;

    color: var(--menu-color-opcion);
}


.carrito-vacio__icono {
    font-size: 38px;

    margin-bottom: 5px;
}


.carrito-vacio strong {
    font-size: 16px;
}


.carrito-vacio span {
    font-size: 13px;

    opacity: .75;
}


/* MÓVIL */

@media (max-width: 480px) {

    .panel-carrito {
        width: calc(100vw - 30px);

        max-height: 65vh;
    }

}

/* =========================================================
   IMAGEN DEL PRODUCTO EN EL CARRITO
   ========================================================= */

.carrito-producto__imagen {
    width: 160px;
    height: 80px;

    object-fit: cover;

    border-radius: 12px;

    display: block;

    margin-bottom: 10px;
}

/* =========================================================
   DISEÑO DE LOS PRODUCTOS DEL CARRITO
   ========================================================= */

.carrito-producto {
    position: relative;

    padding: 14px;

    margin-bottom: 14px;

    background: var(--menu-color-texto-claro);

    border: 1px solid rgba(63, 42, 29, 0.10);

    border-radius: 16px;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.06);
}


/* ENCABEZADO */

.carrito-producto__encabezado {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;

    color: var(--menu-color-opcion);

    font-size: 16px;
}


/* PRECIO */

.carrito-producto__precio {
    margin-top: 4px;

    color: var(--menu-color-principal);

    font-size: 15px;
    font-weight: 700;
}


/* ELIMINAR */

.carrito-eliminar {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: none;
    border-radius: 50%;

    background: #f5e8dc;

    color: var(--menu-color-opcion);

    font-size: 20px;

    cursor: pointer;
}


/* CANTIDADES */

.carrito-cantidad {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    margin: 14px 0;
}


.cantidad-btn {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 10px;

    background: var(--menu-color-principal);

    color: var(--menu-color-texto-claro);

    font-size: 20px;
    font-weight: 700;

    cursor: pointer;
}


/* OBSERVACIÓN */

.carrito-observacion {
    width: 100%;

    min-height: 65px;

    padding: 10px 12px;

    box-sizing: border-box;

    border: 1px solid rgba(63, 42, 29, 0.15);

    border-radius: 10px;

    background: var(--menu-color-fondo);

    color: var(--menu-color-opcion);

    font-family: inherit;

    font-size: 13px;

    resize: vertical;
}


.carrito-observacion::placeholder {
    color: #8a8179;
}


/* SUBTOTAL */

.carrito-producto__subtotal {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 12px;

    padding-top: 10px;

    border-top: 1px solid rgba(63, 42, 29, 0.08);

    color: var(--menu-color-opcion);

    font-size: 14px;
}


.carrito-producto__subtotal strong {
    color: var(--menu-color-principal);

    font-size: 15px;
}


/* TOTAL GENERAL */

.carrito-total {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 8px;

    padding: 15px;

    border-radius: 14px;

    background: var(--menu-color-principal);

    color: var(--menu-color-texto-claro);

    font-size: 17px;
    font-weight: 700;
}


.carrito-total strong {
    font-size: 19px;
}


/* =========================================================
   MÓVILES
   ========================================================= */

@media (max-width: 480px) {

    .carrito-producto {
        padding: 12px;
    }

    .carrito-producto__imagen {
        width: 160px;
        height: 80px;
    }

    .carrito-producto__encabezado {
        font-size: 15px;
    }

    .cantidad-btn {
        width: 40px;
        height: 40px;
    }

}

/* =========================================================
   FORMULARIO - FINALIZAR PEDIDO
   ========================================================= */

.panel-finalizar-pedido {
    position: absolute;

    right: 0;
    bottom: calc(100% + 15px);

    width: 340px;
    max-width: calc(100vw - 30px);

    max-height: 70vh;

    padding: 18px;

    background: var(--menu-color-fondo);

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    z-index: 1000003;

    display: none;

    overflow-y: auto;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.panel-finalizar-pedido__titulo {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 16px;
    padding-bottom: 12px;

    border-bottom:
        1px solid rgba(63, 42, 29, 0.10);

    color: var(--menu-color-opcion);

    font-size: 18px;
    font-weight: 700;
}


#btnCerrarPedido {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: transparent;

    color: var(--menu-color-opcion);

    font-size: 24px;

    cursor: pointer;
}


/* =========================================================
   CAMPOS
   ========================================================= */

.pedido-campo {
    margin-bottom: 15px;
}


.pedido-campo label {
    display: block;

    margin-bottom: 7px;

    color: var(--menu-color-opcion);

    font-size: 14px;
    font-weight: 600;
}


.pedido-campo label span {
    font-size: 12px;

    font-weight: 400;

    opacity: .65;
}


/* =========================================================
   TIPOS DE PEDIDO
   ========================================================= */

.pedido-tipos {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.pedido-tipo {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid rgba(63, 42, 29, 0.12);

    border-radius: 12px;

    background: var(--menu-color-texto-claro);

    color: var(--menu-color-opcion);

    font-family: inherit;

    font-size: 14px;
    font-weight: 600;

    text-align: left;

    cursor: pointer;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


.pedido-tipo:hover {
    background: var(--menu-color-opcion-hover);

    transform: translateY(-1px);
}


.pedido-tipo.activo {
    background: var(--menu-color-principal);

    border-color: var(--menu-color-principal);

    color: var(--menu-color-texto-claro);
}


/* =========================================================
   INPUTS Y TEXTAREAS
   ========================================================= */

.pedido-campo input,
.pedido-campo textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 11px 12px;

    border: 1px solid rgba(63, 42, 29, 0.15);

    border-radius: 10px;

    background: var(--menu-color-texto-claro);

    color: var(--menu-color-opcion);

    font-family: inherit;

    font-size: 14px;

    outline: none;
}


.pedido-campo textarea {
    min-height: 75px;

    resize: vertical;
}


.pedido-campo input:focus,
.pedido-campo textarea:focus {
    border-color: var(--menu-color-principal);

    box-shadow:
        0 0 0 2px rgba(108, 123, 57, 0.10);
}


/* =========================================================
   BLOQUES MESA / DOMICILIO
   ========================================================= */

.pedido-datos {
    display: none;
}


/* =========================================================
   MENSAJE DE VALIDACIÓN
   ========================================================= */

.mensaje-pedido {
    display: none;

    margin-bottom: 12px;

    padding: 10px 12px;

    border-radius: 10px;

    background: #f5e8dc;

    color: var(--menu-color-opcion);

    font-size: 13px;
}


/* =========================================================
   BOTÓN WHATSAPP
   ========================================================= */

.btn-enviar-whatsapp {
    width: 100%;

    padding: 13px 15px;

    border: none;

    border-radius: 12px;

    background: var(--menu-color-principal);

    color: var(--menu-color-texto-claro);

    font-family: inherit;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.12);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.btn-enviar-whatsapp:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.16);
}


/* =========================================================
   MÓVILES
   ========================================================= */

@media (max-width: 480px) {

    .panel-finalizar-pedido {
        right: 0;

        width: calc(100vw - 30px);

        max-width: 340px;

        max-height: 65vh;

        padding: 15px;
    }

    .pedido-tipo {
        padding: 13px 14px;
    }

    .btn-enviar-whatsapp {
        padding: 14px 15px;
    }

}

/* =========================================================
   BOTÓN - HACER MI PEDIDO
   ========================================================= */

.btn-hacer-pedido {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 14px;

    padding: 15px 18px;

    border: none;
    border-radius: 14px;

    background: var(--menu-color-principal);
    color: var(--menu-color-texto-claro);

    font-family: inherit;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: .2px;

    cursor: pointer;

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.14);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}


.btn-hacer-pedido:hover {
    background: var(--menu-color-hover);

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.18);
}


.btn-hacer-pedido:active {
    transform: translateY(0);

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.12);
}


/* MÓVIL */

@media (max-width: 480px) {

    .btn-hacer-pedido {
        padding: 16px 18px;

        font-size: 16px;

        border-radius: 15px;
    }

}
