/**
 * Frontend Styles
 *
 * @package PP_Access_Control
 */

/* Paywall Container */
.pp-paywall-content {
    position: relative;
}

.pp-paywall-excerpt {
    opacity: 0.6;
    pointer-events: none;
}

.pp-paywall-overlay {
    position: relative;
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-top: 3px solid #2271b1;
    margin-top: -100px;
}

.pp-paywall-message h3 {
    font-size: 28px;
    margin: 0 0 15px 0;
    color: #1d2327;
}

.pp-paywall-message p {
    font-size: 18px;
    margin: 0 0 25px 0;
    color: #50575e;
}

/* CTA Buttons */
.pp-paywall-cta {
    margin: 30px 0;
}

.pp-btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pp-btn-primary {
    background: #2271b1;
    color: #fff;
}

.pp-btn-primary:hover {
    background: #135e96;
    color: #fff;
}

.pp-btn-secondary {
    background: #f0f0f1;
    color: #2c3338;
}

.pp-btn-secondary:hover {
    background: #dcdcde;
    color: #2c3338;
}

/* Benefits List */
.pp-paywall-benefits {
    margin: 30px 0 15px 0;
    font-weight: 600;
    color: #1d2327;
}

.pp-paywall-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

.pp-paywall-benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f1;
}

.pp-paywall-benefits-list li:before {
    content: "✓";
    color: #00a32a;
    font-weight: bold;
    margin-right: 10px;
}

/* Remaining Notice */
.pp-remaining-notice {
    background: #fcf8e3;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.pp-remaining-notice p {
    margin: 0;
    color: #856404;
}

.pp-remaining-notice a {
    color: #856404;
    text-decoration: underline;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .pp-paywall-overlay {
        padding: 30px 15px;
    }

    .pp-paywall-message h3 {
        font-size: 24px;
    }

    .pp-paywall-message p {
        font-size: 16px;
    }

    .pp-btn {
        display: block;
        margin: 10px 0;
    }
}
