/* Variants Section */
.product-modal-variants {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.product-variants-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.variant-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .variant-option:hover {
        border-color: #ff6b35;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
    }

.variant-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    cursor: pointer;
    gap: 1rem;
}

.variant-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #ff6b35;
    flex-shrink: 0;
}

.variant-info {
    flex: 1;
    min-width: 0;
}

.variant-name {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.variant-description {
    font-size: 0.875rem;
    color: #718096;
}

.variant-price {
    font-weight: 700;
    color: #ff6b35;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.variant-option:has(.variant-checkbox:checked) {
    border-color: #ff6b35;
    background: #fff5f2;
}

.variants-loading {
    text-align: center;
    padding: 2rem;
    color: #718096;
    font-style: italic;
}
/* Cart Item Variants */
.cart-item-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.5rem 0;
}

.cart-variant-item {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: #fff5f2;
    color: #ff6b35;
    border: 1px solid #ffd4c4;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.cart-item-name {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1rem;
    margin: 0.5rem 0;
}
}
