.wppp-locked-container {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.wppp-premium-text {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 20px;
}

.wppp-premium-text h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.wppp-premium-text p {
    margin: 5px 0;
    font-size: 16px;
}

.wppp-subscribers-text {
    font-size: 18px;
    font-weight: bold;
}

.wppp-premium-text-top {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    margin-bottom: 40px;
}

.wppp-premium-text-top h3 {
    margin: 0 0 15px 0;
    font-size: 32px;
    font-weight: 700;
}

.wppp-premium-text-top p {
    margin: 8px 0;
    font-size: 18px;
}

.wppp-premium-text-inline {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    margin-bottom: 30px;
}

.wppp-premium-text-inline h3 {
    margin: 0 0 10px 0;
    font-size: 28px;
}

.wppp-preview {
    background: #fff;
    border-left: 4px solid #007cba;
    padding: 15px;
    margin-bottom: 20px;
    color: #666;
}

.wppp-preview h4 {
    margin-top: 0;
    color: #333;
}

.wppp-payment-required {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.wppp-lock-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.wppp-plans-inline {
    margin-top: 20px;
}

.wppp-plans-inline-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 20px;
}

.wppp-plan-box-inline {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.wppp-plan-box-inline:hover {
    background-color: #ffebee;
    border-color: #f44336;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.wppp-plan-box-inline .wppp-plan-header h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    color: #333;
    font-weight: 600;
}

.wppp-plan-box-inline .wppp-plan-header h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #333;
}

.wppp-plan-box-inline .wppp-plan-price {
    font-size: 32px;
    color: #007cba;
    margin: 20px 0;
    font-weight: bold;
}

.wppp-plan-box-inline .wppp-plan-period {
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.wppp-plan-box-inline .wppp-plan-description {
    margin: 20px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.wppp-plan-box {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    background: #fff;
    transition: all 0.3s ease;
}

.wppp-plan-box:hover {
    background-color: #ffebee;
    border-color: #f44336;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.wppp-plan-box .wppp-plan-header h3 {
    margin: 0 0 20px 0;
    font-size: 26px;
    color: #333;
    font-weight: 600;
}

.wppp-plan-box .wppp-plan-price {
    font-size: 36px;
    color: #007cba;
    margin: 25px 0;
    font-weight: bold;
}

.wppp-plan-box .wppp-plan-period {
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.wppp-plan-box .wppp-plan-description {
    margin: 25px 0;
    color: #666;
    line-height: 1.6;
}

.wppp-subscribe-button {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    width: 100%;
    max-width: 200px;
}

.wppp-subscribe-button:hover {
    background: #005a87;
    transform: scale(1.05);
}

.wppp-subscribe-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Inline plans container */
.wppp-plans-inline-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: stretch;
    margin: 30px 0;
}

.wppp-plans-wrapper {
    margin: 20px 0;
}

.wppp-plans-grid {
    margin: 30px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .wppp-plans-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .wppp-plans-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .wppp-plans-grid {
        grid-template-columns: 1fr !important;
    }
    
    .wppp-plans-inline-container {
        flex-direction: column;
        align-items: center;
    }
    
    .wppp-plan-box-inline {
        max-width: 100%;
        width: 100%;
    }
    
    .wppp-premium-text-top h3 {
        font-size: 24px;
    }
    
    .wppp-premium-text-top p {
        font-size: 16px;
    }
    
    .wppp-plan-box {
        padding: 20px;
    }
    
    .wppp-plan-box .wppp-plan-price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .wppp-plan-box {
        padding: 15px;
    }
    
    .wppp-plan-box .wppp-plan-price {
        font-size: 24px;
    }
    
    .wppp-subscribe-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .wppp-premium-text-top {
        padding: 25px 15px;
    }
    
    .wppp-premium-text-top h3 {
        font-size: 20px;
    }
}