/* =========================================================
   CAREGIVER LANTERN ORDER PAGE
   HERO - CURRENT COMPLETE VERSION
   ========================================================= */


.cl-order-hero {
  width: 100%;
  background: #F3E8D6;
  overflow: hidden;
  border-bottom: 1px solid rgba(111, 86, 31, 0.22);
}


.cl-order-hero__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;


  display: grid;
  grid-template-columns: 0.72fr 1.55fr 1.08fr;
  align-items: center;
  gap: 34px;


  min-height: 265px;
  padding: 24px 0 22px;
}




/* =========================
   LEFT BRAND GRAPHIC
   ========================= */


.cl-order-hero__brand {
  display: flex;
  justify-content: center;
  align-items: center;
}


.cl-order-hero__brand-image {
  display: block;
  width: 100%;
  max-width: 145px;
  height: auto;
  object-fit: contain;


  border: 0;
  box-shadow: none;
}




/* =========================
   CENTER CONTENT
   ========================= */


.cl-order-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;


  display: flex;
  flex-direction: column;
  align-items: center;
}


.cl-order-hero__eyebrow {
  margin: 0 0 5px !important;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.16em;


  color: #8F6F2A;
}


.cl-order-hero__title {
  margin: 0 0 12px !important;
  padding: 0 !important;


  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0.015em;


  color: #2F4F4F;
}


.cl-order-hero__instructions {
  margin: 0 !important;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 17px;
  line-height: 1.35;


  color: #2F2A24;
}


.cl-order-hero__instructions p {
  margin: 0 !important;
}


.cl-order-hero__instructions p + p {
  margin-top: 2px !important;
}


/* =========================
   RIGHT LANTERN ART
   ========================= */


.cl-order-hero__lantern-wrap {
  position: relative;


  display: flex;
  justify-content: center;
  align-items: center;


  min-height: 215px;


  background: transparent;
  border: 0;
  box-shadow: none;
}


.cl-order-hero__lantern-image {
  display: block;


  width: 100%;
  max-width: 320px;
  height: auto;


  object-fit: contain;


  border: 0;
  box-shadow: none;


  /*
   * Feather the ORIGINAL lantern artwork into
   * the #F3E8D6 Hero instead of showing its
   * rectangular image edges.
   */
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, 0.9) 72%,
    rgba(0, 0, 0, 0.45) 84%,
    transparent 100%
  );


  mask-image: radial-gradient(
    ellipse at center,
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, 0.9) 72%,
    rgba(0, 0, 0, 0.45) 84%,
    transparent 100%
  );


  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;


  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;


  -webkit-mask-position: center;
  mask-position: center;
}




/* =========================
   HANDWRITTEN NOTE
   ========================= */


.cl-order-hero__handwritten {
  position: absolute;


  top: 20%;
  right: 7%;


  margin: 0 !important;


  transform: rotate(-8deg);


  font-family: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 0.94;
  font-weight: 500;


  color: #2F4F4F;


  text-align: left;
  white-space: nowrap;


  z-index: 3;


  text-shadow:
    0 0 3px rgba(243, 232, 214, 1),
    0 0 6px rgba(243, 232, 214, 0.95),
    0 0 10px rgba(243, 232, 214, 0.8),
    0 0 14px rgba(243, 232, 214, 0.55);
}


/* =========================================================
   MEDIUM DESKTOP / TABLET
   ========================================================= */


@media (max-width: 1020px) {


  .cl-order-hero__inner {
    width: min(940px, calc(100% - 40px));


    grid-template-columns: 0.62fr 1.45fr 0.95fr;
    gap: 22px;


    min-height: 245px;
    padding: 22px 0;
  }


  .cl-order-hero__brand-image {
    max-width: 130px;
  }


  .cl-order-hero__lantern-image {
    max-width: 285px;
  }


  .cl-order-hero__instructions {
    font-size: 16px;
  }


  .cl-order-hero__handwritten {
  right: 1%;
  font-size: 14px;
}


}




/* =========================================================
   TABLET
   ========================================================= */


