/* =================================
   MODAL VERIFICACIÓN DE EDAD +18
   ================================= */

/* Overlay del modal */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal container */
.age-verification-modal {
    background: white;
    max-width: 500px;
    width: 90%;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Logo en el modal */
.age-verification-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

/* Título del modal */
.age-verification-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

/* Texto del modal */
.age-verification-text {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Botones del modal */
.age-verification-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-verification-btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Botón SÍ */
.age-btn-yes {
    background-color: #e91e63;
    color: white;
}

.age-btn-yes:hover {
    background-color: #c2185b;
    transform: translateY(-2px);
}

/* Botón NO */
.age-btn-no {
    background-color: #757575;
    color: white;
}

.age-btn-no:hover {
    background-color: #616161;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .age-verification-modal {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .age-verification-title {
        font-size: 20px;
    }
    
    .age-verification-buttons {
        flex-direction: column;
    }
    
    .age-verification-btn {
        width: 100%;
    }
}

/* =================================
   ICONOS Y EMOJIS
   ================================= */

/* Iconos FontAwesome */
.age-verification-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.age-verification-warning i {
    margin-right: 8px;
    font-size: 18px;
    color: #ff9800;
}

/* Emojis de fallback - ocultos por defecto */
.emoji-fallback {
    display: none;
    margin-right: 6px;
    font-size: 16px;
}

/* Si FontAwesome no funciona, mostrar emojis */
.age-verification-btn i:empty + .emoji-fallback,
.age-verification-warning i:empty + .emoji-fallback {
    display: inline;
}

.age-verification-btn i:empty {
    display: none;
}

.age-verification-warning i:empty {
    display: none;
}

/* Clases adicionales para los botones - unificación */
.age-verification-yes {
    background-color: #e91e63;
    color: white;
}

.age-verification-yes:hover {
    background-color: #c2185b;
    transform: translateY(-2px);
}

.age-verification-no {
    background-color: #757575;
    color: white;
}

.age-verification-no:hover {
    background-color: #616161;
    transform: translateY(-2px);
}

/* Estilos adicionales para body y question */
.age-verification-body {
    margin-bottom: 30px;
}

.age-verification-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 20px;
    color: #856404;
    font-weight: 600;
}

.age-verification-message {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.age-verification-question {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 0;
}

.age-verification-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Test para debugging FontAwesome */
@media screen {
    .age-verification-btn::before {
        content: '';
        position: absolute;
        left: -1000px;
        font-family: FontAwesome;
    }
}