/* Estilos CSS insertados completos desde el original */
    body {
  font-family: 'Kanit', sans-serif;
  font-size: 0.75rem;
  padding: 80px 20px 20px;
  max-width: 900px;
  margin: auto;
  color: #006352;
}
 
     h1 {
      text-align: center;
      margin-bottom: 40px;
      font-family: 'Chonburi', serif;
    }

    h2 {
      margin-top: 30px;
      /* border-bottom: 2px solid #ccc; */
      padding-bottom: 5px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 30px;
      table-layout: fixed;
    }

    th {
      font-size: 1.05rem;
      font-weight: bold;
      text-align: center;
      vertical-align: middle;
      padding: 10px 8px;
    }

    td {
      border: 1px solid #ccc;
      padding: 8px;
      font-size: 0.95rem;
      vertical-align: middle;
      text-align: left;
      word-wrap: break-word;
    }

    td img {
      display: block;
      margin: auto;
      max-width: 60px;
      cursor: pointer;
      border-radius: 8px;
    }

    table.modo-cliente td img {
      max-width: 60px;
    }

    th:nth-child(1),
    td:nth-child(1) {
      width: 20%;
    }

    th:nth-child(2),
    td:nth-child(2) {
      width: 25%;
    }

    th:nth-child(3),
    td:nth-child(3) {
      width: 35%;
    }

    th:nth-child(4),
    td:nth-child(4) {
      width: 20%;
    }

/* --- Clase Genérica para Botones con Estilo 3D --- */
.btn-estilo-3d {
   /* Estilos del texto */
  color: #FFFFFF !important;
  text-decoration: none !important; /* Quita el subrayado de los enlaces */
  font-weight: bold;
  text-align: center;

  /* Dimensiones y forma */
  display: inline-block; /* Importante para que el padding funcione bien */
  padding: 12px 5px; /* Relleno para darle cuerpo al botón */
  border: none; /* Quitamos cualquier borde por defecto */
  border-radius: 20px; /* Esquinas redondeadas */

  /* Efecto 3D y de interacción */
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.2s ease-in-out; /* Animación suave */
}

/* Efecto al pasar el ratón por encima */
.btn-estilo-3d:hover {
  transform: translateY(-2px); /* Se eleva un poco */
  box-shadow: 0 6px 10px rgba(0,0,0,0.3);
  cursor: pointer;
}

.btn-estilo-3d:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-verde {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotVerde.jpg');
  background-size: cover;
  background-position: center;
}

.btn-violeta {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotVioleta.jpg');
  background-size: cover;
  background-position: center;
}

.btn-naranja {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotNaranja.jpg');
  background-size: cover;
  background-position: center;
}

.btn-rojo {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotRojo.jpg');
  background-size: cover;
  background-position: center;
}

.btn-azul {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotAzul.jpg');
  background-size: cover;
  background-position: center;
}




.btn-gris {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotGrisOsc.png');
  background-size: cover;
  background-position: center;
}

.btn-grisclaro {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotGrisclaro.png');
  background-size: cover;
  background-position: center;
}

.btn-fuccia {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotFuccia.jpg');
  background-size: cover;
  background-position: center;
}

.inner-modal-img {
  background: white;
  padding: 12px 16px;
  border-radius: 16px;
  max-width: 90vw;
  text-align: center;
}
 
#modalImg {
  max-width: 100%;
  border-radius: 12px;
}

#modalTitle {
  font-weight: bold;
  margin-top: 8px;
  font-family: 'Chonburi';
  color: #006352;
}

#modalCaption {
  margin-top: 4px;
  font-size: 0.9rem;
  font-family: 'kanit';
  color: #333;
}

.modal-content.pedido {
  background-color: #00b06b;
  margin: 4% auto;
  padding: 8px 16px 12px;
  border-radius: 12px;
  width: fit-content;
  max-width: 48ch;
  min-width: 30ch;
  color: white;
  white-space: normal;
  box-sizing: border-box;
}

.modal-content.pedido h2 {
  color: white;
  font-family: 'Chonburi';
  text-align: center;
  font-size: 1.4rem;
  margin: 0;
}

  #imgModal {
  display: none;
  position: fixed; /* clave para que quede centrado */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
    
}

#imgModal img {
  max-width: 80vw;
  max-height: 60vh;
  border-radius: 12px;
  box-shadow: 0 0 12px #000;
  margin-bottom: 12px;
}

