/**
 * IPTV Plans Display Styles
 */

.iptv-plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.iptv-plan-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.iptv-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50;
}

.iptv-plan-card h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.iptv-plan-card .plan-duration {
    color: #666;
    font-size: 16px;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.iptv-plan-card .plan-price {
    font-size: 32px;
    font-weight: bold;
    color: #4CAF50;
    margin: 20px 0;
}

.iptv-plan-card .plan-price .woocommerce-Price-amount {
    font-size: inherit;
}

.iptv-plan-card .iptv-select-plan {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.iptv-plan-card .iptv-select-plan:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.iptv-plan-card .iptv-select-plan:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.iptv-plan-card .iptv-select-plan:active {
    transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
    .iptv-plans-container {
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 20px;
    }
    
    .iptv-plan-card {
        padding: 20px;
    }
    
    .iptv-plan-card h3 {
        font-size: 20px;
    }
    
    .iptv-plan-card .plan-price {
        font-size: 28px;
    }
}

/* Featured Plan Styling */
.iptv-plan-card.featured {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
    position: relative;
}

.iptv-plan-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* ===========================================
   DARK THEME PLANS STYLES - MATCHING IMAGE DESIGN
   =========================================== */

.iptv-dark-plans-wrapper {
    background: #000000;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
}

.subscription-note {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 300;
}

.iptv-dark-plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.iptv-dark-plan-card {
    background: #000000;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.plan-header {
    background: #dc2626;
    padding: 20px 15px;
    border-radius: 0;
    margin-bottom: 0;
}

.plan-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-subtitle {
    color: #ffffff;
    font-size: 14px;
    margin: 0 0 5px 0;
    font-weight: normal;
}

.plan-devices {
    color: #ffffff;
    font-size: 12px;
    margin: 0;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-price {
    background: #000000;
    padding: 30px 15px;
    margin: 0;
}

.plan-price .woocommerce-Price-amount {
    color: #ffffff;
    font-size: 36px;
    font-weight: bold;
    display: block;
}

.plan-features {
    background: #000000;
    padding: 0 15px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #333333;
    color: #ffffff;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-check {
    background: #333333;
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.iptv-buy-now-btn {
    width: 100%;
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0 10px 0;
}

.iptv-buy-now-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.iptv-buy-now-btn:disabled {
    background: #666666;
    cursor: not-allowed;
    transform: none;
}

.delivery-info {
    color: #cccccc;
    font-size: 12px;
    margin: 0 0 20px 0;
    font-weight: 300;
}

.no-plans {
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    grid-column: 1 / -1;
    padding: 40px;
}

/* Responsive Design for Dark Theme */
@media (max-width: 1200px) {
    .iptv-dark-plans-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .iptv-dark-plans-container {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 20px;
    }
    
    .iptv-dark-plan-card {
        max-width: 100%;
    }
    
    .plan-title {
        font-size: 16px;
    }
    
    .plan-price .woocommerce-Price-amount {
        font-size: 32px;
    }
    
    .feature-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .iptv-dark-plans-wrapper {
        padding: 20px 10px;
    }
    
    .plan-header {
        padding: 15px 10px;
    }
    
    .plan-price {
        padding: 20px 10px;
    }
    
    .plan-features {
        padding: 0 10px;
    }
    
    .plan-price .woocommerce-Price-amount {
        font-size: 28px;
    }
}