@media (max-width: 780px) {


  .cl-order-hero__inner {
    width: min(680px, calc(100% - 34px));


    grid-template-columns: 0.65fr 1.4fr;


    grid-template-areas:
      "brand content"
      "lantern lantern";


    gap: 18px 26px;


    padding: 24px 0 19px;
  }


  .cl-order-hero__brand {
    grid-area: brand;
    justify-content: center;
  }


  .cl-order-hero__brand-image {
    max-width: 125px;
  }


  .cl-order-hero__content {
    grid-area: content;
  }


  .cl-order-hero__lantern-wrap {
    grid-area: lantern;


    min-height: 170px;
    margin-top: -4px;
  }


  .cl-order-hero__lantern-image {
    max-width: 285px;
  }


  .cl-order-hero__handwritten {
    top: 16%;
    right: calc(50% - 162px);


    font-size: 16px;
  }


}




/* =========================================================
   MOBILE
   ========================================================= */


@media (max-width: 560px) {


  .cl-order-hero__inner {
    width: min(440px, calc(100% - 28px));


    display: flex;
    flex-direction: column;


    gap: 12px;


    min-height: 0;
    padding: 20px 0 17px;
  }


  .cl-order-hero__brand {
    order: 1;
  }


  .cl-order-hero__brand-image {
    max-width: 120px;
  }


  .cl-order-hero__content {
    order: 2;
    width: 100%;
  }


  .cl-order-hero__eyebrow {
    margin-bottom: 7px;


    font-size: 11px;
    letter-spacing: 0.13em;
  }


  .cl-order-hero__title {
    font-size: clamp(31px, 9vw, 39px);
    line-height: 1.02;
  }


  .cl-order-hero__instructions {
    max-width: 390px;
    margin: 11px auto 0;


    font-size: 16px;
    line-height: 1.3;
  }


  .cl-order-hero__lantern-wrap {
    order: 3;


    width: 100%;
    min-height: 0;


    margin-top: 2px;
  }


  .cl-order-hero__lantern-image {
    max-width: 270px;
  }


  .cl-order-hero__handwritten {
    top: 18%;
    right: calc(50% - 150px);


    font-size: 14px;
    line-height: 0.94;


    transform: rotate(-7deg);
  }


}




/* =========================================================
   SMALL PHONE
   ========================================================= */


@media (max-width: 390px) {


  .cl-order-hero__brand-image {
    max-width: 110px;
  }


  .cl-order-hero__lantern-image {
    max-width: 245px;
  }


  .cl-order-hero__handwritten {
    right: calc(50% - 136px);
    font-size: 13px;
  }


}


/* =========================================================
   CAREGIVER LANTERN ORDER PAGE
   PROCESS BANNER
   ========================================================= */


.cl-order-process {
  width: 100%;
  background: #F3E8D6;


  border-top: 1px solid rgba(111, 86, 31, 0.18);
  border-bottom: 1px solid rgba(111, 86, 31, 0.22);
}


.cl-order-process__inner {
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;


  display: grid;
  grid-template-columns:
    auto
    minmax(70px, 1fr)
    auto
    minmax(70px, 1fr)
    auto;


  align-items: center;
  gap: 22px;


  padding: 17px 0;
}




/* =========================
   INDIVIDUAL STEP
   ========================= */


.cl-order-process__step {
  display: flex;
  align-items: center;
  gap: 12px;


  white-space: nowrap;
}




/* =========================
   NUMBER CIRCLES
   ========================= */


.cl-order-process__number {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;


  display: flex;
  align-items: center;
  justify-content: center;


  border: 1.5px solid #6F665B;
  border-radius: 50%;


  background: transparent;


  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1;
  font-weight: 500;


  color: #2F2A24;
}




/* STEP 1 ACTIVE */


.cl-order-process__step--active .cl-order-process__number {
  background: #365A33;
  border-color: #365A33;
  color: #FFFDF8;
}




/* =========================
   STEP TEXT
   ========================= */


.cl-order-process__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.cl-order-process__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.05;
  font-weight: 600;


  color: #2F2A24;
}


.cl-order-process__subtitle {
  margin-top: 2px;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 14px;
  line-height: 1.1;


  color: #4A4239;
}