#imgModal h3 {
  font-family: 'Chonburi';
  color: white;
  font-size: 1.2rem;
  margin: 0 0 8px;
}

#imgModal p {
  font-family: 'Kanit';
  color: white;
  font-size: 1rem;
  max-width: 80vw;
  white-space: pre-wrap;
}
    .cliente-form {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #fff;
      padding: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      z-index: 1001;
      text-align: center;
      font-family: 'Kanit', sans-serif;
    }

    .cliente-form input {
      padding: 6px 10px;
      font-size: 0.75rem;
    }

    .cliente-form button {
      padding: 6px 14px;
      margin-left: 10px;
      font-size: 0.75rem;
      cursor: pointer;
      background-color: #006352;
      color: white;
      border: none;
      border-radius: 4px;
    }

    .cliente-form .incentivo {
      margin-top: 10px;
      font-size: 0.9rem;
    }

    .cantidad-container {
      display: inline-flex;
      align-items: center;
      border: 1px solid #006352;
      border-radius: 4px;
      overflow: hidden;
      font-size: 1rem;
      background-color: #f9dce5;
      justify-content: center; 
      margin: 0 auto;         

    }

    .cantidad-activa {
  background-color: #f0f0f0; /* gris claro como ejemplo, podés ajustar */
  transition: background-color 0.3s ease;
}

    .cantidad-container button {
      width: 32px;
      height: 32px;
      border: none;
      background: #fff;
      color: #006352;
      font-weight: bold;
      font-size: 1.2rem;
      cursor: pointer;
      border-right: 1px solid #006352;
    }

    .cantidad-container button:last-of-type {
      border-left: 1px solid #006352;
      border-right: none;
    }

    .cantidad-container input {
      width: 40px;
      height: 32px;
      border: none;
      text-align: center;
      font-weight: bold;
      color: #006352;
    }

    .cantidad-cambiada {
  background-color: #ffe5e5 !important; /* tono suave apenas más oscuro, podés ajustar */
  transition: background-color 0.3s ease;
}

    /* Ocultar flechitas de los inputs de tipo number en todos los navegadores */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  appearance: textfield;         /* Estándar */
  -moz-appearance: textfield;    /* Firefox */
}
 
span.precio {
      color: #006352 !important;
      font-weight: bold;
    }

    td .precio {
      display: block;
      text-align: right;
    }
    
    td.columna-cantidad {
  text-align: center;
}

    td .cantidad-container {
      justify-content: center;
    }

    table.modo-cliente td:nth-child(1),
    table.modo-cliente td:nth-child(4) {
      text-align: center;
      vertical-align: middle;
    }

     #barra-superior {
      position: fixed; 
      top: 0px;
      background-color: #006352;
      z-index: 1000;
      padding: 0px 12px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      max-width: 960px;
      margin: 0 auto;
      border-radius: 0;
      color: white;
      left: 0;
      right: 0;
    }

#fila-extra-superior {
  display: flex;
  justify-content: space-between; 
  align-items: center;            
  padding: 8px 15px;
  font-size: 12px;
  background-color: transparent;
  gap: 250px; /* Opcional, para dar aire */
}

/* Regla NUEVA para centrar el botón */
#fila-extra-superior a {
  margin-left: auto;
  margin-right: auto;
}

#fila-extra-superior select {
  padding: 4px 6px;
  border-radius: 5px;
  width: 70px;
}

#vigencia-precios {
  font-size: 0.8rem; /* Tamaño de letra pequeño, informativo */
  color: #ffff;      /* Un color gris para no competir con el resto */
 }

    #menu {
      margin-top: 30px;
      /* Ajustá este valor según la altura visual de tu barra */
    }

    .barra-interacciones-6celdas {
      display: flex;
      flex-direction: row; 
      gap: 16px; 
      justify-content: space-between;
      flex-wrap: wrap;
    }
    
    .barra-interacciones {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr;
      align-items: center;
      gap: 1rem;
    }

    .barra-interacciones.columna {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .columna.izquierda {
      justify-content: flex-start;
      flex: 0 0 auto; 
      width: 300px;
      height: 130px; 
      display: flex; 
      flex-direction: column; 
      gap: 8px; 
      align-items: flex-start;
    }

       
    .columna.derecha {
      justify-content: flex-end;
      flex: 1; 
      width: 300px;
      height: 120px; 
      display: flex; 
      flex-direction: column; 
      gap: 8px; 
      align-items: flex-end;
    }

.celda {
  display: flex; 
  background-color: #006352;    
  gap: 8px;    
}
    
    .celda-A1 {
      height: 40px;
      width: 55px;
      align-items: center;
      white-space: nowrap;
      color: white;

    }

    .celda-A2 {
      height: 40px;
       width: 250px;
    }
    
    .celda-A3 {
      height: 40px;
       width: 250px;
    }

  .celda-C1 {
  height: 40px;
  width: 280px;
  display: flex; 
  align-items: center;
  justify-content: flex-end; 
}
    .celda-C2 {
  height: 30px;
  width: 280px;
  display: flex; 
  align-items: center;
  justify-content: flex-end; 
    }

  .celda-C3 {
  display: none; 
  }

  .logo-imagen {
  display: flex; 
  align-items: center; 
  max-height: 48px;
  padding: 8px;
  gap: 8px;
}

#bloqueIngreso {
    flex-wrap: nowrap;
    display: flex; 
    align-items: center; 
    gap: 4px;
  }

