/* assets/age-gate-wine.css - estilos básicos y responsive */

#age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

#age-gate-modal {
    background: #fff;
    max-width: 420px;
    width: calc(100% - 40px);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    text-align: center;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

#age-gate-modal h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
}

.age-gate-text {
    margin: 0 0 18px;
    color: #333;
    font-size: 14px;
}

.age-gate-buttons {
    display:flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-gate-btn {
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    min-width: 140px;
}

.age-gate-btn-yes {
    background: #2f6f3a; /* verde vino */
    color: #fff;
}

.age-gate-btn-no {
    background: #fff;
    color: #2f6f3a;
    border: 2px solid #2f6f3a;
}

/* mobile adjustments */
@media (max-width:420px){
    .age-gate-btn { min-width: 100px; padding: 10px; }
}