/* =========================
   FLORAL ARROWS
   ========================= */


.cl-order-process__arrow {
  display: flex;
  align-items: center;
  justify-content: center;


  min-width: 70px;
}


.cl-order-process__arrow img {
  display: block;


  width: 100%;
  max-width: 130px;
  height: auto;


  object-fit: contain;
}




/* =========================================================
   BASIC SMALLER-SCREEN FALLBACK
   We'll fine-tune tablet/mobile after publication.
   ========================================================= */


@media (max-width: 820px) {


  .cl-order-process__inner {
    width: min(700px, calc(100% - 32px));
    gap: 12px;
  }


  .cl-order-process__arrow {
    min-width: 35px;
  }


  .cl-order-process__arrow img {
    max-width: 75px;
  }


  .cl-order-process__number {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 22px;
  }


  .cl-order-process__title {
    font-size: 15px;
  }


  .cl-order-process__subtitle {
    font-size: 13px;
  }


}




/* =========================================================
   CAREGIVER LANTERN ORDER PAGE
   MAIN 65 / 35 ORDER AREA
   ========================================================= */


.cl-order-main {
  position: relative;
  width: 100%;
  background: #F3E8D6;
  padding: 28px 0 50px;
  overflow: hidden;
}


.cl-order-main__grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;


  display: grid;
  grid-template-columns: minmax(0, 65fr) minmax(300px, 35fr);
  gap: 26px;


  align-items: start;
}




/* =========================================================
   LEFT FORM PANEL
   ========================================================= */


.cl-order-form-panel {
  background: rgba(255, 253, 248, 0.36);


  border: 1px solid rgba(143, 111, 42, 0.42);
  border-radius: 14px;


  padding: 26px 28px 30px;
}




/* =========================================================
   FORM SECTION
   ========================================================= */


.cl-form-section {
  width: 100%;
}


.cl-form-heading {
  display: flex;
  align-items: center;
  gap: 9px;
}


.cl-form-heading__leaf {
  display: block;


  width: 25px;
  height: 25px;


  object-fit: contain;
}


.cl-form-heading h2 {
  margin: 0 !important;
  padding: 0 !important;


  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 500;


  color: #2F2A24;
}


.cl-form-heading__number {
  margin-right: 4px;
}


.cl-form-intro {
  margin: 7px 0 18px 35px !important;


  max-width: 540px;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 16px;
  line-height: 1.3;


  color: #2F2A24;
}




/* =========================================================
   PACKAGE CHOICE CARDS
   ========================================================= */


.cl-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}


.cl-package-card {
  position: relative;


  display: block;


  min-height: 260px;


  padding: 17px 17px 16px;


  background: rgba(255, 253, 248, 0.5);


  border: 1px solid rgba(111, 86, 31, 0.38);
  border-radius: 8px;


  cursor: pointer;


  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}


.cl-package-card:hover {
  border-color: rgba(47, 79, 79, 0.7);
}


.cl-package-card.is-selected {
  border-color: #365A33;


  box-shadow:
    inset 0 0 0 1px rgba(54, 90, 51, 0.18);


  background: rgba(255, 253, 248, 0.72);
}




/* Hide native radio visually */


.cl-package-radio {
  position: absolute;


  width: 1px;
  height: 1px;


  opacity: 0;
  pointer-events: none;
}




/* CARD TOP */


.cl-package-card__top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}




/* CUSTOM RADIO */


.cl-package-card__radio-visual {
  position: relative;


  display: block;


  width: 20px;
  height: 20px;
  flex: 0 0 20px;


  margin-top: 1px;


  border: 1.5px solid #4F5146;
  border-radius: 50%;


  background: #FFFDF8;
}


.cl-package-card.is-selected
.cl-package-card__radio-visual::after {
  content: "";


  position: absolute;


  width: 10px;
  height: 10px;


  top: 50%;
  left: 50%;


  transform: translate(-50%, -50%);


  border-radius: 50%;


  background: #365A33;
}




/* PACKAGE TEXT */


.cl-package-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.05;
  font-weight: 600;


  color: #2F2A24;
}


