/* Product Variant List Widget Styles - Minimal */

.product-variant-list-container {
  padding: 15px;
  border: 1px solid #ccc;
}

.variant-list-title {
  margin: 0 0 15px 0;
  font-weight: bold;
  font-size: 18px;
}

.variant-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.variant-item {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-item:last-child {
  border-bottom: none;
}

.variant-name {
  font-weight: bold;
  flex: 1;
  min-width: 200px;
}

.variant-price {
  text-align: right;
  white-space: nowrap;
}

.sale-price {
  color: #e74c3c;
  font-weight: bold;
}

.regular-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 5px;
}

.variant-stock {
  font-size: 14px;
  white-space: nowrap;
}

.in-stock {
  color: #27ae60;
}

.out-of-stock {
  color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .variant-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .variant-name {
    min-width: unset;
  }

  .variant-price {
    text-align: left;
  }
}
