/** Shopify CDN: Minification failed

Line 166:26 Unexpected "'LTCushion'"

**/
/* ============================================================================
 * Compared to Others — Comparison table section
 * Self-contained, BEM-only. No theme classes or tokens are used.
 *
 * Layout:
 *   - Header (title + subtitle) at the top.
 *   - Body is a two-column flex layout: comparison table on the left,
 *     product image on the right.
 *   - The comparison table is a 3-column flex (Features / Brand / Others).
 *     The middle "Brand" column is highlighted dark and extends above and
 *     below the side columns via two rounded "caps".
 * ========================================================================== */

.compared-to-others {
  display: block;
  width: 100%;
  background-color: var(--cto-bg, #ffffff);
  box-sizing: border-box;
  padding: 64px;
}

/* Inner wrapper ---------------------------------------------------------- */
.compared-to-others__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* Screen-reader only helper --------------------------------------------- */
.compared-to-others__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header ----------------------------------------------------------------- */
.compared-to-others__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  width: 100%;
}

.compared-to-others__title {
  margin: 0;
  font-family: 'LTCushion';
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  color: var(--cto-title);
}

.compared-to-others__subtitle {
  margin: 0;
  font-family: "Roboto Serif", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--cto-subtitle, #000000);
}

/* Body — table + image --------------------------------------------------- */
.compared-to-others__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