.cl-package-card__description {
  margin-top: 5px;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 14px;
  line-height: 1.18;


  color: #403A33;
}




/* PACKAGE IMAGE AREA */


.cl-package-card__image-placeholder {
  height: 155px;


  margin-top: 15px;


  display: flex;
  align-items: center;
  justify-content: center;


  border: 1px dashed rgba(143, 111, 42, 0.35);
  border-radius: 5px;


  background: rgba(243, 232, 214, 0.38);


  font-family: "Crimson Text", Georgia, serif;
  font-size: 14px;
  font-style: italic;


  color: rgba(47, 42, 36, 0.55);


  overflow: hidden;
}


.cl-package-card__image {
  display: block;


  width: 100%;
  height: 100%;


  object-fit: contain;
  object-position: center;
}




/* =========================================================
   FORM SECTIONS 2 & 3
   ========================================================= */


.cl-form-section--buyer,
.cl-form-section--caregiver {
  margin-top: 28px;
}




/* =========================================================
   FIELD GRID
   ========================================================= */


.cl-form-fields {
  margin-top: 15px;
}


.cl-form-fields--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 20px;
}




/* =========================================================
   INDIVIDUAL FIELD
   ========================================================= */


.cl-field {
  min-width: 0;
}


.cl-field label {
  display: block;


  margin: 0 0 5px;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;


  color: #2F2A24;
}


.cl-field input {
  display: block;


  width: 100%;
  height: 39px;


  box-sizing: border-box;


  padding: 7px 11px;


  border: 1px solid rgba(143, 111, 42, 0.38);
  border-radius: 6px;


  background: rgba(255, 253, 248, 0.62);


  font-family: "Crimson Text", Georgia, serif;
  font-size: 14px;
  line-height: 1.2;


  color: #2F2A24;


  outline: none;


  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}


.cl-field input::placeholder {
  color: rgba(47, 42, 36, 0.48);
}


.cl-field input:focus {
  border-color: #2F4F4F;


  background: rgba(255, 253, 248, 0.88);


  box-shadow:
    0 0 0 2px rgba(47, 79, 79, 0.09);
}




/* =========================================================
   EMAIL MISMATCH ERROR
   ========================================================= */


.cl-field input.is-error {
  border-color: #9B4A3C;
}


.cl-field-error {
  min-height: 15px;


  margin-top: 3px;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 12px;
  line-height: 1.15;
  font-style: italic;


  color: #8A4035;
}




/* =========================================================
   CAREGIVER PRIVACY NOTE
   ========================================================= */


.cl-caregiver-privacy-note {
  display: grid;
  grid-template-columns: 25px 1fr;


  align-items: start;
  gap: 9px;


  margin: 15px 0 10px;
  padding: 0 5px;
}


.cl-caregiver-privacy-note img {
  display: block;


  width: 22px;
  height: 22px;


  margin-top: 1px;


  object-fit: contain;
}


.cl-caregiver-privacy-note p {
  margin: 0 !important;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 14px;
  line-height: 1.28;


  color: #423B34;
}




/* =========================================================
   CONSENT CHECKBOX
   ========================================================= */


.cl-consent-row {
  position: relative;


  display: grid;
  grid-template-columns: 20px 1fr;


  align-items: start;
  gap: 9px;


  margin-top: 7px;


  cursor: pointer;
}


.cl-consent-row input {
  position: absolute;


  width: 1px;
  height: 1px;


  opacity: 0;
}


.cl-consent-row__box {
  position: relative;


  display: block;


  width: 17px;
  height: 17px;


  box-sizing: border-box;


  margin-top: 1px;


  border: 1.4px solid rgba(143, 111, 42, 0.72);
  border-radius: 2px;


  background: rgba(255, 253, 248, 0.72);
}


.cl-consent-row input:checked
+ .cl-consent-row__box {
  background: #365A33;
  border-color: #365A33;
}


.cl-consent-row input:checked
+ .cl-consent-row__box::after {
  content: "✓";


  position: absolute;


  top: 50%;
  left: 50%;


  transform: translate(-50%, -53%);


  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;


  color: #FFFDF8;
}


