
  .btn-principal {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #1c3b34;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  .popup-carta {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  .carta-contenido {
    overflow-y: auto;
    flex-grow: 1;
    position: relative;
  }
  
  .btn-cerrar-carta {
    position: absolute;
    top: 15px; right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .menu-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    background: #2d5f54;
    padding: 0.5rem 1rem;
    border-left: 6px solid #2d5f54;
    border-radius: 8px;
    display: inline-block;
  }
  
  .menu-filtros {
    margin-bottom: 1rem;
  }
  .menu-filtros button {
    background: #eee;
    border: none;
    padding: 0.6rem 1rem;
    margin-right: 0.5rem;
    cursor: pointer;
    border-radius: 8px;
  }
  
  .menu-seccion .producto {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
  }
  
  .img-polaroid {
    width: 100px;
    height: 100px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
  }
  
  .precio-acciones {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .precio {
    color: #2d5f54;
    font-weight: bold;
  }
  
  .btn-agregar {
    background: #2d5f54;
    color: white;
    border: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
  }
  
 
  
  .popup-carta {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .carta-contenido {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    height: 90%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  .menu-title {
    font-size: 2rem;
    text-align: center;
    color: #ffffff;
    position: relative;
    margin-bottom: 1.5rem;
  }
  
  .menu-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #2d5f54;
    margin: 0.5rem auto 0;
    border-radius: 2px;
  }
  
  .menu-filtros {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .menu-filtros button {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #2d5f54;
    color: white;
    border-radius: 6px;
    cursor: pointer;
  }
  
  
  .popup-carta {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-size: contain;
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  
  .img-polaroid-expandida {
    background: white;
    padding: 1.5rem 1rem 1rem;
    max-width: 70%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  .img-polaroid-expandida img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 0; /* sin bordes redondos para efecto polaroid */
  }
  
  .img-polaroid-expandida p {
    margin-top: 1rem;
    color: #2d5f54;
    font-style: italic;
  }
  .fondo-carta {
    background-size: cover;
    background-attachment: fixed;
    backdrop-filter: blur(3px);
  }
  .carrito-sticky {
    position: sticky;
    bottom: 0;
    background: #2d5f54;
    color: white;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.2);
  }
  
  .carrito-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
  }
  
  .carrito-header span {
    font-size: 1.1rem;
    font-weight: bold;
  }
  
  .btn-siguiente {
    background: #a8dadc;
    color: #1d3557;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    cursor: pointer;
  }
  
  #carrito {
    display: none;
    padding: 1rem;
  }
  
  #carrito.abierto {
    display: block;
  }
  
  #btnToggleCarrito {
    background: none;
    border: none;
    font-size: 1rem;
    color: white;
    margin: 0 1rem;
    cursor: pointer;
  }
  .carrito-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #2d5f54;
    color: white;
  }
  
  .caja-title {
    font-weight: bold;
    font-size: 1.3rem;
  }
  
  .btn-siguiente {
    background-color: #a8dadc;
    color: #1d3557;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 1rem;
  }
  
  #btnToggleCarrito {
    margin-left: auto;
    margin-right: 0.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
  }
  
  /* El contenido del carrito */
  .carrito-contenido {
    display: none;
    padding: 1rem;
    background: white;
    color: #2d5f54;
  }
  
  .carrito-contenido.abierto {
    display: block;
  }
  
  .item-carrito {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .item-carrito button.eliminar {
    background-color: #e63946;
    border: none;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
  }
  /* Overlay y fondo */
.overlay-carta {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* Contenedor de la carta */
  .popup-carta {
    width: 90vw;
    height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background-size: cover;
    background-attachment: fixed;
  }
  
  /* Contenido scrolleable */
  .carta-contenido {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
  }
  
  /* Producto */
  .producto {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.85);
    padding: 1rem;
    border-radius: 12px;
  }
  
  /* Imagen */
  .img-polaroid {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
  }
  
  /* Título Mengano */
  .menu-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    border-bottom: 3px solid #2d5f54;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
  }
  
  /* Precio + botón */
  .precio-acciones {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  
  .precio {
    font-weight: bold;
    color: #2d5f54;
  }
  
  .btn-agregar {
    background: #2d5f54;
    color: white;
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
  }
  
  /* Caja Mengano */
  .carrito-sticky {
    position: sticky;
    bottom: 0;
    background: #2d5f54;
    padding: 1rem 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
  }
  
  .carrito-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: white;
    font-weight: bold;
  }
  
  .caja-title {
    font-size: 1.2rem;
    margin-right: 1rem;
  }
  
  .carrito-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .carrito-controles {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .btn-siguiente {
    background: #b6e2d3;
    color: #2d5f54;
    padding: 0.5rem 1rem;
    border: none;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
  }
  
  /* Contenido del carrito */
  .carrito-contenido {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .item-carrito {
    background: white;
    color: #2d5f54;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
  }
  
  .eliminar {
    background: transparent;
    color: #2d5f54;
    border: 1px solid #2d5f54;
    margin-left: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    padding: 0 0.4rem;
  }
  
  /* Scroll bonito */
  .carta-contenido::-webkit-scrollbar {
    width: 6px;
  }
  
  .carta-contenido::-webkit-scrollbar-thumb {
    background: #2d5f54;
    border-radius: 10px;
  }
  
  .carta-contenido::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .carrito-sticky {
    position:sticky;
    bottom: 0;
    background: #2d5f54;
    padding: 1rem 2rem;
    z-index: 999;
    color: white;
    max-height: 200px;
    overflow-y: auto;
  }
  
  .carrito-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #fff;
  }
  
  .carrito-contenido {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    max-height: 120px;
  }
  
  .item-carrito {
    background: white;
    color: #2d5f54;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .item-carrito button {
    margin-left: 1rem;
  }
  
  .carrito-contenido::-webkit-scrollbar {
    width: 4px;
  }
  
  .carrito-contenido::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 10px;
  }

  /* --- Imagen Expandida (bien centrada) --- */
