/* W Cellar Age Gate Styling */
.wcellar-age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcellar-age-gate__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.wcellar-age-gate__content {
    position: relative;
    z-index: 2;
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 60px 40px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.wcellar-age-gate__logo {
    margin-bottom: 30px;
}

.wcellar-age-gate__logo img {
    max-height: 60px;
    width: auto;
}

.wcellar-age-gate__title {
    font-family: var(--font-serif, serif);
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 400;
}

.wcellar-age-gate__desc {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.wcellar-age-gate__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wcellar-age-gate__btn {
    width: 100%;
    padding: 18px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.wcellar-age-gate__btn--yes {
    background: #1a1a1a;
    color: #fff;
}

.wcellar-age-gate__btn--yes:hover {
    background: var(--color-accent, #800020);
}

.wcellar-age-gate__btn--no {
    background: #f5f5f5;
    color: #999;
}

.wcellar-age-gate__btn--no:hover {
    background: #eee;
    color: #666;
}

.wcellar-age-gate__footer {
    margin-top: 30px;
    font-size: 11px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .wcellar-age-gate__content {
        padding: 40px 25px;
    }
    .wcellar-age-gate__title {
        font-size: 1.5rem;
    }
}