.cl-consent-row input:focus-visible
+ .cl-consent-row__box {
  outline: 2px solid rgba(47, 79, 79, 0.35);
  outline-offset: 2px;
}


.cl-consent-row__text {
  font-family: "Crimson Text", Georgia, serif;
  font-size: 14px;
  line-height: 1.25;


  color: #2F2A24;
}




/* =========================================================
   RIGHT PURCHASE SUMMARY
   ========================================================= */


.cl-order-summary {
  position: relative;


  background: rgba(255, 253, 248, 0.38);


  border: 1px solid rgba(143, 111, 42, 0.52);
  border-radius: 16px;


  overflow: hidden;
}


.cl-order-summary__inner {
  padding: 28px 25px 30px;
}




/* TITLE */


.cl-order-summary__title {
  margin: 0 !important;


  text-align: center;


  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 500;


  color: #2F4F4F;
}




/* HEART DIVIDER */


.cl-order-summary__divider {
  display: block;


  width: 155px;
  max-width: 70%;


  height: auto;


  margin: 10px auto 19px;
}




/* =========================================================
   PRICE AREA
   ========================================================= */


.cl-order-summary__prices {
  font-family: "Crimson Text", Georgia, serif;
  color: #2F2A24;
}


.cl-summary-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;


  align-items: baseline;


  font-size: 16px;
  line-height: 1.2;
}


.cl-summary-row + .cl-summary-row {
  margin-top: 12px;
}


.cl-summary-row strong {
  font-weight: 600;
}




/* SELECTED FORMAT */


.cl-summary-format-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;


  align-items: baseline;


  margin-top: 11px;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 15px;
  line-height: 1.2;


  color: #595047;
}


.cl-summary-format-line strong {
  font-weight: 500;
  font-style: italic;
}




/* SALES TAX */


.cl-summary-row--tax {
  margin-top: 12px;
}


.cl-summary-row--tax span {
  display: flex;
  flex-direction: column;
}


.cl-summary-row--tax small {
  margin-top: 2px;


  font-size: 12px;
  line-height: 1.1;
  font-style: italic;


  color: #665D53;
}




/* RULE */


.cl-summary-rule {
  height: 1px;


  margin: 17px 0;


  background: rgba(111, 86, 31, 0.35);
}




/* TOTAL */


.cl-summary-row--total {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
}


.cl-summary-row--total strong {
  color: #2F4F4F;
}




/* =========================================================
   PURCHASE IMPACT
   ========================================================= */


.cl-summary-impact {
  margin-top: 24px;
}


.cl-summary-impact__item {
  display: grid;
  grid-template-columns: 24px 1fr;


  align-items: start;
  gap: 10px;


  margin-bottom: 14px;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 16px;
  line-height: 1.25;


  color: #2F2A24;
}


.cl-summary-impact__item img {
  display: block;


  width: 21px;
  height: 21px;


  object-fit: contain;


  margin-top: 1px;
}


.cl-summary-rule--dotted {
  height: 0;


  border-top:
    1px dotted rgba(111, 86, 31, 0.55);


  background: none;


  margin: 20px 0;
}




/* =========================================================
   DONATION ROUNDING NOTE
   ========================================================= */


.cl-summary-rounding {
  display: grid;
  grid-template-columns: 62px 1fr;


  align-items: center;
  gap: 15px;
}


.cl-summary-rounding img {
  display: block;


  width: 58px;
  height: 58px;


  object-fit: contain;
}


.cl-summary-rounding p {
  margin: 0 !important;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 15px;
  line-height: 1.3;


  color: #2F2A24;
}




/* =========================================================
   NON-DEDUCTIBLE NOTICE
   ========================================================= */


.cl-summary-tax-box {
  margin-top: 23px;


  padding: 14px 16px;


  border:
    1px solid rgba(143, 111, 42, 0.42);


  border-radius: 8px;


  background: rgba(243, 232, 214, 0.36);


  text-align: center;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 15px;
  line-height: 1.25;


  color: #2F2A24;
}




