.cgv-combo-box {
    border: 2px solid #ff6b35;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    background: linear-gradient(135deg, #fff9f5 0%, #fff 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.cgv-combo-box.expired {
    opacity: 0.6;
    pointer-events: none;
}

.cgv-combo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.cgv-combo-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.4em;
    font-weight: 600;
}

.cgv-combo-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: bold;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cgv-combo-timer {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ffc107;
}

.cgv-timer-icon {
    font-size: 1.5em;
    animation: ring 1s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.cgv-countdown {
    font-weight: bold;
    color: #d63031;
    font-size: 1.1em;
}

/* Products section */
.cgv-combo-products {
    margin-bottom: 20px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.cgv-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.cgv-products-header strong {
    font-size: 1.1em;
    color: #333;
}

.cgv-selection-count {
    background: #28a745;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9em;
}

.cgv-products-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cgv-product-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.cgv-product-item:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.cgv-product-item label {
    display: flex;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    margin: 0;
}

.cgv-product-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

.cgv-product-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cgv-product-name {
    flex: 1;
    font-size: 1em;
    color: #333;
    line-height: 1.4;
}

.cgv-product-name .quantity {
    color: #666;
    font-size: 0.9em;
    margin-left: 5px;
}

.cgv-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cgv-product-price .original-price {
    color: #999;
    font-size: 0.9em;
}

.cgv-product-price .discounted-price {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.1em;
}

.cgv-discount-badge {
    background: #00b894;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: bold;
}

/* Pricing section */
.cgv-combo-pricing {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.cgv-price-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cgv-price-original {
    color: #999;
    font-size: 1em;
}

.cgv-price-combo {
    font-size: 1.3em;
    color: #333;
    transition: all 0.3s ease;
}

.cgv-price-combo.has-discount {
    color: #ff6b35;
}

.cgv-price-combo strong {
    font-size: 1.2em;
}

.cgv-price-savings {
    color: #00b894;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cgv-savings {
    font-size: 1.1em;
}

.savings-percent {
    background: #00b894;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.cgv-warning {
    background: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    border: 1px solid #ffc107;
    font-size: 0.95em;
}

/* Actions */
.cgv-combo-actions {
    text-align: center;
}

.cgv-add-combo-to-cart {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white !important;
    padding: 14px 35px !important;
    font-size: 1.15em !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cgv-add-combo-to-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cgv-add-combo-to-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Notifications */
.cgv-notification {
    position: fixed;
    top: 100px;
    right: -350px;
    background: #333;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 99999;
    transition: right 0.3s ease;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cgv-notification.show {
    right: 20px;
}

.cgv-notification-success {
    background: linear-gradient(135deg, #00b894, #00cec9);
}

.cgv-notification-error {
    background: linear-gradient(135deg, #d63031, #e17055);
}

/* Responsive */
@media (max-width: 768px) {
    .cgv-combo-box {
        padding: 15px;
        margin: 15px 0;
    }
    
    .cgv-combo-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .cgv-product-item label {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cgv-product-checkbox {
        margin-bottom: 10px;
    }
    
    .cgv-product-info {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .cgv-products-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}