/**
 * Difadi More Eighteen Module
 * 
 * Create a popup to verify that the user is over 18 years old before entering the store
 *
 * @author    Difadi.com soporte@difadi.com
 * @copyright 2026 Difadi.com
 * @license   Commercial
 */
#dfd-moreeighteen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

#dfd-moreeighteen-overlay.active {
    display: flex;
}

#dfd-moreeighteen-modal {
    background: #fff;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#dfd-moreeighteen-modal .dfd-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

#dfd-moreeighteen-modal h2 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

#dfd-moreeighteen-modal .dfd-content {
    margin: 20px 0;
    font-size: 16px;
    color: #666;
}

#dfd-moreeighteen-modal .dfd-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

#dfd-moreeighteen-modal .btn {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    transition: background 0.3s;
}

#dfd-moreeighteen-modal .btn-primary {
    background: #24b9d7;
    color: #fff;
}

#dfd-moreeighteen-modal .btn-primary:hover {
    background: #1da1bc;
}

#dfd-moreeighteen-modal .btn-secondary {
    background: #f1f1f1;
    color: #333;
}

#dfd-moreeighteen-modal .btn-secondary:hover {
    background: #e1e1e1;
}

body.dfd-blocked {
    overflow: hidden !important;
}