/* =========================================================
   "ONE LANTERN" MESSAGE GRAPHIC
   ========================================================= */


.cl-summary-message-graphic {
  display: block;


  width: 88%;
  max-width: 290px;
  height: auto;


  margin: 28px auto 26px;
}




/* =========================================================
   PRIVACY BLOCK
   ========================================================= */


.cl-summary-privacy {
  display: grid;
  grid-template-columns: 50px 1fr;


  align-items: start;
  gap: 13px;


  margin-top: 4px;
}


.cl-summary-privacy img {
  display: block;


  width: 45px;
  height: 45px;


  object-fit: contain;
}


.cl-summary-privacy h3 {
  margin: 0 0 5px !important;


  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 600;


  color: #2F4F4F;
}


.cl-summary-privacy p {
  margin: 0 !important;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 14px;
  line-height: 1.32;


  color: #2F2A24;
}




/* =========================================================
   BASIC RESPONSIVE FALLBACK
   We'll tune live tablet/mobile after publication.
   ========================================================= */


@media (max-width: 850px) {


  .cl-order-main__grid {
    grid-template-columns: 1fr;
  }


  .cl-order-summary {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }


}




@media (max-width: 560px) {


  .cl-order-main {
    padding-top: 20px;
  }


  .cl-order-main__grid {
    width: min(440px, calc(100% - 28px));
  }


  .cl-order-form-panel {
    padding: 22px 18px 25px;
  }


  .cl-package-grid,
  .cl-form-fields--two {
    grid-template-columns: 1fr;
  }


}


/* =========================================================
   SECTION 4: PERSONAL GIFT MESSAGE
   ========================================================= */


.cl-form-section--gift-message {
  margin-top: 30px;
}




/* OPTIONAL LABEL */


.cl-form-heading__optional {
  margin-left: 4px;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;


  color: #665D53;
}




/* INTRO COPY */


.cl-gift-message__intro {
  margin: 8px 0 10px 35px !important;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 14px;
  line-height: 1.3;


  color: #2F2A24;
}




/* TEXTAREA WRAPPER */


.cl-textarea-wrap {
  position: relative;


  margin-left: 35px;
}




/* MESSAGE BOX */


.cl-textarea-wrap textarea {
  display: block;


  width: 100%;
  min-height: 115px;


  box-sizing: border-box;


  padding: 11px 12px 28px;


  resize: vertical;


  border: 1px solid rgba(143, 111, 42, 0.38);
  border-radius: 6px;


  background: rgba(255, 253, 248, 0.62);


  font-family: "Crimson Text", Georgia, serif;
  font-size: 14px;
  line-height: 1.35;


  color: #2F2A24;


  outline: none;


  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}


.cl-textarea-wrap textarea::placeholder {
  color: rgba(47, 42, 36, 0.48);
}


.cl-textarea-wrap textarea:focus {
  border-color: #2F4F4F;


  background: rgba(255, 253, 248, 0.88);


  box-shadow:
    0 0 0 2px rgba(47, 79, 79, 0.09);
}




/* CHARACTER COUNTER */


.cl-character-count {
  margin-top: 4px;


  text-align: right;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 12px;
  line-height: 1.1;


  color: #665D53;
}




/* SCREEN-READER LABEL */


.cl-visually-hidden {
  position: absolute !important;


  width: 1px !important;
  height: 1px !important;


  padding: 0 !important;
  margin: -1px !important;


  overflow: hidden !important;


  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;


  border: 0 !important;
}




/* BASIC MOBILE FALLBACK */


@media (max-width: 560px) {


  .cl-gift-message__intro,
  .cl-textarea-wrap {
    margin-left: 0;
  }


}


/* =========================================================
   SECTION 5: PUBLIC LANTERN DEDICATION
   ========================================================= */


.cl-form-section--dedication {
  margin-top: 30px;
}




/* INTRO */


.cl-dedication__intro {
  margin: 8px 0 13px 35px !important;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 14px;
  line-height: 1.3;


  color: #2F2A24;
}




/* =========================================================
   DEDICATION OPTIONS
   ========================================================= */


.cl-dedication-options {
  margin-left: 35px;
}