.overlay-expand {
    position:fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
  
  .img-polaroid-expandida {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    text-align: center;
  }
  
  /* Botón flotante para ir al fondo */
.btn-scroll-bottom {
    position: fixed;
    right: 1rem;
    bottom: 6rem;
    background: #2d5f54;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s;
  }
  
  .btn-scroll-bottom:hover {
    background: #1e4038;
  }
  
  /* Carrito al final del popup carta */
  .carrito-sticky {
    position: sticky;
    bottom: 0;
    background: #2d5f54;
    color: white;
    padding: 1rem;
    z-index: 5000;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: 3rem;
  }
  
  .carrito-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .carrito-contenido {
    max-height: 200px;
    overflow-y: auto;
    margin-top: 1rem;
    background: #fff;
    color: black;
    border-radius: 10px;
    padding: 0.5rem;
  }
  
  /* Espacio para que no tape los cafés */
  .menu-seccion {
    padding-bottom: 200px;
  }
  .menu-seccion {
    display: none;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
  @media (max-width: 768px) {
    .popup-carta {
      padding: 0;
      border-radius: 0;
      height: 100vh;
      overflow-y: auto;
    }
  
    .carta-contenido {
      padding: 1rem;
      border-radius: 0;
      height: 100%;
      overflow-y: auto;
    }
  
    .menu-title {
      font-size: 1.5rem;
      text-align: center;
    }
  
    .menu-filtros {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  
  
    .precio-acciones {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    .carrito-sticky {
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: #2d5f54;
      padding: 0.8rem 1rem;
      z-index: 9999;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }
  
    .carrito-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.5rem;
    }
  
    .carrito-controles {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
    }
  
    .btn-siguiente, #btnToggleCarrito {
      font-size: 1rem;
      padding: 0.6rem 1.2rem;
    }
  
    #resumen-final {
      padding: 1rem;
    }
  
    #resumen-final input,
    #resumen-final select {
      width: 100%;
      font-size: 1rem;
      margin-bottom: 1rem;
    }
  
    .resumen-acciones {
      flex-direction: column;
      gap: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .menu-title {
      font-size: 1.8rem;
      text-align: center;
      color: #ffffff;
    }
  
    .menu-filtros {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 1rem;
      flex-wrap: wrap;
    }
  
    .menu-filtros button {
      padding: 0.6rem 1.2rem;
      font-size: 1rem;
      background-color: #1d4036;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s;
    }
  
    .menu-filtros button:hover {
      background-color: #2e5c4b;
    }
  }
  @media (max-width: 480px) {
    .btn-cerrar-carta {
      width: 36px;
      height: 36px;
      font-size: 1.2rem;
      top: 8px;
      right: 8px;
    }
  }
  
  
  .btn-agregar {
    background-color: #76c893;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
  }
  
  .btn-agregar:hover {
    background-color: #5aa77a;
  }

  .resumen-container {
    padding: 2rem;
    background-color: #fff;
    color: #1d1d1d;
    min-height: 100vh;
  }
  
  .resumen-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #25564F;
    border-bottom: 2px solid #76c893;
    padding-bottom: 0.5rem;
  }
  
  .resumen-lista {
    margin-bottom: 1rem;
  }
  
  .resumen-total {
    text-align: right;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .resumen-form input,
  .resumen-form select {
    width: 95%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .resumen-acciones {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  
  .resumen-acciones button {
    background-color: #25564F;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .resumen-acciones button:hover {
    background-color: #1b3f38;
  }
  .resumen-item {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
  }
  
  .resumen-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .resumen-detalle {
    flex: 1;
  }
  
  .resumen-detalle h4 {
    margin: 0;
    font-size: 1rem;
    color: #1b3f38;
  }
  
  .resumen-detalle p {
    margin: 0.2rem 0;
    color: #444;
  }
  .btn-eliminar {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    font-weight: bold;
    cursor: pointer;
  }
  #resumen-final {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto; /* ✅ Permite scroll en desktop */
  }
  
  .menu-title.resumen {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2e4d41;
    font-size: 1.8rem;
    border-bottom: 2px solid #2e4d41;
    padding-bottom: 0.5rem;
  }
  
  .resumen-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f6f6f6;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
  }
  .resumen-container {
    max-height: 90vh;
    overflow-y: auto;
    padding-bottom: 6rem; /* Para dejar lugar a los botones */
  }
  
  .resumen-acciones {
    position: sticky;
    bottom: 0;
    background: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    z-index: 20;
  }
  body.resumen-activo .carrito-sticky {
    display: none;
  }
  .resumen-container {
    max-height: 100vh;
    overflow-y: auto;
    padding-bottom: 200px; /* 👈 Esto ayuda en móvil */
  }
  @media (max-width: 600px) {
    .resumen-container {
      padding-bottom: 250px;
    }
  }
  .btn-eliminar-resumen {
    background: none;
    border: none;
    color: #c0392b;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    align-self: center;
  }
  .menu-title.resumen-title {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
  }
  .btn-eliminar-resumen:hover {
    color: #e74c3c;
    transform: scale(1.2);
  }
  .producto h4 {
    color: #1b3f38;
  }

  .producto p {
    color: #da88ac;


  }
  .item-carta {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
    padding: 14px 20px;
    gap: 20px;
  }
  
  .zona-foto img {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }
  
  .titulo-bebida {
    font-size: 16px;
    margin: 0;
    color: #2d6a4f;
    text-align: left;
  }
  
  .detalle-bebida {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #ff585e;
    text-align: left;
  }
  
  .item-carta > div:nth-child(2) {
    flex: 1;
  }
  
  .zona-botonera {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
  }
  
  .precio-final {
    font-weight: bold;
    font-size: 15px;
  }
  
  .boton-sumar {
    padding: 4px 10px;
    font-size: 14px;
    background: #2d6a4f;
    color: white;
    border: none;
    border-radius: 100px;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .producto {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      padding: 10px 14px;
      gap: 10px;
      margin-bottom: 12px;
    }
  
    .col-img img {
      width: 50px;
      height: 50px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
    }
  
    .col-info {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-left: 8px;
    }
  
    .col-info h4 {
      font-size: 15px;
      color: #2d6a4f; /* verde mengano */
      margin: 0;
      line-height: 1.2;
    }
  
    .col-info p {
      font-size: 12px;
      color: #e5989b; /* rosa pastel */
      margin: 2px 0 0;
      line-height: 1.2;
      white-space: normal;
      word-wrap: break-word;
    }
  
    .col-acciones {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex-shrink: 0;
    }
  
    .col-acciones .precio {
      font-weight: bold;
      font-size: 14px;
      white-space: nowrap;
    }
  
    .col-acciones .btn-agregar {
      padding: 4px 10px;
      font-size: 14px;
      background: #2d6a4f;
      color: white;
      border: none;
      border-radius: 100px;
      cursor: pointer;
    }
  }
  
  @media (max-width: 768px) {
    .producto {
      display: grid;
      grid-template-columns: 60px 1fr auto;
      align-items: center;
      padding: 10px 14px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      margin-bottom: 10px;
      gap: 10px;
    }
  
    .col-img {
      padding-right: 4px; /* espacio entre imagen y texto */
    }
  
    .col-img img {
      width: 50px;
      height: 50px;
      object-fit: cover;
      border-radius: 8px;
      display: block;
    }
  
    .col-info h4 {
      font-size: 15px;
      color: #2d6a4f; /* verde mengano */
      margin: 0;
    }
  
    .col-info p {
      margin: 2px 0 0 0;
      font-size: 12px;
      color: #e5989b; /* rosa pastel */
    }
  
    .col-acciones {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
  
    .col-acciones .precio {
      font-weight: bold;
      font-size: 14px;
    }
  
    .col-acciones .btn-agregar {
      margin-top: 5px;
      padding: 3px 8px;
      font-size: 14px;
      background: #2d6a4f;
      color: white;
      border: none;
      border-radius: 100px;
      cursor: pointer;
    }
  }
  @media (max-width: 768px) {
    .item-carta {
      display: grid;
      grid-template-columns: 60px 1fr auto;
      align-items: center;
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      margin-bottom: 10px;
      gap: 10px;
    }
  
    .zona-foto img {
      width: 50px;
      height: 50px;
      object-fit: cover;
      padding-left: 10px;
    }
  
    .titulo-bebida {
      padding-top: 15px;
      font-size: 15px;
      color: #2d6a4f;
      margin: 0;
      text-align: left;
    }
  
    .detalle-bebida {
      margin: 0 0 0 0; /* más pegado aún al título */
      font-size: 12px;
      color: #e57579;
      padding-bottom: 15px;
      text-align:left;
      
    }
  
    .zona-botonera {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-right: 10px;
    }
  
    .precio-final {
      font-weight: bold;
      font-size: 14px;
    }
  
    .boton-sumar {
      margin-top: 5px;
      padding: 3px 8px;
      font-size: 14px;
      background: #2d6a4f;
      color: white;
      border: none;
      border-radius: 100px;
      cursor: pointer;
    }
  }
  .menu-filtros a {
    padding: 8px 16px;
    border: 2px solid #2d6a4f; /* verde mengano */
    border-radius: 100px;
    background: transparent;
    color: #2d6a4f;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .menu-filtros a:hover {
    background: #2d6a4f;
    color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  .menu-seccion h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #2d6a4f; /* verde mengano */
    border-left: 4px solid #2d6a4f;
    padding-left: 10px;
    margin: 30px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
    