/* Video Pricing Styles */

.video-resolution-selector {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.resolution-buttons-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.resolution-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    text-align: center;
}

.resolution-btn:hover {
    border-color: #007bff;
    background: #f8f9ff;
}

.resolution-btn.active {
    border-color: #007bff;
    background: #007bff;
    color: white;
}

.resolution-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.resolution-price {
    font-size: 12px;
    color: #6c757d;
}

.resolution-btn.active .resolution-price {
    color: rgba(255, 255, 255, 0.8);
}

.video-pack-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 70px;
}

.pack-quantity {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.pack-unit {
    font-size: 11px;
    color: #6c757d;
    margin: 2px 0;
}

.pack-per-unit {
    font-size: 10px;
    color: #28a745;
    font-weight: 500;
}

.video-pack-btn.active .pack-unit {
    color: rgba(255, 255, 255, 0.8);
}

.video-pack-btn.active .pack-per-unit {
    color: rgba(255, 255, 255, 0.9);
}

.enhanced-price-display {
    color: #28a745;
    font-weight: 500;
    margin-left: 8px;
    font-size: 13px;
}

.badge--primary {
    background: #007bff;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

/* Video specific option styling */
.video-on-demand-option .option-radio:checked ~ .option-content {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.video-subscription-option .option-radio:checked ~ .option-content {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
}

/* Pack buttons row aligned with label */
.one-time-option .pack-selector-v2 .pack-buttons-row {
    margin-left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .resolution-buttons-row {
        justify-content: center;
    }
    
    .resolution-btn {
        min-width: 70px;
        padding: 10px 12px;
    }
    
    .pack-buttons-row {
        justify-content: center;
    }
    
    .video-pack-btn {
        min-width: 60px;
    }
}