/**
 * Membership Checkout Styles
 * Phase 6F-B: Styling for membership checkout integration
 * 
 * @package WAD_Membership
 */

/* Subscribe Button */
.wad-subscribe-btn {
    background: linear-gradient(135deg, #1db954, #0ca63f);
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    margin-top: 20px;
}

.wad-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 185, 84, 0.3);
    background: linear-gradient(135deg, #1ed760, #0ca63f);
}

.wad-subscribe-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Upgrade Button */
.wad-upgrade-now-btn {
    background: linear-gradient(135deg, #ffd700, #ffc107);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wad-upgrade-now-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Wallet Info Display */
.wad-wallet-info {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 1px solid #1db954;
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.wad-wallet-icon {
    font-size: 20px;
}

.wad-wallet-text {
    font-weight: 600;
    color: #1db954;
}

.wad-wallet-link {
    color: #fff;
    text-decoration: none;
    padding: 5px 12px;
    background: rgba(29, 185, 84, 0.2);
    border-radius: 20px;
    font-size: 12px;
    transition: background 0.2s ease;
}

.wad-wallet-link:hover {
    background: rgba(29, 185, 84, 0.4);
    color: #fff;
}

/* Upgrade Summary Modal */
.wad-upgrade-summary {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 25px;
    max-width: 400px;
    width: 90%;
    z-index: 10000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.wad-upgrade-summary h3 {
    margin-top: 0;
    color: #fff;
}

.wad-upgrade-summary .wad-summary-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #2a2a2a;
}

.wad-upgrade-summary .wad-total {
    font-weight: 800;
    color: #1db954;
    font-size: 18px;
}

.wad-upgrade-summary button {
    margin-top: 20px;
    width: 100%;
}

.wad-upgrade-summary-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

/* Responsive */
@media (max-width: 768px) {
    .wad-subscribe-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .wad-wallet-info {
        flex-direction: column;
        text-align: center;
    }
}