/* CocoStore Age Gate */
.age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.age-gate-box {
    text-align: center;
    max-width: 440px;
    width: 90%;
    padding: 48px 40px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
}

.age-gate-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 32px;
}

.age-gate-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.age-gate-text {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin: 0 0 32px;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.age-gate-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    text-align: center;
}

.age-gate-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.age-gate-btn-confirm {
    background: #e53e3e;
    color: #fff;
}

.age-gate-btn-exit {
    background: transparent;
    color: #888;
    border: 1px solid #444;
}

.age-gate-btn-exit:hover {
    color: #fff;
    border-color: #666;
}

/* Hidden state after verification */
.age-gate-overlay.age-gate-hidden {
    display: none;
}
