/* ==========================================================================
   TABLE ROW & CELL STYLES
   Optimized styles to replace inline styles in table.js
   ========================================================================== */

/* Common cell styles */
.cell-base {
  font-size: 0.85rem;
  padding: 0.5rem 0.4rem;
  line-height: 1.4;
  vertical-align: middle;
  border-bottom: 1px solid #e5e7eb;
}

/* Specific column styles */
.cell-product {
  white-space: normal;
  text-align: left;
}

.cell-price-per-100 {
  white-space: normal;
}

.cell-size {
  white-space: nowrap;
}

.cell-availability {
  white-space: normal;
}

.cell-price-total {
  white-space: nowrap;
}

.cell-type {
  white-space: normal;
  word-break: normal;
}

.cell-alcohol {
  white-space: nowrap;
}

.cell-sweetness {
  white-space: nowrap;
}

/* Product name link */
.product-link {
  white-space: normal;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Price/100mL Discount Container */
.discount-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.discount-text {
  font-size: 0.7rem;
  color: #111827;
  font-weight: 500;
  line-height: 1.2;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

/* Price Combo (Regular + Sale) */
.price-combo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.price-regular-strike {
  text-decoration: line-through;
  color: #6b7280;
  font-size: 0.75rem;
}

.price-sale-highlight {
  font-weight: 700;
  color: #b91c1c;
}

