/* ============================================================
   Plum Group Foods â€“ Shared Product Availability Table Styles
   Used by: plum_vegetables.html, plum_fruits.html, plum_grains_beans.html
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: "Inter", sans-serif; background: #fff; color: #3F3F3F; }

/* â”€â”€ Page title bar â”€â”€ */
.pageTitleBar { background: #A33F87; padding: 18px 15px; text-align: center; }
.pageTitleBar h1 { font-weight: 800; font-size: clamp(18px, 4vw, 28px); letter-spacing: 0.06em; text-transform: uppercase; color: #fff; }

/* â”€â”€ Intro text â”€â”€ */
.productsIntro { padding: 36px 40px 24px; max-width: 1200px; margin: 0 auto; }
.productsIntro p { font-size: 15px; line-height: 1.75; color: #3F3F3F; margin-bottom: 16px; }
.productsIntro p:last-child { margin-bottom: 0; }

/* â”€â”€ Table section wrapper â”€â”€ */
.productTableSection { padding: 60px 40px 60px; max-width: 1200px; margin: 0 auto; }
.scrollHint { display: none; font-size: 12px; color: #A33F87; text-align: right; margin-bottom: 6px; }
.tableResponsiveWrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid #e0cfe9; border-radius: 4px; }

/* â”€â”€ Table tagline â”€â”€ */
.tableTagline {text-align: left;color: #a33f87;font-size: 13px;font-weight: 600;letter-spacing: 0.04em;padding: 10px;border: 0;}
.tableTagline span { margin: 0 6px; opacity: 0.5; }

/* ── Guide label ── */
.guide-label { text-align: center; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.75); letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 4px; padding: 0; background: none; }

/* â”€â”€ Table note â”€â”€ */
.tableNote { font-size: 12px; color: #7A7A7A; margin-top: 10px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; line-height: 1.6; }
.tableNote .check { flex-shrink: 0; }

/* ── Back to Products link ── */
.back-to-products {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #A33F87;
  text-decoration: none;
  margin-bottom: 12px;
  padding: 6px 14px 6px 10px;
  border: 1.5px solid #A33F87;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.back-to-products::before {
  content: "\2190";
  font-size: 15px;
  line-height: 1;
}
.back-to-products:hover {
  background: #A33F87;
  color: #fff;
}

/* â”€â”€ Table base â”€â”€ */
.productTable {width: 100%;border-collapse: collapse;font-size: 13px;}

/* Sticky first column */
.productTable thead tr th:first-child,
.productTable tbody tr td:first-child { position: sticky; left: 0; z-index: 2; }
.productTable thead tr th:first-child { z-index: 3;     text-align: left;
    padding-left: 14px;}

/* â”€â”€ Header row â”€â”€ */
.productTable thead tr th {
  background: #A33F87;
  color: #fff;
  font-weight: 700;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid #92357a;
  white-space: nowrap;
  font-size: 12px;
  border-bottom: 3px solid #7bac2c;
}
.productTable thead tr th.categoryCol {
  background: #A33F87;
  color: #fff;
  text-align: left;
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  padding-left: 14px;
  min-width: 170px;
  border-color: #92357a;
  border-bottom: 3px solid #C4D64A;
}

/* â”€â”€ Body cells â”€â”€ */
.productTable tbody tr td {
  background: #F1E7EF;
  border: 1px solid #d0cadc;
  padding: 7px 8px;
  text-align: center;
  color: #3F3F3F;
  vertical-align: middle;
}
.productTable tbody tr td.productName {
  background: #fff;
  text-align: left;
  font-weight: 500;
  padding-left: 14px;
}
.productTable tbody tr td.name {
  background: #fff;
  text-align: left;
  font-weight: 500;
  padding-left: 14px;
}

/* â”€â”€ Checkmark dot â”€â”€ */
.check {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #7BAC2C;
  vertical-align: middle;
}
.check::after { display: none; }

p.tableNote a {
    font-size: 12px;
    color: #7A7A7A;
    text-decoration: none;
}

.productTable.vegetablesTable { min-width: 820px; }
.productTable.vegetablesTable tbody tr:nth-child(odd) td  { background: #fff; }
.productTable.vegetablesTable tbody tr:nth-child(even) td { background: #F1E7EF; }

  .productTable.beansTable { min-width: 420px; }
  .productTable.beansTable thead tr th.categoryCol { min-width: 200px; }
  .productTable.beansTable tbody tr:nth-child(odd) td  { background: #fff; }
  .productTable.beansTable tbody tr:nth-child(even) td { background: #F1E7EF; }

  /* Fruits — table width + alternating rows */
  .productTable.fruitsTable { min-width: 580px; }
  .productTable.fruitsTable tbody tr:nth-child(odd) td  { background: #fff; }
  .productTable.fruitsTable tbody tr:nth-child(even) td { background: #F1E7EF; }

.pageTitleBar h1 {
    margin-bottom: 0;
}
/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 991px) {
  .productsIntro,
  .productTableSection { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 767px) {
  .scrollHint { display: block; }
  .productTable tbody tr td { padding: 5px; font-size: 12px; }
  .check { width: 12px; height: 12px; }
  .tableNote { font-size: 11px; gap: 4px; flex-direction: row; align-items: flex-start; }
  .back-to-products { font-size: 12px; padding: 5px 10px 5px 8px; }
     section#innerBanner { height: 125px !important; }
     .tableTagline {
    padding-left: 0;
}

}

