/* Overlay */
.tfi-age-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* Active state (controlled by JS) */
.tfi-age-popup-overlay.active {
    display: flex;
}

/* Popup box */
.tfi-age-popup-box {
    background: #fff;
    max-width: 420px;
    width: 90%;
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Logo */
.tfi-age-popup-logo {
    margin-bottom: 15px;
}

.tfi-age-popup-logo img {
    max-width: 120px;
    height: auto;
}

/* Title */
.tfi-age-popup-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

/* Description */
.tfi-age-popup-text {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Buttons container */
.tfi-age-popup-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Buttons base */
.tfi-age-btn {
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.2s ease-in-out;
}

/* YES button */
.tfi-age-btn-yes {
    background: #2878a7;
    color: #fff;
}

.tfi-age-btn-yes:hover {
    background: #217088;
}

/* NO button */
.tfi-age-btn-no {
    background: #3591dc;
    color: #fff;
}

.tfi-age-btn-no:hover {
    background: #237ec8;
}
/* Logo wrapper */
.tfi-age-popup-logo {
    margin-bottom: 16px;
    text-align: center;
}

/* Logo image */
.tfi-age-popup-logo img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: inline-block;
}.tfi-age-popup-box {
    background: #fff;
    max-width: 420px;
    width: 90%;
    padding: 28px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}