
.multi-variant-selector {
margin: 2rem 0;
padding: 1.5rem;
border: 1px solid #e0e0e0;
border-radius: 8px;
}
.variant-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
border-bottom: 1px solid #f0f0f0;
}
.variant-row:last-of-type {
border-bottom: none;
}
.variant-info {
display: flex;
gap: 1rem;
align-items: center;
flex: 1;
}
.variant-title {
font-weight: 500;
min-width: 150px;
}
.variant-price {
color: #666;
}
.stock-status {
font-size: 0.875rem;
padding: 0.25rem 0.5rem;
border-radius: 4px;
}
.stock-status.in-stock {
background: #e8f5e9;
color: #2e7d32;
}
.stock-status.out-of-stock {
background: #ffebee;
color: #c62828;
}
.quantity-selector input {
width: 80px;
padding: 0.5rem;
border: 1px solid #ddd;
border-radius: 4px;
text-align: center;
}
.multi-variant-summary {
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 2px solid #e0e0e0;
text-align: center;
}
.multi-variant-summary p {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 1rem;
}
#add-multiple-variants {
padding: 1rem 2rem;
font-size: 1rem;
cursor: pointer;
}
#add-multiple-variants:disabled {
opacity: 0.5;
cursor: not-allowed;
}