.cl-dedication-option {
  position: relative;


  display: grid;
  grid-template-columns: 20px 1fr;


  align-items: start;
  gap: 10px;


  margin-top: 13px;


  cursor: pointer;
}


.cl-dedication-option:first-child {
  margin-top: 0;
}




/* HIDE NATIVE RADIO */


.cl-dedication-option input[type="radio"] {
  position: absolute;


  width: 1px;
  height: 1px;


  opacity: 0;
}




/* CUSTOM RADIO */


.cl-dedication-radio {
  position: relative;


  display: block;


  width: 18px;
  height: 18px;


  box-sizing: border-box;


  margin-top: 1px;


  border: 1.4px solid #626057;
  border-radius: 50%;


  background: rgba(255, 253, 248, 0.72);
}


.cl-dedication-option
input[type="radio"]:checked
+ .cl-dedication-radio::after {
  content: "";


  position: absolute;


  width: 9px;
  height: 9px;


  top: 50%;
  left: 50%;


  transform: translate(-50%, -50%);


  border-radius: 50%;


  background: #365A33;
}


.cl-dedication-option
input[type="radio"]:focus-visible
+ .cl-dedication-radio {
  outline: 2px solid rgba(47, 79, 79, 0.35);
  outline-offset: 2px;
}




/* OPTION COPY */


.cl-dedication-option__text {
  display: flex;
  flex-direction: column;


  font-family: "Crimson Text", Georgia, serif;


  color: #2F2A24;
}


.cl-dedication-option__text strong {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
}


.cl-dedication-option__text small {
  margin-top: 2px;


  font-size: 13px;
  line-height: 1.25;


  color: #514A42;
}




/* =========================================================
   PUBLIC DEDICATION FIELD
   ========================================================= */


.cl-dedication-public-fields {
  margin: 9px 0 5px 30px;
}


.cl-dedication-public-fields > input[type="text"] {
  display: block;


  width: 100%;
  height: 39px;


  box-sizing: border-box;


  padding: 7px 11px;


  border: 1px solid rgba(143, 111, 42, 0.38);
  border-radius: 6px;


  background: rgba(255, 253, 248, 0.62);


  font-family: "Crimson Text", Georgia, serif;
  font-size: 14px;
  line-height: 1.2;


  color: #2F2A24;


  outline: none;


  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}


.cl-dedication-public-fields
> input[type="text"]::placeholder {
  color: rgba(47, 42, 36, 0.48);
}


.cl-dedication-public-fields
> input[type="text"]:focus {
  border-color: #2F4F4F;


  background: rgba(255, 253, 248, 0.88);


  box-shadow:
    0 0 0 2px rgba(47, 79, 79, 0.09);
}




/* DEDICATION PERMISSION */


.cl-dedication-consent {
  margin-top: 11px;
}




/* =========================================================
   PRIVACY WARNING
   ========================================================= */


.cl-dedication-warning {
  display: grid;
  grid-template-columns: 28px 1fr;


  align-items: center;
  gap: 10px;


  margin: 18px 0 0 35px;
  padding: 10px 12px;


  border: 1px solid rgba(143, 111, 42, 0.38);
  border-radius: 7px;


  background: rgba(243, 232, 214, 0.55);
}


.cl-dedication-warning img {
  display: block;


  width: 25px;
  height: 25px;


  object-fit: contain;
}


.cl-dedication-warning p {
  margin: 0 !important;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 13px;
  line-height: 1.25;


  color: #403A33;
}




/* =========================================================
   HIDDEN DEDICATION STATE
   ========================================================= */


.cl-dedication-public-fields.is-hidden {
  display: none;
}




/* BASIC MOBILE FALLBACK */


@media (max-width: 560px) {


  .cl-dedication__intro,
  .cl-dedication-options,
  .cl-dedication-warning {
    margin-left: 0;
  }


  .cl-dedication-public-fields {
    margin-left: 28px;
  }


}


/* =========================================================
   SECTION 6: REVIEW & CONFIRM
   ========================================================= */


.cl-form-section--review {
  margin-top: 30px;
}




