.wc-subscribe-btn {
    margin-left: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.wc-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.wc-subscribe-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wc-subs-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.wc-subs-modal-content {
    background: #fff;
    margin: 3% auto;
    padding: 40px;
    width: 95%;
    max-width: 1200px;
    border-radius: 20px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.4s;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.wc-subs-modal-content h2 {
    text-align: center;
    color: #1a202c;
    font-size: 32px;
    margin: 0 0 40px 0;
    font-weight: 700;
}

.wc-subs-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #cbd5e0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.wc-subs-modal-close:hover {
    background: #f7fafc;
    color: #1a202c;
    transform: rotate(90deg);
}

.wc-subs-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.wc-subs-plan-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.wc-subs-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.plan-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #f7fafc;
}

.plan-no-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255,255,255,0.9);
}

.plan-content {
    padding: 30px;
}

.plan-title {
    margin: 0 0 12px 0;
    color: #1a202c;
    font-size: 24px;
    font-weight: 700;
}

.plan-duration {
    display: inline-block;
    background: #edf2f7;
    color: #4a5568;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.plan-pricing {
    margin: 20px 0;
}

.plan-price-regular {
    color: #a0aec0;
    font-size: 18px;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.plan-price-sale {
    color: #667eea;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.plan-price-label {
    color: #718096;
    font-size: 14px;
    margin-top: 4px;
}

.plan-description {
    color: #4a5568;
    line-height: 1.6;
    margin: 20px 0;
    min-height: 60px;
}

.wc-subs-plan-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wc-subs-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.wc-subs-plan-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.wc-subs-plan-btn:hover .btn-icon {
    transform: translateX(4px);
}

.wc-subs-login-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    margin-top: 30px;
}

.wc-subs-login-section p {
    color: #4a5568;
    font-size: 16px;
    margin-bottom: 20px;
}

.wc-subs-login-btn,
.wc-subs-register-btn {
    padding: 14px 32px;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    margin: 0 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.wc-subs-login-btn {
    background: #2d3748;
    color: #fff;
}

.wc-subs-login-btn:hover {
    background: #1a202c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.wc-subs-register-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.wc-subs-register-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .wc-subs-plans {
        grid-template-columns: 1fr;
    }
    
    .wc-subs-modal-content {
        padding: 30px 20px;
        margin: 5% auto;
    }
    
    .wc-subs-modal-content h2 {
        font-size: 24px;
    }
}