/* ============================================================
   PP Block — Comparison Table  (.pp-comparison-table-section)
   ============================================================ */

.pp-comparison-table-section {
  padding: 80px 0 80px;
  background-color: #fef7ed;
  position: relative;
  overflow: hidden;
}

/* ── Decorative blobs (food images can be set via background-image) ── */
.pp-ct-deco {
  position: absolute;
  width: 200px;
  height: 200px;
  pointer-events: none;
  opacity: 0.55;
  background-size: contain;
  background-repeat: no-repeat;
}
.pp-ct-deco--tl {
  top: -30px;
  left: -30px;
  background-position: top left;
}
.pp-ct-deco--br {
  bottom: -30px;
  right: -30px;
  background-position: bottom right;
}

/* ── Header ──────────────────────────────────────────────── */
/* .pp-ct-label-row {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pp-ct-heading {
    font-family: var(--global-heading-font);
    color: #1A1A1A;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.pp-ct-heading-accent {
    color: var(--orange);
}

.pp-ct-subtext {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #666;
    font-style: italic;
} */

/* ── Layout ──────────────────────────────────────────────── */
.pp-ct-wrapper {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: start;
  gap: 0;
  position: relative;
  margin-top: 70px;
}

/* ── VS Badge ────────────────────────────────────────────── */
.pp-ct-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 27px;
  color: var(--orange);
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  position: sticky;
  top: 50%;
  align-self: center;
  z-index: 10;
  letter-spacing: 0;
  transform: translateY(-10%);
  margin-left: -13px;
}

/* ── Columns ─────────────────────────────────────────────── */
.pp-ct-col {
  background: #faf8f4;
  border-radius: 20px;
  padding: 30px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--grey);
  position: relative;
}

.pp-ct-col.pp-ct-col--ours {
  border-color: var(--orange);
  background: #fef5ea;
}

/* Column header */
.pp-ct-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px 9px 50px;
  background: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--white);
  position: absolute;
  width: auto;
  display: inline-flex;
  border-radius: 20px;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 21;
}
.pp-ct-col-header span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: var(--white);
}

.pp-ct-col-header.pp-ct-col-header--others {
  background: var(--grey);
}

.pp-ct-col-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  display: flex;
  border-radius: 100%;
  border: 2px solid var(--orange);
  position: absolute;
  left: 0;
}
.pp-ct-col-icon i {
  font-size: 24px;
  color: var(--orange);
}
.pp-ct-col-icon.pp-ct-col-icon--others {
  border-color: var(--grey);
  color: var(--grey);
}
.pp-ct-col-icon.pp-ct-col-icon--others i {
  color: var(--grey);
}

/* ── Rows ─────────────────────────────────────────────────── */
.pp-ct-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0px 45px 0px 25px;
  padding: 15px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.pp-ct-row:last-child {
  border-bottom: none;
}

/* .pp-ct-row:hover {
  background: rgba(255, 87, 51, 0.03);
} */

/* .pp-ct-row--others:hover {
  background: rgba(0, 0, 0, 0.02);
} */

/* Row icon */
.pp-ct-row-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 87, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: brightness(0) saturate(100%) invert(49%) sepia(94%) saturate(2087%) hue-rotate(6deg) brightness(98%) contrast(102%);
}

.pp-ct-row-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.pp-ct-row-icon--others {
  background: rgba(0, 0, 0, 0.08);
  filter: brightness(0) saturate(100%) invert(46%) sepia(8%) saturate(334%) hue-rotate(180deg) brightness(92%) contrast(87%);
}

/* Row body */
.pp-ct-row-body {
  flex: 1;
  text-align: left;
}

.pp-ct-row-body strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}

.pp-ct-row-body p {
  font-size: 14px;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
}

.pp-ct-row-body--others strong {
  color: #555;
}

/* Tick / Cross badge */
.pp-ct-row-badge {
  flex-shrink: 0;
  align-self: center;
}
.pp-ct-row-badge svg {
  width: 20px;
  height: 20px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .pp-ct-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pp-ct-vs {
    position: static;
    margin: 0 auto;
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .pp-ct-col {
    border-radius: 16px;
  }

  .pp-ct-row {
    padding: 14px 16px;
  }
}