/* REVIEW CHECKBOX */


.cl-review-confirm {
  margin: 14px 0 0 35px;
}




/* REFUND POLICY */


.cl-refund-policy {
  width: calc(100% - 35px);


  box-sizing: border-box;


  margin: 16px 0 0 35px;
  padding: 10px 12px;


  border: 1px solid rgba(143, 111, 42, 0.24);
  border-radius: 7px;


  background: rgba(255, 253, 248, 0.46);


  font-family: "Crimson Text", Georgia, serif;
  font-size: 13px;
  line-height: 1.35;


  color: #514A42;
}


.cl-refund-policy p {
  margin: 0 !important;
}


.cl-refund-policy p + p {
  margin-top: 6px !important;
}


.cl-refund-policy__title {
  font-size: 14px;
  font-weight: 600;


  color: #403A33;
}


.cl-refund-policy a {
  color: #6F561F;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}


.cl-refund-policy a:hover,
.cl-refund-policy a:focus {
  color: #8F6F2A;
}



/* =========================================================
   SECURE PAYMENT BUTTON
   ========================================================= */


.cl-order-submit {
  display: block;


  width: calc(100% - 35px);


  box-sizing: border-box;


  margin: 20px 0 0 35px;
  padding: 13px 20px;


  border: 1px solid #294A2D;
  border-radius: 7px;


  background: linear-gradient(
    180deg,
    #45683E 0%,
    #31532F 100%
  );


  box-shadow:
    0 2px 5px rgba(47, 42, 36, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);


  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.015em;


  color: #FFFDF8;


  text-align: center;


  cursor: pointer;


  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.12s ease;
}


.cl-order-submit:hover {
  background: linear-gradient(
    180deg,
    #4D7045 0%,
    #365B34 100%
  );


  box-shadow:
    0 3px 7px rgba(47, 42, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}


.cl-order-submit:active {
  transform: translateY(1px);
}


.cl-order-submit:focus-visible {
  outline: 3px solid rgba(143, 111, 42, 0.38);
  outline-offset: 3px;
}




/* =========================================================
   PAYMENT REMINDER
   ========================================================= */


.cl-order-submit-note {
  margin: 9px 0 0 35px !important;


  width: calc(100% - 35px);


  text-align: center;


  font-family: "Crimson Text", Georgia, serif;
  font-size: 13px;
  line-height: 1.25;
  font-style: italic;


  color: #514A42;
}




/* BASIC MOBILE FALLBACK */


@media (max-width: 560px) {


  .cl-review-confirm,
  .cl-refund-policy,
  .cl-order-submit,
  .cl-order-submit-note {
    margin-left: 0;
    width: 100%;
  }


  .cl-order-submit {
    font-size: 16px;
    padding: 12px 14px;
  }


}


/* =========================================================
   BOTTOM-RIGHT LANTERN GROVE DECORATION
   ========================================================= */


.cl-order-corner-grove {
  position: absolute;


  right: -15px;
  bottom: -5px;


  width: min(620px, 47vw);
  height: auto;


  display: block;


  pointer-events: none;


  z-index: 1;
}




/* Keep form and summary above the decorative artwork */


.cl-order-main__grid {
  position: relative;
  z-index: 2;
}




/* =========================================================
   TABLET / MOBILE
   Final tuning after publication
   ========================================================= */


@media (max-width: 850px) {


  .cl-order-corner-grove {
    width: 400px;
    right: -45px;
    bottom: 0;
    opacity: 0.85;
  }


}


@media (max-width: 560px) {


  .cl-order-corner-grove {
    width: 300px;
    right: -60px;
    bottom: 0;
    opacity: 0.72;
  }


}


/* =========================================================
   REMOVE KADENCE PAGE CARD / WHITE WRAPPER
   ONLY ON THE CAREGIVER LANTERN ORDER PAGE
   ========================================================= */


body:has(.cl-order-hero) article.entry,
body:has(.cl-order-hero) .content-bg {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
}


body:has(.cl-order-hero) .entry-content-wrap {
  padding: 0 !important;
}


body:has(.cl-order-hero) .entry-content {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}






