/**
 * v2.3.11 — Album termék blokkolási üzenetek
 *
 * A SHOP album termékoldalon a Kosárba gomb helyén megjelenő üzenetekhez.
 * Csak akkor töltődik be, ha a felhasználó nem vásárolhatja meg az albumot
 * (nincs belépve, vagy belépve, de nincs feltöltött oldala).
 */

.irv-album-restriction {
    max-width: 560px;
    margin: 20px 0;
    padding: 28px 32px;
    background: #faf8f3;
    border: 1px solid rgba(184, 135, 46, 0.22);
    border-left: 4px solid #b8872e;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.irv-album-restriction .irv-restriction-icon {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1;
}

.irv-album-restriction .irv-restriction-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: #1c1812;
    margin: 0 0 14px;
    line-height: 1.3;
}

.irv-album-restriction .irv-restriction-text {
    font-size: 15px;
    color: #3a3328;
    line-height: 1.6;
    margin: 0 0 20px;
}

.irv-album-restriction .irv-restriction-button {
    display: inline-block;
    background: #b8872e;
    color: #ffffff !important;
    padding: 13px 28px;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s ease;
    border: 1.5px solid #b8872e;
}

.irv-album-restriction .irv-restriction-button:hover,
.irv-album-restriction .irv-restriction-button:focus {
    background: #9a701f;
    border-color: #9a701f;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .irv-album-restriction {
        padding: 22px 20px;
    }
    .irv-album-restriction .irv-restriction-title {
        font-size: 20px;
    }
    .irv-album-restriction .irv-restriction-text {
        font-size: 14px;
    }
    .irv-album-restriction .irv-restriction-button {
        padding: 12px 22px;
        font-size: 14px;
    }
}
