.bokun-mobile-bar {
    display:none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    will-change: transform;
    padding: 20px 0;
}
.bokun-content-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px; /* Espacio entre precio y botón */
    padding-right: 90px; /* 120px desde el borde derecho */
    box-sizing: border-box;
}

.price-container {
    text-align: right;
    line-height: 1.3;
}

.price-from {
    text-align:left;
    font-size: 14px;
    font-weight: 300; /* Texto más delgado */
}

.price-amount {
    font-size: 18px;
    font-weight: bold;
    display: inline-flex;
    align-items: baseline; /* Alinea correctamente */
    gap: 5px; /* Espacio entre el precio y la unidad */
}

.price-unit {
    font-weight: 300;
    font-size: 14px;
}

.bokun-button-wrapper {
    flex-shrink: 0; /* Evita que el botón se encoja */
}

.botonbok {
    display: inline-block;
    padding: 12px 24px;
    min-width: 120px;
    font-weight:bold;
    cursor: pointer;
    transition: all .2s ease;
    text-align: center;
  
}

.botonbok:hover {
    
    background: #222c56;
    color: #ffcc00;
}

/* Mostrar solo en móviles */
@media (max-width: 767px) {
    .bokun-mobile-bar {
        display: flex;
        justify-content: center;
    }
    
    .bokun-content-wrapper {
        width: 100%;
        max-width: 500px; /* Ancho máximo para contenedor */
    }
  /* Oculta el botón en móviles (por defecto) */
  #botonhero {
    display: none;
  }
}

/* Reglas específicas para 414px */
@media (max-width: 414px) {
    .bokun-content-wrapper {
        padding-right: 140px; /* Aumentado a 150px */
        justify-content: flex-end; /* Alinea todo a la derecha */
    }
    
    .price-container {
        display: none; /* Oculta el precio */
    }
    
    .botonbok {
        padding-left: 30px; /* Aumentado */
        padding-right: 30px; /* Aumentado */
        font-size:20px;
    }