/* Easy Product Variations Table Styles
-------------------------------------- */

.easy-product-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 20px;
}

/* Strong selectors (Flatsome-safe) */
.easy-product-table-wrapper #easy-variations-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
  font-size: 14px;
}

.easy-product-table-wrapper #easy-variations-table th,
.easy-product-table-wrapper #easy-variations-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  vertical-align: middle;
}

/* BRAND HEADER */
.easy-product-table-wrapper #easy-variations-table thead th {
  background-color: #ed1c24 !important;
  color: #ffffff !important;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 2px solid rgba(255,255,255,.25);
}

/* Zebra rows */
.easy-product-table-wrapper #easy-variations-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Hover row */
.easy-product-table-wrapper #easy-variations-table tbody tr:hover {
  background-color: rgba(237,28,36,.08) !important;
}

/* Click behaviour - every value cell in the row can select the variation */
.easy-product-table-wrapper #easy-variations-table tbody td {
  cursor: pointer !important;
  user-select: none;
}

/* Selected row */
.easy-product-table-wrapper #easy-variations-table tbody tr.highlight {
  background-color: #eef1f8 !important;
  outline: 2px solid #ed1c24;
  outline-offset: -2px;
}

/* Login link */
.easy-product-table-wrapper .price-login-link {
  color: #ed1c24;
  text-decoration: underline;
}

.easy-product-table-wrapper .price-login-link:hover {
  text-decoration: none;
}

/* Hide guest-only columns */
.hidden-column {
  display: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  .easy-product-table-wrapper #easy-variations-table {
    font-size: 13px;
  }
  .easy-product-table-wrapper #easy-variations-table th,
  .easy-product-table-wrapper #easy-variations-table td {
    padding: 8px;
  }
}


/* === FINAL UI TWEAKS === */

/* Bold Item Code column */
.easy-product-table-wrapper #easy-variations-table tbody td:first-child {
  font-weight: 700;
}

/* Capitalised column headings */
.easy-product-table-wrapper #easy-variations-table thead th {
  text-transform: uppercase !important;
  letter-spacing: 0.03em;
}
