/* ----------------------------------------------------
   WRAPPER
---------------------------------------------------- */
.lfhl-send-prayer-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: #FFFBEA;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lfhl-intro {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.lfhl-intro p {
  margin: 0;
  color: #606C5D;
  font-size: 14px;
}

/* ----------------------------------------------------
   STEP INDICATOR
---------------------------------------------------- */
.lfhl-steps-indicator {
  display: flex;
  gap: 6px;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lfhl-step {
  flex: 1;
  min-width: 115px;
  text-align: center;
  padding: 8px 6px;
  font-size: 13px;
  border-bottom: 2px solid #d0d0d0;
  color: #939598;
  transition: all 0.2s ease;
}

.lfhl-step.active {
  border-color: #EEBF1C;
  color: #606C5D;
  font-weight: 600;
}

/* ----------------------------------------------------
   PRICE BAR (visible on all steps)
---------------------------------------------------- */
.lfhl-price-bar {
  background: #FFF4CC;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(238,191,28,0.35);
}

.lfhl-price-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 4px;
  color: #606C5D;
}

.lfhl-price-row strong {
  font-weight: 700;
}

.lfhl-price-row-total {
  margin-top: 4px;
  border-top: 1px dashed rgba(0,0,0,0.08);
  padding-top: 6px;
  font-size: 14px;
}

/* ----------------------------------------------------
   STEPS PANELS
---------------------------------------------------- */
.lfhl-step-panel { display: none; }
.lfhl-step-panel.active { display: block; }

.lfhl-step-panel h2 {
  margin-top: 0;
  color: #606C5D;
  font-size: 26px;
}

.lfhl-step-panel p {
  color: #939598;
  margin-bottom: 20px;
}

.lfhl-subtitle {
  margin-top: 18px;
  font-size: 18px;
  color: #606C5D;
}
.lfhl-subtext {
  margin-top: 4px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #939598;
}

/* ----------------------------------------------------
   MEDIA CARDS (CHURCH)
---------------------------------------------------- */
.lfhl-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.lfhl-media-card {
  display: block;
  cursor: pointer;
}

.lfhl-media-card input[type="radio"] {
  display: none;
}

.lfhl-media-inner {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #E0E0E0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  transition: all 0.25s ease;
}

.lfhl-media-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 160px;
}

.lfhl-media-body {
  padding: 14px 14px 12px;
}

.lfhl-media-title {
  font-size: 16px;
  font-weight: 800;
  color: #606C5D;
}

.lfhl-media-short {
  margin-top: 6px;
  font-size: 13px;
  color: #777;
}

.lfhl-media-card:hover .lfhl-media-inner {
  border-color: #EEBF1C;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.lfhl-media-card input[type="radio"]:checked + .lfhl-media-inner {
  border: 2px solid #EEBF1C;
  background: #FFF9E6;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* More details */
.lfhl-more-toggle {
  margin-top: 10px;
  background: none;
  border: none;
  color: #606C5D;
  text-decoration: underline;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
}
.lfhl-more-toggle:hover { color: #EEBF1C; }

.lfhl-more-details {
  margin-top: 10px;
  color: #606C5D;
  font-size: 13px;
  background: #FFF4CC;
  border: 1px solid rgba(238,191,28,0.35);
  border-radius: 10px;
  padding: 10px 12px;
}

/* ----------------------------------------------------
   SERVICES GRID
---------------------------------------------------- */
.lfhl-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.lfhl-service-card { display:block; cursor:pointer; }
.lfhl-service-card input[type="radio"]{ display:none; }

.lfhl-service-inner {
  background:#fff;
  border-radius:14px;
  border:1px solid #E0E0E0;
  padding:14px 14px 12px;
  transition:all 0.25s ease;
}

.lfhl-service-card:hover .lfhl-service-inner{
  border-color:#EEBF1C;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.lfhl-service-card input[type="radio"]:checked + .lfhl-service-inner{
  border:2px solid #EEBF1C;
  background:#FFF9E6;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.lfhl-service-header{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.lfhl-service-title{
  font-size: 15px;
  font-weight: 800;
  color:#606C5D;
}

.lfhl-service-price{
  font-size: 14px;
  font-weight: 800;
  color:#606C5D;
  background:#FFF4CC;
  border:1px solid rgba(238,191,28,0.45);
  padding: 4px 8px;
  border-radius: 999px;
}

.lfhl-service-short{
  margin-top: 8px;
  font-size: 13px;
  color:#777;
}

/* ----------------------------------------------------
   ADD-ONS
---------------------------------------------------- */
.lfhl-addons-wrapper {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 14px;
}

.lfhl-addon-list {
  margin-top: 10px;
  display: grid;
  gap: 12px;
}

.lfhl-addon-row {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 12px;
  background: #FFFDF4;
}

.lfhl-addon-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  color: #606C5D;
  font-size: 14px;
  margin: 0;
}

.lfhl-addon-check input[type="checkbox"]{
  width: 18px;
  height: 18px;
  accent-color: #EEBF1C;
  margin-top: 2px;
}

.lfhl-addon-check small{
  display:block;
  color:#939598;
  font-size: 12px;
  margin-top: 4px;
}

.lfhl-addon-sub {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 10px;
}

.lfhl-inline-label{
  font-size: 13px;
  color: #606C5D;
  font-weight: 600;
}

.lfhl-addon-sub input,
.lfhl-addon-sub select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

.lfhl-addon-note{
  margin-top: 10px;
  background: #fff5f5;
  border: 1px solid rgba(217,83,79,0.35);
  color: #a94442;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
}

/* Included gift choice row */
.lfhl-addon-title {
  font-weight: 800;
  color: #606C5D;
  font-size: 14px;
  margin-bottom: 6px;
}

/* ----------------------------------------------------
   FORM FIELDS
---------------------------------------------------- */
.lfhl-step-panel label {
  display: block;
  margin-bottom: 16px;
  color: #606C5D;
  font-size: 14px;
  font-weight: 500;
}

.lfhl-step-panel input,
.lfhl-step-panel textarea,
.lfhl-step-panel select {
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  margin-top: 6px;
  box-sizing: border-box;
}

.lfhl-step-panel small {
  color: #939598;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.lfhl-required {
  color: #d9534f;
  font-weight: bold;
}

/* ----------------------------------------------------
   GIFT TOGGLE
---------------------------------------------------- */
.lfhl-gift-toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #606C5D;
  cursor: pointer;
  padding: 6px 0;
}