#bloqueIngreso input {
    font-size: 0.8rem;
    width: 60px;
  }
 
      #codigoCliente,
    .barra-interacciones button {
      background-color: #f9dce5;
      height: 32px;
      width: 65px;
      padding: 0px;
      font-size: 0.80rem;
      border-radius: 8px;
      border: none;
    }

    #codigoCliente:focus {
      background-color: #e4a9bb;
    }

    .barra-interacciones button {
      background-color: #ffffff;
      color: #006352;
      font-weight: bold;
      font-size: 0.75rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    .barra-interacciones button:hover {
      background-color: #e0e0e0;
    }

    #btnIngresar {
  font-size: 0.80rem;
  width: 60px;
  height: 32px;
  border-radius: 8px;
  background-color: white;
  color: #006352;
  font-weight: bold;
  border: none;
  cursor: pointer;
}



 .selectorCategorias {
    flex-shrink: 0; /* <-- PROHIBIDO ENCOGERSE */
    flex-basis: 50px;
}
 
   .linea-saludo {
   margin-top: 7px;
   font-size: 0.6rem;
   text-align: left;
 }

.mensaje-incentivo {
      font-size: 1rem;
      font-weight: 400;
      width: auto;
    }

 #totalPedido {
    display: none;
    text-align: right;
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: bold;  
    width: 100%; 
    background-color: transparent !important;
  }
  
  
  .totalPedido.celda {
    display: none;
     
  }
   
  #totalMonto {
    text-align: right;
    font-size: 0.7rem;
    margin-top: 4px;
    font-weight: bold;  
    width: 100%; 
  }

  .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #006352;
  margin: 2% auto; /* margen superior más chico */
  padding: 10px 14px;
  border-radius: 10px;
  width: fit-content;       /* se ajusta al contenido */
  max-width: 90vw;          /* nunca más del 90% del ancho */
  min-width: 240px;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: 'Kanit', sans-serif;
  word-wrap: break-word;

}

.modal-content h2 {
  color: white;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}


 .close {
  color: #ffffff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #f9dce5;
  text-decoration: none;
}

#contenidoPedido {
  font-size: 0.75rem;
  font-family: 'Courier New', monospace;
  white-space: pre-wrap;
  color: white;
  padding: 4px 0;
  margin-top: 8px;
}

.modal-medalla {
     filter: drop-shadow(0px 7px 8px rgba(0, 0, 0, 0.7));
}

#modalClienteNuevo h2 {
  color: #006352;
  margin-bottom: 10px;
  font-family: Chonburi;
  font-size: 2rem;
}


.modal-descuento span {
  color: #ed5c39;
  font-weight: bold;
}


.modal-pregunta {
  color: #006352;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.botones-modal {
  margin-top: 20px;
}

.btn-principal {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotVerde.jpg');
  background-size: cover;
  background-position: center;
  color: #FFFFFF !important;
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); 
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.btn-secundario {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotNaranja.jpg');
    background-size: cover;
  background-position: center;
  color: #006352 !important;
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); 
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-left: 10px;
}


