/** Shopify CDN: Minification failed

Line 496:0 Unexpected "}"

**/
.content-and-comparison-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  column-gap: 5rem;
  row-gap: 2rem;
}
.content-and-comparison-table--no-content {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 899px) {
  .content-and-comparison-table {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .content-and-comparison-table--table-first .comparison-table-container {
    order: -1;
  }
}

.content-and-comparison-table .content-container .title {
  margin-top: 0;
}
.comparison-table-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 50rem;
}
.comparison-table {
  flex-grow: 1;
  border-spacing: 0;
}
.comparison-table tbody {
 box-shadow: var(--table-shadow-horizontal-offset) var(--table-shadow-vertical-offset) var(--table-shadow-blur-radius) var(--table-border-width) rgba(var(--color-foreground),var(--table-shadow-opacity));
  /*box-shadow:var(--table-border-width) var(--table-border-width) var(--table-border-width) calc(var(--table-border-width) + var(--table-shadow-horizontal-offset)) rgb(var(--color-foreground)), var(--table-shadow-horizontal-offset) var(--table-shadow-vertical-offset) var(--table-shadow-blur-radius) var(--table-border-width) rgba(var(--color-button), var(--alpha-button-background));        
*/
 border-radius:  var(--table-corner-radius);
}
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: inset 0 0.1rem 0 0 rgba(var(--color-foreground), 0.05),
    inset 0 0.1rem 0 0 rgba(var(--color-foreground), 0.05);
}
.comparison-table img {
  vertical-align: middle;
}
.comparison-table th {
  padding: 0.5rem 0.75rem;
  font-size: 1.8rem;
  line-height: 1.3;
}
.comparison-table tbody tr:first-of-type .comparison-table__row-name {
  border-radius:  var(--table-corner-radius) 0 0 0;
}
.comparison-table tbody tr:last-of-type .comparison-table__row-name {
  border-radius: 0 0 0  var(--table-corner-radius);
}
.comparison-table tbody tr:first-of-type td:last-child {
  border-radius: 0  var(--table-corner-radius) 0 0;
}
.comparison-table tbody tr:last-of-type td:last-child {
  border-radius: 0 0  var(--table-corner-radius) 0;
}
.comparison-table tbody td:not(.comparison-table__row-name) {
  padding: 1rem 2rem;
}
.comparison-table__x {
  width: 2rem;
  height: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.comparison-table__checkmark {
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  margin: auto;
  display: inline-block;
}
.comparison-table__x span {
  content: "";
  display: block;
  height: 0.3rem;
  width: 1.8rem;
  background: rgb(var(--color-foreground));
  border-radius: 1rem;
  transform: rotate(45deg);
  flex-shrink: 0;
  flex-grow: 0;
}
.comparison-table__x span:nth-child(2) {
  position: absolute;
  transform: rotate(-45deg);
}
.comparison-table .comparison-table__row-name h3 {
  font-size: 1.8rem;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .comparison-table .comparison-table__row-name h3,
  .comparison-table th {
    font-size: 1.6rem;
  }
  .comparison-table__checkmark,
  .comparison-table__x {
    width: 1.8rem;
    height: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .comparison-table__logo img {
    max-width: var(--mobile-logo-width);
    height: auto;
  }
}

/* =========================================================
   FINAL OVERRIDES — borders + column sizing + wrapping
   Put this at the BOTTOM of section-comparison-table.css
   ========================================================= */

/* Let the table use full page width instead of being squeezed */
.comparison-table-container{
  max-width: 100% !important;   /* overrides 50rem */
  justify-content: stretch;
}

/* Make table behave nicely and allow text to wrap */
.comparison-table{
  width: 100% !important;
  table-layout: auto;          /* allows wrapping + fixed column sizing */
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--table-corner-radius, 0px);

  /* Border with safe fallback (works even if --color-foreground is weird) */
  border: var(--table-border-width, 0.1rem) solid rgba(0,0,0,0.12);
  border: var(--table-border-width, 0.1rem) solid rgba(var(--color-foreground), var(--table-border-opacity, 0.15));
}

/* Column widths: first column wide, icon columns narrow */
.comparison-table thead th:first-child,
.comparison-table tbody td:first-child{ width: 55%; }

.comparison-table thead th:nth-child(2),
.comparison-table tbody td:nth-child(2),
.comparison-table thead th:nth-child(3),
.comparison-table tbody td:nth-child(3){ width: 22.5%; }

/* Make first column text wrap instead of cutting off */
.comparison-table__row-name,
.comparison-table__row-name h3{
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Inner grid lines (safe fallback first, then theme-aware) */
.comparison-table thead th{
  border-bottom: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(var(--color-foreground), 0.12);
}

.comparison-table tbody tr + tr td{
  border-top: 1px solid rgba(0,0,0,0.08);
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
}

.comparison-table th + th,
.comparison-table td + td{
  border-left: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(var(--color-foreground), 0.08);
}

/* Keep padding smaller on mobile */
@media (max-width: 749px){
  .comparison-table td{ padding: 0.7rem 0.8rem !important; }
  .comparison-table tbody td:not(.comparison-table__row-name){
    padding: 0.7rem 0.8rem !important;
  }
}

/* Make "Others" column X red (3rd column) - works with your existing X */
.comparison-table tbody td:nth-child(3) .comparison-table__x span{
  background: #d50000 !important;
}

/* ===== FIX: stop table squashing, allow horizontal scroll if needed ===== */
.comparison-table-container{
  max-width: 100% !important;
}

.comparison-table{
  width: 100% !important;
  table-layout: auto !important; /* important: DON'T force fixed layout */
}

.comparison-table thead th{
  white-space: normal;          /* keep headings on one line */
}

/* ===== FIX: border that works even if --color-foreground isn't RGB ===== */
.comparison-table{
  border: 1px solid rgba(0,0,0,0.18) !important;
  border-radius: var(--table-corner-radius, 0px) !important;
}

/* ===== Compact comparison table like old theme ===== */

/* Keep the table compact and centered like your screenshot */
.comparison-table-container{
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 58rem;          /* adjust: 50rem–62rem */
  overflow-x: visible !important;  /* no scrolling */
}

/* Compact table with borders */
.comparison-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;                 /* enables controlled wrapping */
  border: 1px solid rgba(0,0,0,0.15);  /* always visible border */
  border-radius: var(--table-corner-radius, 0px);
  overflow: hidden;
}

/* Headings */
.comparison-table thead th{
  padding: 0.8rem 1rem;
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  white-space: nowrap;                 /* keeps "Simplivive" & "Others" clean */
}

/* Cells */
.comparison-table td{
  padding: 1rem 1rem;
  text-align: center;
  vertical-align: middle;
}

/* Inner grid lines */
.comparison-table tbody tr + tr td{
  border-top: 1px solid rgba(0,0,0,0.08);
}
.comparison-table th + th,
.comparison-table td + td{
  border-left: 1px solid rgba(0,0,0,0.08);
}

/* Column sizing: big first column, small icon columns */
.comparison-table thead th:first-child,
.comparison-table tbody td:first-child{
  width: 68%;
  text-align: center;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

/* Keep icon columns narrow */
.comparison-table thead th:nth-child(2),
.comparison-table tbody td:nth-child(2),
.comparison-table thead th:nth-child(3),
.comparison-table tbody td:nth-child(3){
  width: 16%;
}

/* Allow first column text to wrap nicely (prevents horizontal scroll) */
.comparison-table__benefit{
  white-space: normal;
  word-break: keep-all;      /* never split words */
  overflow-wrap: normal;    /* wrap only between words */
  line-height: 1.25;
  margin: 0;
}


/* Make Others column X red */
.comparison-table tbody td:nth-child(3) .comparison-table__x span{
  background: #d50000;
}

/* Optional: slightly smaller on mobile */
@media (max-width: 749px){
  .comparison-table-container{ max-width: 100%; }
  .comparison-table td{ padding: 0.7rem 0.8rem; }
  .comparison-table thead th{ padding: 0.6rem 0.7rem; font-size: 1.4rem; }
}

/* ===== Tighten vertical height ===== */

/* Reduce row height (cell padding) */
.comparison-table td{
  padding: 0.6rem 0.8rem !important;
}

/* Reduce header height */
.comparison-table thead th{
  padding: 0.55rem 0.75rem !important;
  line-height: 1.1;
}

/* Tighten the first-column text */
.comparison-table__row-name h3{
  font-size: 1.6rem !important;   /* try 1.4rem if still tall */
  line-height: 1.15 !important;
  margin: 0 !important;
}

/* Tighten the icons so they don't force tall rows */
.comparison-table__checkmark{
  width: 20px !important;
  height: 20px !important;
}
.comparison-table__x{
  width: 18px !important;
  height: 18px !important;
}
.comparison-table__x span{
  height: 2px !important;         /* thinner X bars */
}

/* ===== Final typography tuning (match old theme size) ===== */

/* First column ("Benefit") */
.comparison-table__row-name h3{
  font-size: 1.4rem !important;   /* was ~1.8 */
  font-weight: 400;
  line-height: 1.2 !important;
}

.comparison-table__row-name{
  font-weight: 400 !important;
}

/* Column headings */
.comparison-table thead th{
  font-size: 1.5rem !important;   /* shrink Simplivive / Others */
  font-weight: 700;
}

/* Body text inside table */
.comparison-table td{
  font-size: 1.4rem !important;
}

/* Slightly tighter rows */
.comparison-table td{
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* ===== Force Benefit column to normal weight ===== */

.comparison-table__row-name,
.comparison-table__row-name *{
  font-weight: 400 !important;
}

/* also explicitly reset h3 */
.comparison-table__row-name h3{
  font-weight: 400 !important;
}

/* Benefit text should NOT be bold */
.comparison-table__benefit{
  margin: 0;
  font-weight: 400;
  font-size: 1.0rem;  /* adjust if you want smaller/larger */
  line-height: 1.3;
}

/* ===== Fix heading sizes for Comparison Table section ===== */

.content-and-comparison-table .title.h2{
  font-size: 1.4rem;
}

.content-and-comparison-table .title.h1{
  font-size: 2.0rem;
}

.content-and-comparison-table .title.h0{
  font-size: 2.6rem;
}

@media (max-width: 749px){
  .content-and-comparison-table .title.h0{ font-size: 1.0rem; }
  .content-and-comparison-table .title.h1{ font-size: 1.6rem; }
  .content-and-comparison-table .title.h2{ font-size: 2.2rem; }
}

/* ===== Comparison table button styling ===== */

.content-and-comparison-table .button{
  background: #e6a9f2;           /* purple fill – adjust if needed */
  color: #ffffff !important;
  border: 2px solid #e6a9f2;     /* visible border */
  border-radius: 999px;         /* pill shape */
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: none;
}

/* Hover state */
.content-and-comparison-table .button:hover{
  background: transparent;
  color: #e6a9f2 !important;
}

/* ===== Center left content (heading + text + button) ===== */

.content-and-comparison-table .content-container{
  text-align: center;
}

/* Center the button */
.content-and-comparison-table .button{
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

/* Optional: tighten spacing between elements */
.content-and-comparison-table .content-container > *{
  margin-left: auto;
  margin-right: auto;
}

/* ===== Smaller "Us / Others" column headings ===== */

.comparison-table thead th:nth-child(2),
.comparison-table thead th:nth-child(3){
  font-size: 1.1rem !important;   /* adjust: 1.2–1.4 */
  font-weight: 600;
}

/* 1) Vertically center header row content */
.comparison-table thead th{
  vertical-align: middle !important;
}

.comparison-table thead th.comparison-table__logo{
  vertical-align: middle !important;
}

.comparison-table thead th.comparison-table__logo img{
  display: inline-block;
  vertical-align: middle;
}

/* 2) Reduce header row height */
.comparison-table thead th{
  padding: 0.35rem 0.6rem !important; /* smaller = shorter header */
  line-height: 1.1 !important;
}

/* 3) Perfect icon alignment */
.comparison-table td{
  vertical-align: middle !important;
}

.comparison-table__checkmark,
.comparison-table__x{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
  vertical-align: middle !important;
}

.comparison-table__logo img{
  max-height: 34px;   /* try 28–40 */
  width: auto;
}

}