.lfhl-gift-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #EEBF1C;
  cursor: pointer;
}

/* ----------------------------------------------------
   NAVIGATION BUTTONS
---------------------------------------------------- */
.lfhl-nav {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.lfhl-btn {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 700;
  background: #EEBF1C;
  color: #fff;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.lfhl-btn:hover {
  background: #606C5D;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.lfhl-btn.lfhl-prev {
  background: #939598;
}

.lfhl-btn.lfhl-prev:hover {
  background: #606C5D;
}

/* ----------------------------------------------------
   REVIEW SECTION
---------------------------------------------------- */
.lfhl-review-summary {
  margin-top: 24px;
}

.lfhl-review-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 22px;
  margin-top: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid #EFEFEF;
}

.lfhl-review-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 800;
  color: #606C5D;
}

.lfhl-review-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lfhl-review-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F1F1F1;
  font-size: 15px;
}

.lfhl-review-list li:last-child {
  border-bottom: none;
}

.lfhl-review-list strong {
  color: #606C5D;
  font-weight: 700;
}

.lfhl-review-list li.lfhl-donation {
  background: #FFF6D8;
  border-radius: 8px;
  padding: 12px;
  margin-top: 10px;
  font-weight: 800;
}

.lfhl-edit-step {
  margin-top: 10px;
  background: none;
  border: none;
  color: #606C5D;
  text-decoration: underline;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
}

.lfhl-edit-step:hover {
  color: #EEBF1C;
}

/* ----------------------------------------------------
   MESSAGES + ERRORS
---------------------------------------------------- */
.lfhl-messages {
  margin-top: 16px;
  font-size: 15px;
  color: #606C5D;
}

.lfhl-field-error {
  border: 2px solid #d9534f !important;
  background: #fff5f5 !important;
}

.lfhl-error-text {
  color: #d9534f;
  font-size: 13px;
  margin-top: 4px;
}

/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */
@media (max-width: 700px) {
  .lfhl-media-inner {
    grid-template-columns: 1fr;
  }
  .lfhl-media-img img {
    min-height: 180px;
  }
}

@media (max-width: 600px) {
  .lfhl-send-prayer-wrapper { padding: 20px 16px; }
  .lfhl-nav { flex-direction: column; }
  .lfhl-btn { width: 100%; text-align: center; }
}
/* === Service Card Enhancements: image + badge + compare price === */

.lfhl-service-img {
  position: relative;
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
}

.lfhl-service-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.lfhl-service-img-empty {
  height: 96px;
  background: rgba(0,0,0,0.03);
  border-radius: 14px;
}

.lfhl-badge-popular {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0,0,0,0.75);
  color: #fff;
  z-index: 2;
}

.lfhl-price-compare {
  text-decoration: line-through;
  opacity: 0.65;
  margin-right: 8px;
  font-weight: 500;
}

.lfhl-price-current {
  font-weight: 700;
}