.btn-continuar {
  margin: 5px;
  padding: 8px 12px;
  font-weight: bold;
  color: #006352;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.modal-medalla {
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.inner-modal-simple {
  background: #f9dce5;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 360px;
  margin: auto;
}

.modal button {
  background-color: white;
  color: #006352;
  font-weight: bold;
  border: none;
  padding: 8px 12px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.modal button:hover {
  background-color: #e0e0e0;
}

.tachado {
  text-decoration: line-through;
  text-decoration-color: #ed5c39;
}

#verPedidoBtn,
#whatsappBtn {
  display: none;
  height: 35px;
  width: 50px;
  font-size: 0.95rem;
  white-space: nowrap;
  border-radius: 6px;
  cursor: pointer;
  padding: 0 8px;
}

#verPedidoBtn {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotVerde.jpg');
  background-size: cover;
  background-position: center;
  color: #FFFFFF !important; 
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

#whatsappBtn {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotAzul.jpg');
  background-size: cover;
  background-position: center;
  color: #FFFFFF !important;
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.celda-clickeable {
  cursor: zoom-in;
  transition: background-color 0.2s ease;
}
.celda-clickeable:hover {
  background-color: #f3f3f3;
}

/* 🔲 Fondo del modal */
.modal-telefono {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: flex-start; /* 👈 Importante: alinear arriba */
  padding-top: 60px;        /* 👈 Espacio para que no quede pegado */
  z-index: 9999;
}

/* 🧩 Contenido del modal centrado */
.modal-telefono .modal-contenido {
  background: white;
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  width: 90%;
  max-width: 400px;
  text-align: center;
  animation: zoomIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


/* 🖊️ Input y botón del modal */
.modal-telefono input,
.modal-telefono button {
  margin-top: 14px;
  padding: 12px 16px;
  width: 100%;
  font-size: 1.15rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
}



.oculto {
  display: none;
}

#asistente-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 62px !important; /* Espacio desde el logo */
  margin-top: 0px;
}



#asistente-video:hover {
  transform: scale(1.05);
  transition: transform 0.2s;
}

#asistente-video img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  background: none;
  box-shadow: none;

}

.asistente-texto {
  margin-top: 2px;
  font-size: 10px;
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

/* Modal del video */
#modalVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.btn-cerrar-video {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ed5c39;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  z-index: 10000;
  cursor: pointer;
}

#modalVideo .contenedor-video {
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: 0;
  background: transparent;
}

#modalVideo iframe {
  width: 100%;
  height: 100%;
  border: none;
}


#modalVideo button {
  position: absolute;
  top: 10px;
  right: 40px;
  background: #ed5c39;
  color: white;
  border: none;
  padding: 6px 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10001;
}

.subtitulo-delivery {
  text-align: center;      /* Centra el texto */
  background: #00b06b;
  color: #006352;             /* Un color de texto gris oscuro, no tan fuerte como el negro */
  font-size: 0.9rem;       /* Un tamaño de letra ligeramente más grande que el texto normal */
  font-weight: normal;     /* Le quita la negrita si es que la tiene por defecto */
  font-style: italic;      /* Le da un estilo en cursiva para diferenciarlo */
  margin-bottom: 5px;     /* Agrega un espacio por debajo antes de que empiece el menú */
}

