/* En custom.css (que carga primero) */
@import url("icons.css");

.custom-select-wrapper {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.custom-select {
    /* Oculta flecha nativa */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 100%;
    height: 50px;
    padding: 0px 50px 12px 20px !important;
    background: #fff;
    font-weight: 500;
    cursor: pointer;
}

.custom-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%239CA4B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.custom-select:hover {
    border-color: #d1d5db;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23EF4444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
/*
.custom-select:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
*/

/* Opciones dropdown rojo */
.custom-select option {
    background: #ef4444;
    color: white;
    padding: 12px;
    font-weight: 500;
}

.text-justify {
    text-align: justify;
}



.floating-buttons {
    position: fixed;
    bottom: 80px; /* Ajusta si footer interfiere */
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp { background-color: #25d366; }
.whatsapp:hover { background-color: #128c7e; transform: scale(1.05); }
.pago-amigo {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    font-size: 20px;
}
.pago-amigo:hover {
    background: linear-gradient(45deg, #ff9800, #f57c00);
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .floating-buttons { bottom: 20px; right: 15px; }
    .float-btn { width: 55px; height: 55px; font-size: 26px; }
}
