/* ============================================================
   PP Block — How to Prepare  (.pp-htp-section)
   ============================================================ */

.pp-htp-section {
  padding: 80px 0 60px;
  background-color: var(--bgcreame, #fef8ee);
  position: relative;
  overflow: hidden;
}

/* ── Section Header ──────────────────────────────────────── */
/* .pp-htp-header {
    margin-bottom: 60px;
} */

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

.pp-htp-label-icon { flex-shrink: 0; } */

/* .pp-htp-heading {
    font-family: var(--global-heading-font, serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #1A1A1A;
    line-height: 1.1;
    margin-bottom: 14px;
}

.pp-htp-heading-accent {
    color: var(--orange, #FF5733);
} */

/* .pp-htp-subheading {
    font-size: 16px;
    color: #777;
    margin: 0;
} */

/* ── Methods list ────────────────────────────────────────── */
.pp-htp-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Single method row ───────────────────────────────────── */
.pp-htp-method {
  background: #fef9f4;
  border-radius: 25px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 200px;
}

/* ── Left card ───────────────────────────────────────────── */
.pp-htp-method-card {
  flex-shrink: 0;
  width: 220px;
  background: linear-gradient(160deg, #fdf6ee 0%, #fef6ee 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
  text-align: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 87, 51, 0.1);
}

.pp-htp-method-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--orange, #ff5733);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(255, 87, 51, 0.35);
  margin-bottom: 4px;
}

.pp-htp-method-icon-wrap img {
  width: 43px;
  height: 43px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.pp-htp-method-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
}

h3.pp-htp-method-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.pp-htp-method-divider {
  width: 30px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  margin: 3px 0px 8px;
}
.pp-htp-method-time {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.pp-htp-method-time .fa-clock {
  font-size: 26px;
  color: var(--black);
}
.pp-htp-method-time span {
  font-size: 12px;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-weight: 400;
}

.pp-htp-method-time span strong {
  color: var(--orange);
  font-size: 16px;
  font-weight: bold;
}

/* ── Steps area ──────────────────────────────────────────── */
.pp-htp-steps-area {
  flex: 1;
  padding: 30px 28px;
  display: flex;
  align-items: center;
}

.pp-htp-steps-track {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  position: relative;
}

/* ── Single step ─────────────────────────────────────────── */
.pp-htp-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* ── Step image wrap ─────────────────────────────────────── */
.pp-htp-step-img-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pp-htp-step-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  display: block;
}

.pp-htp-step-img--empty {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #eee;
  border-radius: 16px;
}

/* Step number badge */
.pp-htp-step-num {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--orange, #ff5733);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(255, 87, 51, 0.4);
  z-index: 3;
  top: 20px;
}

/* Small step icon below image */
.pp-htp-step-icon {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: #feebb3;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 3;
}

.pp-htp-step-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(49%) sepia(94%) saturate(2087%) hue-rotate(6deg) brightness(98%) contrast(102%);
}

/* ── Step body text ──────────────────────────────────────── */
.pp-htp-step-body {
  padding-top: 20px;
}

h4.pp-htp-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
}

.pp-htp-step-desc {
  font-size: 14px;
  color: var(--grey);
  margin: 0;
  line-height: 1.4;
}

/* ── Dashed connector between steps ─────────────────────── */
.pp-htp-connector {
  position: absolute;
  top: 40px; /* vertically centred on image */
  right: -2px;
  transform: translateX(50%);
  z-index: 2;
  pointer-events: none;
  display: none;
}

/* ── Footer Bar ──────────────────────────────────────────── */
.pp-htp-footer-bar {
  margin-top: 60px;
  /* background: #fef6ef; */
  /* border-top: 1px solid rgba(0, 0, 0, 0.06); */
  /* box-shadow: 0 6px 28px rgba(0, 0, 0, 0.05); */
  /* padding: 15px 0; */
  width: 100%;
  /* border-radius: 20px; */
  margin: 20px auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* margin: 0 auto; */
}

.pp-htp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 0;
  position: relative;
  background: #fef6ef;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.05);
  padding: 15px 40px 15px 50px;
  border-radius: 20px;
}
.pp-htp-footer-inner:before {
  content: "\f785";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 7 Brands";
  font-size: 21px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-htp-footer-inner:after {
  content: "\f299";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Font Awesome 7 Brands";
  font-size: 24px;
  color: var(--orange);
}

.pp-htp-footer-item {
  font-size: 14px;
  color: var(--grey);
  font-weight: 500;
  padding: 0 13px;
}

.pp-htp-footer-item--hl {
  color: var(--orange);
  font-weight: 600;
}

.pp-htp-footer-sep {
  color: #f9dec2;
  font-size: 16px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .pp-htp-method {
    flex-direction: column;
    border-radius: 20px;
  }

  .pp-htp-method-card {
    width: 100%;
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid rgba(255, 87, 51, 0.1);
    padding: 20px 24px;
    gap: 16px;
    justify-content: flex-start;
    text-align: left;
  }

  .pp-htp-method-divider {
    display: none;
  }

  .pp-htp-steps-area {
    padding: 24px 20px;
  }

  .pp-htp-steps-track {
    flex-wrap: wrap;
    gap: 24px 12px;
  }

  .pp-htp-step {
    flex: 0 0 calc(50% - 6px);
  }

  .pp-htp-connector {
    display: none;
  }
}

@media (max-width: 575px) {
  .pp-htp-step {
    flex: 0 0 100%;
  }

  .pp-htp-heading {
    font-size: 32px;
  }
}