@keyframes rebote {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}
/* 💫 Animación de entrada */
@keyframes zoomIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes entradaTutora {
  from { opacity: 0; transform: translate(-50%, -20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes saltito {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}


/* // 15. Estilos responsive para móvil */
@media screen and (max-width: 600px) {
  body:not(.modo-cliente) th.columna-descripcion,
  body:not(.modo-cliente) td.columna-descripcion {
    display: none !important;
  }
 
  td {
      border: 1px solid #ccc;
      padding: 4px;
      font-size: 0.60rem;
      vertical-align: middle;
      text-align: left;
      word-wrap: break-word;
    }
  
    th:nth-child(1),
    td:nth-child(1) {
      width: 30%;
    }



  #barra-superior {
    flex-direction: column;
    padding: 0px 10px;
    width: auto;
      
  }

 #fila-extra-superior {
    flex-direction: row; /* Esto está bien, mantiene la fila horizontal */
    justify-content: space-between;
    padding: 2px 2px;
    gap: 35px;
  }

  #fila-extra-superior a,
  #fila-extra-superior select {
    font-size: 10px;
  }

.btn-estilo-3d {
  padding: 5px 5px;
}

  .logo-imagen {
  display: flex; 
  align-items: center; 
  max-height: 48px;
  padding: 3px;
 }
   
  .columna.izquierda {
      justify-content: flex-start;
      flex: 0 0 auto; 
      width: 130px; 
      height: 80px;
      display: flex; 
      flex-direction: column; 
      gap: 4px; 
      align-items: flex-start;
    }

       
    .columna.derecha {
      justify-content: flex-start;
      flex: 0 0 auto; 
      width: 120px;
      height: 110px;
      display: flex; 
      flex-direction: column; 
      gap: 4px; 
      align-items: flex-end;
    }

    .celda {
      display: flex; 
      background-color: #006352;    
       
    }
    
    .celda-A1 {
      height: 45px;
      width: 55px;
      color: white;
    }

    .celda-A2 {
      height: 35px;
      width: 130px;
      align-items: center;
      white-space: nowrap;
    }
    
    .celda-A3 {
      height: 25px;
      width: 140px;
    }

  .celda-C1 {
  height: 80px;
  width: auto;
  align-items: center;
  white-space: nowrap;
  justify-content: flex-end; 
}
  .celda-C2 {
  height: 35px;
  width: auto;
  white-space: nowrap;
  display: flex; 
  align-items: center;
  justify-content: flex-end; 
  }

  .celda-C3 {
  display: none; 
  }
 
#asistente-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 32px !important; /* Espacio desde el logo */
  margin-top: 0px;
}

  .linea-saludo {
   margin-top: 3px;
   font-size: 0.6rem;
   text-align: left;
 }
  
 .barra-interacciones-6celdas {
      display: flex;
      flex-direction: row; 
      gap: 6px; 
      justify-content: space-between;
      flex-wrap: wrap;
    }

   #codigoCliente,
    .barra-interacciones button {
      background-color: #f9dce5;
      height: 22px;
      width: 55px;
      padding: 0px;
      font-size: 0.80rem;
      border-radius: 8px;
      border: none;
    }

    #codigoCliente:focus {
      background-color: #e4a9bb;
    }

    .barra-interacciones button {
      background-color: #ffffff;
      color: #006352;
      font-weight: bold;
      font-size: 0.75rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    .barra-interacciones button:hover {
      background-color: #e0e0e0;
    }

    #btnIngresar {
  font-size: 0.6rem;
  width: 50;
  height: 22px;
  border-radius: 8px;
  background-color: white;
  color: #006352;
  font-weight: bold;
  border: none;
  cursor: pointer;
}



 .selectorCategorias {
    font-size: 0.55rem;
    width: auto;
    height: 22px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    align-items: center; 
    white-space: nowrap;
    justify-content: flex-end; 
  }

  
  #bloqueIngreso {
    flex-wrap: nowrap;
    display: flex;
    font-size: 0.5rem; 
    align-items: center; 
    gap: 4px;
  }
  
  #bloqueIngreso input {
    font-size: 0.7rem;
    width: 60px;
  }

  #bloqueIngreso button {
    font-size: 0.5rem;
    width: 45px;
    height: 25;
  }

  #bloqueIngreso button:hover {
  background-color: #e0e0e0;
}

  .mensaje-incentivo {
      font-size: 0.6rem;
      width: 140px;
      background-color: transparent;
    }

    
#totalPedido {
    display: none;
    text-align: right;
    font-size: 0.6rem;
    font-weight: bold;  
    width: 100%; 
    background-color: transparent !important;
  }

  #totalMonto {
    text-align: right;
    font-size: 0.6rem;
    margin-top: 4px;
    font-weight: bold;  
    width: 160px; 
  }
  
  #accionesCliente {
    display: flex;         /* 1. Usamos flexbox para controlar la alineación */
    flex-direction: column; /* 2. Apilamos los botones uno encima del otro */
     align-items: flex-end;    
    width: 100%;           /* 4. Hacemos que el contenedor ocupe todo el ancho disponible */
    gap: 3px;              /* 5. ESTA ES LA CLAVE: Define el espacio entre los botones. ¡Ajústalo a tu gusto! */
    padding: 10px 0;       /* Opcional: añade un poco de espacio arriba y abajo del grupo de botones */
    background-color: transparent !important;
  }

  #verPedidoBtn,
#whatsappBtn {
  display: none;
  height: 22px;
  width: 70px;
  font-size: 0.6rem;
  white-space: nowrap;
  border-radius: 6px;
  cursor: pointer;
  padding: 0 4px;
}

#verPedidoBtn {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotVerde.jpg');
  background-size: cover;
  background-position: center;
  color: #FFFFFF !important; 
}

#whatsappBtn {
  background-image: url('https://doblezzetacocina.com/wp-content/uploads/2025/07/imBotAzul.jpg');
  background-size: cover;
  background-position: center;
  color: #FFFFFF !important; 

  }


}