/* Table ------------------------------------------------------------------ */
.compared-to-others__table {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Columns ---------------------------------------------------------------- */
.compared-to-others__column {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background-color: var(--cto-card-bg, #ffffff);
}

.compared-to-others__column--features {
  width: 220px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.compared-to-others__column--others {
  width: 180px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.compared-to-others__column--brand {
  background-color: var(--cto-highlight-bg, #101632);
  color: var(--cto-highlight-text, #ffffff);
  width: 180px;
  position: relative;
  z-index: 1;
  align-items: center;
}

/* Brand caps — sit at the top and bottom of the brand column and are
   pulled outside the column with negative margins so the column "sticks
   out" above and below the neighbouring side columns. */
.compared-to-others__cap {
  display: block;
  height: 20px;
  width: 100%;
  background-color: var(--cto-highlight-bg, #101632);
  flex-shrink: 0;
}

.compared-to-others__cap--top {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: -20px;
}

.compared-to-others__cap--bottom {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-bottom: -20px;
}

/* Cells ------------------------------------------------------------------ */
.compared-to-others__cell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* min-height: 76px; */
  padding: 30px 32px;
  color: var(--cto-card-text, #000000);
  border-bottom: 1px solid var(--cto-divider, rgba(0, 0, 0, 0.12));
}

.compared-to-others__column.compared-to-others__column--others .compared-to-others__cell.compared-to-others__cell--head {
  justify-content: center;
}

.compared-to-others__cell:last-child {
  border-bottom: 0;
}
                          'LTCushion'
/* Brand cells override divider + alignment so they are clean & centered */
.compared-to-others__cell--brand {
  border-bottom: 0;
  justify-content: center;
  color: var(--cto-highlight-text, #ffffff);
  min-height: 90px;
}

.compared-to-others__cell--others {
  justify-content: center;
}

/* Header row cells ------------------------------------------------------- */
.compared-to-others__cell--head {
  min-height: 80px;
}

.compared-to-others__cell--head.compared-to-others__cell--brand {
  min-height: 80px;
}

/* Typography inside cells ----------------------------------------------- */
.compared-to-others__column-title {
  font-family: 'LTCushion';
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  text-align: center;
}

.compared-to-others__column-title--on-dark {
  color: var(--cto-highlight-text, #ffffff);
  text-align: center;
}

.compared-to-others__feature {
  font-family: "Roboto Serif", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: var(--cto-card-text, #000000);
}
.compared-to-others__column--brand svg path {
  fill: #FCEABC !important;
}

.compared-to-others__column--others svg path {
  fill: #84421D !important;
}
 .custom-comparison__icon {
  width: 36px;
  max-width: 36px;
  min-width: 36px;
  height: 36px;
  max-height: 36px;
  min-height: 36px;
  border-radius: 0%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 8px;
 }

 .comparison__icon--check{
  background-color: #fceabc;
  color: #84421d;
  font-weight: 700;
 }
 .comparison__icon--cross{
  background-color: #84421d;
  color: #fceabc;
 }
.compared-to-others__value {
  font-family:"Roboto Serif", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #84421D;
}

.compared-to-others__value--on-dark {
  color: var(--cto-highlight-text, #ffffff);
}

/* Icons ------------------------------------------------------------------ */
.compared-to-others__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.compared-to-others__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.compared-to-others__icon--check {
  color: var(--cto-check, #4ade80);
}

.compared-to-others__icon--x {
  color: var(--cto-x, #dc2626);
}

/* Image ------------------------------------------------------------------ */
.compared-to-others__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
}

.compared-to-others__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
 * Tablet (>= 768px)
 * -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .compared-to-others__inner {
    gap: 48px;
  }

  .compared-to-others__title {
    font-size: 36px;
  }

  .compared-to-others__subtitle {
    font-size: 18px;
  }

  .compared-to-others__column--features {
    width: 260px;
  }

  .compared-to-others__column--brand,
  .compared-to-others__column--others {
    width: 200px;
  }

  .compared-to-others__cell {
    min-height: 86px;
    padding: 24px 28px;
  }

  .compared-to-others__cell--brand {
    min-height: 90px;
  }

  .compared-to-others__column-title {
    font-size: 22px;
  }

  .compared-to-others__feature {
    font-size: 18px;
  }

  .compared-to-others__value {
    font-size: 18px;
  }
}

/* --------------------------------------------------------------------------
 * Desktop (>= 990px)
 * Place image to the right of the table.
 * -------------------------------------------------------------------------- */
@media (min-width: 990px) {
  .compared-to-others__inner {
    gap: 60px;
  }

  .compared-to-others__title {
    font-size: 44px;
  }

  .compared-to-others__subtitle {
    font-size: 20px;
  }

  .compared-to-others__body {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }

  .compared-to-others__column--features {
    width: 300px;
  }

  .compared-to-others__column--brand,
  .compared-to-others__column--others {
    width: 220px;
  }

  .compared-to-others__cell {
    min-height: 90px;
    padding: 28px 32px;
  }

  .compared-to-others__cell--brand {
    min-height: 90px;
  }

  .compared-to-others__cell--head,
  .compared-to-others__cell--head.compared-to-others__cell--brand {
    min-height: 86px;
  }

  .compared-to-others__column-title {
    font-size: 24px;
  }

  .compared-to-others__feature {
    font-size: 20px;
  }

  .compared-to-others__value {
    font-size: 20px;
  }

  .compared-to-others__icon {
    width: 32px;
    height: 32px;
  }

  .comparison__icon--check,
  .comparison__icon--cross {
    font-size: 24px;
  }

  .compared-to-others__image-wrap {
    max-width: none;
    flex: 1 1 auto;
    min-width: 0;
  }

  .compared-to-others__image {
    max-width: 560px;
    margin-inline: auto;
  }
}

/* --------------------------------------------------------------------------
 * Large desktop (>= 1280px)
 * -------------------------------------------------------------------------- */
@media (min-width: 1280px) {
  .compared-to-others__title {
    font-size: 48px;
  }
}

/* --------------------------------------------------------------------------
 * Section padding switches to a tight 32/16 gutter below desktop so it
 * matches the rest of the page on tablet + mobile.
 * -------------------------------------------------------------------------- */
@media (max-width: 1280px) {
  .compared-to-others {
    padding: 48px 16px;
  }
}

/* --------------------------------------------------------------------------
 * Small screens — slightly tighter columns so the table fits without
 * horizontal scroll on common phone widths.
 * -------------------------------------------------------------------------- */
@media (max-width: 786px) {
  .compared-to-others__inner {
    gap: 32px;
  }

  .compared-to-others__column--features {
    width: 150px;
  }

  .compared-to-others__column--brand,
  .compared-to-others__column--others {
    width: 100px;
  }

  .compared-to-others__cell {
    padding: 16px 12px;
    min-height: 72px;
  }

  .compared-to-others__cell--brand {
    min-height: 76px;
  }

  .compared-to-others__column-title {
    font-size: 16px;
  }

  .compared-to-others__feature,
  .compared-to-others__value {
    font-size: 14px;
  }

  .custom-comparison__icon {
    width: 22px;
    max-width: 22px;
    min-width: 22px;
    height: 22px;
    max-height: 22px;
    min-height: 22px;
    font-size: 18px;
    margin: 0;
  }
}

@media (max-width: 360px) {
  .compared-to-others__column--features {
    width: 130px;
  }

  .compared-to-others__column--brand,
  .compared-to-others__column--others {
    width: 88px;
  }

  .compared-to-others__cell {
    padding: 14px 10px;
  }
}
