@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;800&family=Noto+Serif+Hebrew:wght@400;500;700&display=swap");

:root {
  --cream: #faf9f6;
  --paper: #f4efe5;
  --paper-warm: #f6f1e7;
  --ink: #18241e;
  --ink-soft: #3a433e;
  --gold: #a67e4d;
  --gold-deep: #8e693c;
  --sage: #3f6053;
  --sage-deep: #293a31;
  --rose: #ab3e4b;
  --border: rgba(24, 36, 30, 0.12);
  --shadow: 0 24px 60px rgba(24, 36, 30, 0.08);
  --font-body: "Heebo", sans-serif;
  --font-display: "Levi DL v1 AAA", "Noto Serif Hebrew", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  direction: rtl;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  direction: inherit;
}

input,
textarea,
select {
  color: var(--ink);
}

button {
  cursor: pointer;
}

.page {
  overflow-x: hidden;
}

.section {
  width: min(100% - 40px, 1410px);
  margin: 0 auto;
  padding: 64px 0;
}

.section--tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-heading {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.1;
  text-align: center;
}

.section-subheading {
  margin: 0 auto;
  max-width: 740px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  text-align: center;
}

.highlight {
  color: var(--gold);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.pill,
.btn,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.pill:hover,
.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--sage-deep);
  box-shadow: 0 8px 24px rgba(17, 27, 22, 0.35);
}

.header-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

.pill--solid:hover,
.btn--gold:hover {
  background: var(--gold-deep);
}

.btn--gold:focus-visible {
  outline-color: var(--gold-deep);
}

.pill--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: #fff;
}

.pill--outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.pill--solid,
.btn--gold {
  background: var(--gold);
  color: #fff;
}

.pill--sage,
.btn--sage,
.header-cta {
  background: var(--sage);
  color: #fff;
}

.btn--sage:hover {
  background: var(--sage-deep);
}

.btn--sage:focus-visible {
  outline-color: var(--sage);
}

.btn--charcoal {
  background: #2d2d2d;
  color: #fff;
}

.btn--charcoal:hover {
  background: #1a1a1a;
}

.btn--charcoal:focus-visible {
  outline-color: #2d2d2d;
}

.btn--light {
  background: var(--paper);
  color: var(--ink);
}

.btn--light:hover {
  background: #e8e4df;
}

.btn--small,
.pill--small {
  padding: 12px 24px;
  font-size: 0.95rem;
}

.icon,
.icon-lg {
  flex: 0 0 auto;
}

.icon {
  width: 18px;
  height: 18px;
}

.icon-lg {
  width: 78px;
  height: 78px;
}

.hero {
  position: relative;
  width: min(100% - 38px, 1612px);
  margin: 0 auto;
  padding: 24px 34px 64px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background-image:
    linear-gradient(rgba(17, 27, 22, 0.56), rgba(17, 27, 22, 0.56)),
    url("../images/dark-texture.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  width: 104px;
  height: 105px;
  flex: 0 0 104px;
}

.site-brand img {
  width: 104px;
  height: 105px;
  object-fit: contain;
  display: block;
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-brand:hover img,
.site-brand:focus-visible img {
  opacity: 0.92;
}

.site-brand:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 6px;
  border-radius: 8px;
}

.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 62px);
  flex: 1 1 auto;
  min-width: 0;
  direction: rtl;
}

.desktop-nav > ul.menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 62px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav > ul.menu > li {
  position: relative;
  margin: 0;
}

.desktop-nav > ul.menu .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-end: 0;
  z-index: 20;
  min-width: 220px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: rgba(24, 36, 30, 0.96);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: none;
}

.desktop-nav > ul.menu li:hover > .sub-menu,
.desktop-nav > ul.menu li:focus-within > .sub-menu {
  display: block;
}

.desktop-nav > ul.menu .sub-menu a {
  display: block;
  padding: 8px 18px;
  font-size: 1rem;
}

.desktop-nav > ul.menu .sub-menu .sub-menu {
  top: 0;
  inset-inline-end: 100%;
  margin-inline-end: 4px;
}

.desktop-nav a {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  transition: color 160ms ease, opacity 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--gold);
}

.desktop-nav a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 4px;
  border-radius: 4px;
}

.desktop-nav .current-menu-item > a,
.desktop-nav .current-menu-ancestor > a {
  color: var(--gold);
  font-weight: 600;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  z-index: 7;
}

.mobile-nav summary {
  position: absolute;
  top: 0;
  left: 0;
  list-style: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.mobile-nav summary:hover,
.mobile-nav summary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  display: block;
  content: "";
}

.hamburger {
  position: relative;
}

.hamburger::before {
  position: absolute;
  top: -6px;
  right: 0;
}

.hamburger::after {
  position: absolute;
  top: 6px;
  right: 0;
}

.mobile-nav[open] .mobile-nav__panel {
  display: grid;
}

.mobile-nav__panel {
  display: none;
  position: relative;
  left: 0;
  right: auto;
  min-width: 220px;
  margin-top: 56px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(24, 36, 30, 0.96);
  box-shadow: var(--shadow);
  direction: rtl;
}

.mobile-nav__panel > ul.menu {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__panel .sub-menu {
  list-style: none;
  margin: 0;
  padding-inline-start: 1rem;
  display: grid;
  gap: 8px;
}

.mobile-nav__panel a {
  color: #fff;
  font-size: 1rem;
  transition: color 160ms ease;
}

.mobile-nav__panel a:hover,
.mobile-nav__panel a:focus-visible {
  color: var(--gold);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 100%;
  /* padding-top: 120px; */
  padding-top: 3vw;
  padding-bottom: 3vw;
  text-align: center;
}

.hero__title {
  margin: 0;
  font-family: "Levi DL v1 AAA", var(--font-display);
  font-size: clamp(2.3rem, 5.8vw, 4.2rem);
  line-height: 1.08;
  white-space: pre-line;
  color: var(--paper);
}

.hero__text {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero__finder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.tab-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.tab-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 30px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #fff;
  font-size: 1.05rem;
  font-family: inherit;
  cursor: pointer;
  background: transparent;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.tab-pill.is-active {
  background: var(--gold);
}

.tab-pill:not(.is-active):hover,
.tab-pill:not(.is-active):focus-visible {
  background: rgba(166, 126, 77, 0.22);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.tab-pill.is-active:hover,
.tab-pill.is-active:focus-visible {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.tab-pill:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.search-shell {
  width: min(100%, 780px);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.search-shell:hover {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.07);
}

.search-shell:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(166, 126, 77, 0.45);
}

.search-shell input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: right;
  outline: none;
}

.hero-search-autocomplete {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.hero-search-autocomplete input {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0;
}

.hero-search-ghost {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-align: right;
  line-height: 1.7;
}

.hero-search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 20;
  background: rgba(10, 20, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  max-height: 220px;
  overflow-y: auto;
  display: none;
}

.hero-search-suggestion {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: right;
  padding: 10px 12px;
  cursor: pointer;
}

.hero-search-suggestion.is-active,
.hero-search-suggestion:hover {
  background: rgba(166, 126, 77, 0.35);
}

.hero .search-shell .btn--gold {
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hero .search-shell .btn--gold:hover,
.hero .search-shell .btn--gold:focus-visible {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.hero .search-shell .btn--gold:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}

.search-shell input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.hero-verse-dropdowns {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  gap: 8px;
  align-items: center;
}

/* ---------- Choices.js â€“ verse dropdown overrides ---------- */
/* .hero prefix ensures these beat Choices.js default styles loaded later */

.hero .hero-verse-dropdowns .verse-choices {
  flex: 1 1 0;
  min-width: 0;
  overflow: visible;
  margin-bottom: 0;
}

.hero .hero-verse-dropdowns .verse-choices .choices__inner {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  overflow: visible;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.hero .hero-verse-dropdowns .verse-choices:hover .choices__inner {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.12);
}

.hero .hero-verse-dropdowns .verse-choices.is-focused .choices__inner,
.hero .hero-verse-dropdowns .verse-choices.is-open .choices__inner {
  border-color: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(166, 126, 77, 0.45);
}

.hero .hero-verse-dropdowns .verse-choices.is-disabled .choices__inner {
  opacity: 0.45;
  cursor: not-allowed;
}

.hero .hero-verse-dropdowns .verse-choices .choices__list--single {
  display: flex;
  align-items: center;
  padding: 0;
  width: 100%;
}

.hero .hero-verse-dropdowns .verse-choices .choices__list--single .choices__item {
  direction: rtl;
  text-align: right;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0;
}

.hero .hero-verse-dropdowns .verse-choices .choices__placeholder {
  opacity: 0.7;
}

/* Dropdown panel â€“ always below, never flipped upward */
.hero .hero-verse-dropdowns .verse-choices .choices__list--dropdown,
.hero .hero-verse-dropdowns .verse-choices.is-flipped .choices__list--dropdown {
  top: calc(100% + 4px);
  bottom: auto;
  margin-top: 0;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: #1a2b22;
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  word-break: normal;
}

.hero .hero-verse-dropdowns .verse-choices .choices__list--dropdown .choices__list {
  max-height: 220px;
  overflow-y: auto;
}

.hero .hero-verse-dropdowns .verse-choices .choices__list--dropdown .choices__item {
  color: #fff;
  padding: 9px 14px;
  font-size: 0.95rem;
  direction: rtl;
  text-align: right;
}

.hero .hero-verse-dropdowns .verse-choices .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background: rgba(166, 126, 77, 0.35);
  color: #fff;
}

.hero .hero-verse-dropdowns .verse-choices .choices__list--dropdown .choices__item--selectable:hover {
  background: rgba(166, 126, 77, 0.25);
}

.hero .hero-verse-dropdowns .verse-choices .choices__list--dropdown .choices__item--disabled {
  color: rgba(255, 255, 255, 0.4);
}

/* Custom arrow indicator â€“ override Choices.js default triangle */
.hero .hero-verse-dropdowns .verse-choices[data-type*="select-one"]::after {
  content: '';
  height: 8px;
  width: 12px;
  position: absolute;
  left: 12px;
  top: 50%;
  right: auto;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  border-style: none;
  margin: 0;
  pointer-events: none;
}

.hero .hero-verse-dropdowns .verse-choices[data-type*="select-one"].is-open::after {
  margin-top: 0;
}

.hero-search-hint {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.split-panel,
.choice-grid,
.reason-grid,
.checkout-layout {
  display: grid;
  gap: 28px;
}

.split-panel {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.media-card,
.content-card,
.stats-card,
.summary-card,
.form-panel,
.segula-card,
.result-card,
.selected-card__inner {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wpcf7 form .wpcf7-response-output{
  margin: 0!important;
}

.media-card {
  background: var(--paper);
  padding: 0;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.content-card {
  padding: 72px clamp(24px, 5vw, 96px);
  background:
    linear-gradient(rgba(244, 239, 229, 0.86), rgba(244, 239, 229, 0.86)),
    url("../images/parchment-bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}

.content-card__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.content-card__text,
.intro-copy {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--ink);
}

.intro-copy {
  max-width: 1084px;
  margin-inline: auto;
  display: grid;
  gap: 18px;
  text-align: center;
}

.intro-copy__divider {
  width: min(100%, 1084px);
  height: 1px;
  margin: 0 auto;
  background: rgba(24, 36, 30, 0.15);
}

.process-grid,
.card-grid,
.segulot-grid,
.faq-columns,
.contact-grid,
.field-row,
.stats-grid {
  display: grid;
  gap: 24px;
}

.process-grid,
.choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card {
  position: relative;
  background: var(--paper);
  border-radius: 18px;
  padding: 34px 28px 72px;
  text-align: center;
  box-shadow: var(--shadow);
}

.process-card__title {
  margin: 0 0 16px;
  font-size: 1.55rem;
  line-height: 1.3;
}

.process-card__text {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-soft);
}

.process-card__step {
  position: absolute;
  bottom: -22px;
  left: 50%;
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 8px;
  transform: translateX(-50%) rotate(45deg);
  display: grid;
  place-items: center;
}

.process-card__step span {
  display: block;
  transform: rotate(-45deg);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
}

.choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: clamp(16rem, 38vw, 26.25rem);
  padding: 40px;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.choice-card--gold {
  background: var(--gold);
  color: #fff;
}

.choice-card--dark {
  background: var(--ink);
  color: #fff;
}

.choice-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.08;
}

.choice-card__text {
  margin: 0;
  max-width: 560px;
  font-size: 1.2rem;
  line-height: 1.7;
}

.segula-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 60px;
  align-items: center;
  padding: 40px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(17, 27, 22, 0.5), rgba(17, 27, 22, 0.5)),
    url("../images/dark-texture.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.segula-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.segula-item {
  background: var(--paper);
  padding: 10px;
  border-radius: 15px;
  color: var(--ink);
  text-align: center;
}

.segula-item__thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 18 / 13;
  margin-bottom: 10px;
}

.segula-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.segula-item__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 36, 30, 0.32);
}

.segula-item__label {
  margin: 0;
  font-weight: 700;
}

.segula-showcase__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 26px;
  text-align: right;
}

.segula-showcase__content .section-heading,
.reason-copy .section-heading {
  text-align: right;
  margin-bottom: 0;
}

.segula-showcase__content p,
.reason-copy p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.reason-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.reason-copy {
  display: grid;
  gap: 24px;
  text-align: right;
}

.reason-image {
  background: var(--paper);
  padding: 20px;
}

.reason-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  aspect-ratio: 628 / 381;
  object-fit: cover;
}

.reason-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.reason-list li {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: clamp(1rem, 2vw, 1.32rem);
}

.reason-list img {
  width: 31px;
  height: 31px;
}

.stats-card {
  padding: 56px 32px 40px;
  background: var(--paper);
  text-align: center;
}

.progress-bar {
  position: relative;
  width: min(100%, 1060px);
  height: 6px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(166, 126, 77, 0.24);
}

.progress-bar__fill {
  width: 65%;
  height: 100%;
  background: var(--gold);
  border-radius: 999px;
}

.progress-bar__marker {
  position: absolute;
  top: 50%;
  left: 65%;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.stat {
  display: grid;
  gap: 12px;
}

.stat__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 1.08;
}

.stat__label {
  margin: 0;
  font-size: 1.2rem;
}

.faq-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-stack {
  display: grid;
  gap: 18px;
}

/* <details class="faq-item"> must stack summary + answer; row flex breaks open state */
.faq-item {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.faq-item p {
  margin: 0;
  font-size: 1.15rem;
  text-align: right;
}

.faq-item img {
  width: 12px;
  height: 12px;
}

.cta-band {
  display: grid;
  gap: 26px;
  place-items: center;
  text-align: center;
}

.cta-band .section-heading {
  margin-bottom: 0;
}

.site-footer {
  padding-bottom: 24px;
}

.footer-shell {
  position: relative;
  box-sizing: border-box;
  width: min(100% - 40px, 88.125rem);
  max-width: 1410px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.75rem);
  border-radius: 15px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.46)),
    url("../images/dark-texture.jpg");
  background-size: cover;
  background-position: center;
  color: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  justify-items: stretch;
  direction: ltr;
  overflow: hidden;
}

.footer-shell form {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: none;
  min-width: 0;
  height: auto;
  min-height: 0;
  background: rgba(250, 249, 246, 0.98);
  color: var(--ink);
  border-radius: 12px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  direction: rtl;
}

.footer-shell form .field p{
  margin: 0;
}

.footer-shell form .wpcf7-spinner{
  display: none;
}

.contact-grid {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.field legend {
  font-family: "Pion DL 1.1 AAA", var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: right;
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.72);
  background: transparent;
  outline: none;
  text-align: right;
  direction: rtl;
}

.input,
.select {
  min-height: 48px;
  border-radius: 999px;
}

.textarea {
  min-height: 110px;
  border-radius: 14px;
  resize: vertical;
}

.contact-form-actions {
  width: min(100%, 220px);
  margin-top: 0;
  margin-inline-start: auto;
}

.footer-shell .contact-grid {
  width: 100%;
}

.footer-shell .contact-form-actions {
  width: min(100%, 220px);
  margin-inline-start: auto;
}

.footer-shell .field--full {
  grid-column: 1 / -1;
}

.footer-shell .field label {
  display: grid;
  gap: 8px;
}

.footer-shell .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.btn--footer-submit {
  width: 100%;
  min-height: 51px;
  border-radius: 50px;
  padding: 10px 32px;
  font-family: "Pion DL 1.1 AAA", var(--font-body);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.18em;
}

.footer-info {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  justify-self: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 1.75rem);
  text-align: center;
  direction: ltr;
}

.footer-brand-mark {
  position: relative;
  inset: auto;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer .footer-info__divider {
  display: block;
  flex: 0 0 1px;
  width: 1px;
  min-width: 1px;
  height: 96px;
  min-height: 0;
  align-self: center;
  background: rgba(250, 249, 246, 0.22);
}

.footer-logo {
  width: auto;
  height: auto;
  max-width: 136px;
  max-height: 130px;
  object-fit: contain;
  display: block;
}

.footer-contact-list,
.summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .footer-contact-list {
  display: grid;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: 220px;
  gap: clamp(0.5rem, 1.5vw, 0.64rem);
  justify-items: end;
  align-content: center;
  direction: rtl;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-family: "Pion DL 1.1 AAA", var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 23.52px;
  color: var(--paper);
  text-decoration: underline;
}

.footer-contact-link img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

.footer-bottom {
  width: min(100% - 40px, 1410.92px);
  margin: 16px auto 0;
  padding-top: 4px;
  border-top: 1px solid rgba(24, 36, 30, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2.8vw, 32px);
  direction: rtl;
  flex-wrap: nowrap;
  min-width: 0;
}

.socials,
.footer-meta {
  display: flex;
  align-items: center;
}

.socials {
  gap: clamp(12px, 2vw, 18px);
  flex-shrink: 0;
  align-items: center;
}

/* Uniform square hit area; SVGs may differ â€” scale inside the box */
.socials a {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
}

.socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
}

.footer-meta {
  gap: clamp(0.5rem, 2.2vw, 3.375rem);
  color: var(--ink);
  font-family: "Pion DL 1.1 AAA", var(--font-body);
  font-weight: 400;
  font-size: clamp(0.6875rem, 0.62rem + 0.4vw, 1rem);
  line-height: 1.35;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: right;
  flex: 1 1 auto;
  min-width: 0;
}

.footer-meta > span {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
}

.card-grid,
.segulot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.segula-card,
.result-card,
.summary-card,
.form-panel,
.selected-card__inner {
  background:
    linear-gradient(rgba(244, 239, 229, 0.78), rgba(244, 239, 229, 0.78)),
    url("../images/parchment-bg.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}

.segula-card {
  min-height: clamp(17rem, 42vw, 24.6875rem);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.card-ornament {
  width: min(100%, 388px);
}

.segula-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.segula-card__verse-block {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
  width: 100%;
}

.segula-card__quote,
.segula-card__source,
.verse-ref {
  margin: 0;
  font-size: 1rem;
}

.segula-card__description {
  margin: 0;
  font-size: 1.15rem;
}

.result-card {
  position: relative;
  min-height: clamp(17rem, 42vw, 24.6875rem);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}


.status-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 15px;
  min-height: 30px;
  min-width: 114px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #3f6053;
  color: #f4efe5;
  font-family: "Almoni ML v5 AAA", var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.47;
}

.status-badge--taken {
  background: #8f4850;
  right: 22px;
}


.verse-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.5;
}

.verse-text .accent {
  color: var(--gold);
  font-weight: 700;
}

.verse-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.results-intro {
  display: grid;
  gap: 10px;
  text-align: center;
}

.checkout-layout {
  grid-template-columns: 450px minmax(0, 1fr);
  align-items: start;
}

.checkout-sidebar {
  display: grid;
  gap: 28px;
}

.selected-card {
  padding: 20px;
  background: var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.selected-card__inner {
  padding: 32px 24px;
  text-align: center;
}

.selected-card__swap {
  display: inline-block;
  margin-top: 14px;
  color: var(--cream);
  text-decoration: underline;
  text-align: center;
}

.summary-card {
  padding: 34px 32px;
  text-align: center;
}

.summary-card__box {
  margin-top: 22px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(250, 249, 246, 0.56);
  border: 1px solid rgba(24, 36, 30, 0.12);
}

.summary-card__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.08;
}

.summary-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  text-align: right;
}

.summary-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.summary-list img {
  width: 18px;
  height: 18px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.payment-icons img {
  width: auto;
  height: 24px;
}

.form-stack {
  display: grid;
  gap: 20px;
}

.form-panel {
  padding: 24px;
  text-align: right;
}

.form-panel__title {
  margin: 0 0 18px;
  font-size: 1.6rem;
  line-height: 1.2;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(24, 36, 30, 0.36);
  border-radius: 999px;
  margin-bottom: 18px;
}

.segmented span {
  padding: 10px 18px;
  text-align: center;
  font-size: 1.05rem;
}

.segmented .is-active {
  background: var(--gold);
  color: #fff;
}

.radio-row,
.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.control {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.control input {
  accent-color: var(--gold);
}

.note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.field-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .split-panel,
  .reason-grid,
  .segula-showcase,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    width: min(100% - 40px, 1410.92px);
    height: auto;
    flex-direction: column;
    display: flex;
    min-height: auto;
    gap: 24px;
    padding: 42px 40px;
  }

  .footer-shell form,
  .footer-info {
    position: static;
  }

  .footer-shell form {
    height: auto;
  }

  .footer-info {
    max-width: none;
    width: 100%;
    flex: 0 0 auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .footer-brand-mark,
  .footer-info__divider,
  .footer-contact-list {
    position: static;
  }

  .footer-contact-list {
    width: auto;
    height: auto;
    gap: 10px;
    align-content: center;
  }

  .segula-showcase__content {
    align-items: center;
    text-align: center;
  }

  .segula-showcase__content .section-heading,
  .reason-copy .section-heading {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .section {
    width: min(100% - 32px, 900px);
    padding: 50px 0;
  }

  .hero {
    width: min(100% - 24px, 100%);
    padding: 16px 18px 48px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    min-height: 70px;
    justify-content: center;
  }

  .mobile-nav {
    display: block;
  }

  .site-brand {
    width: 104px;
    height: 105px;
    flex: 0 0 104px;
  }

  .hero__content {
    padding-top: 70px;
    gap: 22px;
  }

  .process-grid,
  .choice-grid,
  .card-grid,
  .segulot-grid,
  .faq-columns,
  .contact-grid,
  .field-row,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .choice-card,
  .process-card,
  .segula-card,
  .result-card {
    min-height: auto;
  }

  .segula-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .footer-shell {
    gap: 18px;
    padding: 28px;
  }

  .footer-shell form {
    padding: 24px;
    max-width: none;
    width: 100%;
  }

  /* Footer bar: stay one row; shrink type + gaps (Figma 42:1007) */
  .footer-bottom {
    width: min(100% - 24px, 1410.92px);
    gap: clamp(8px, 2.2vw, 28px);
  }

  .footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
  }

  .site-footer .footer-info__divider {
    width: min(100%, 220px);
    height: 1px;
    min-height: 1px;
  }

  .footer-contact-list {
    justify-items: center;
  }

  .footer-contact-link {
    justify-content: center;
  }

  .footer-meta {
    gap: clamp(0.35rem, 1.6vw, 1.75rem);
    font-size: clamp(0.625rem, 0.55rem + 0.45vw, 0.9375rem);
    justify-content: flex-start;
    text-align: right;
  }

  .socials {
    gap: clamp(10px, 2.5vw, 20px);
  }
}

@media (max-width: 620px) {
  .section {
    padding: 42px 0;
  }

  .hero__title {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .hero__text {
    font-size: 1rem;
  }

  .search-shell,
  .pill-row,
  .tab-row,
  .hero__finder,
  .verse-actions {
    gap: 10px;
  }

  .search-shell {
    padding: 9px;
  }

  .search-shell input {
    font-size: 0.95rem;
  }

  .hero-verse-dropdowns {
    gap: 6px;
  }

  .hero .hero-verse-dropdowns .verse-choices .choices__inner {
    font-size: 0.85rem;
    min-height: 36px;
    padding: 0 8px;
  }

  .hero .hero-verse-dropdowns .verse-choices[data-type*="select-one"]::after {
    left: 6px;
    width: 10px;
    height: 7px;
  }

  .search-shell .btn__label {
    display: none;
  }

  .search-shell .btn--small {
    padding: 10px 14px;
    min-width: 0;
  }

  .tab-row .tab-pill,
  .hero__finder > .pill {
    width: 100%;
  }

  .segula-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .segula-showcase,
  .footer-shell,
  .stats-card,
  .content-card,
  .form-panel,
  .summary-card,
  .selected-card__inner {
    padding-inline: 20px;
  }

  .process-card,
  .segula-card,
  .result-card,
  .choice-card {
    padding: 24px 20px;
  }

  .choice-card {
    min-height: 0;
  }

  .summary-card__price {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {

  .status-badge {
    top: 12px;
    right: 11px;
    min-width: 114px;
    min-height: 30px;
    padding: 6px 12px;
    font-size: 18px;
  }

  .status-badge--taken {
    right: 11px;
  }
}

@media (max-width: 360px) {
  .footer-bottom {
    gap: 6px;
  }

  .footer-meta {
    gap: 0.25rem;
    font-size: clamp(0.5rem, 2.85vw, 0.6875rem);
  }
}

/* --------------------------------------------------------------------------
   WooCommerce notices (message / info / error / generic .woocommerce-notice)
   -------------------------------------------------------------------------- */

.woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-notices-wrapper {
  margin: 1.25rem;
  max-width: 100%;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
ul.woocommerce-message,
ul.woocommerce-info,
ul.woocommerce-error,
.woocommerce-notice {
  margin: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

ul.woocommerce-message,
ul.woocommerce-info,
ul.woocommerce-error {
  padding-inline-start: 1.25rem;
  list-style: none;
}

.woocommerce-message li,
.woocommerce-info li,
.woocommerce-error li {
  margin: 0;
}

.woocommerce-message li + li,
.woocommerce-info li + li,
.woocommerce-error li + li {
  margin-top: 0.5rem;
}

/* Success */
.woocommerce-message,
.woocommerce-notice--success,
ul.woocommerce-message {
  border-color: rgba(63, 96, 83, 0.45);
  background: rgba(63, 96, 83, 0.09);
}

/* Info */
.woocommerce-info,
.woocommerce-notice--info,
ul.woocommerce-info {
  border-color: rgba(166, 126, 77, 0.55);
  background: var(--paper-warm);
}

/* Error */
.woocommerce-error,
.woocommerce-notice--error,
ul.woocommerce-error,
.torah-reservation-expired-banner.woocommerce-error {
  border-color: rgba(171, 62, 75, 0.55);
  background: rgba(171, 62, 75, 0.08);
}

/* WC 3.9+ block-style notices: .woocommerce-notice.woocommerce-notice--* */
.woocommerce-notice.woocommerce-notice--success {
  border-color: rgba(63, 96, 83, 0.45);
  background: rgba(63, 96, 83, 0.09);
}

.woocommerce-notice.woocommerce-notice--info {
  border-color: rgba(166, 126, 77, 0.55);
  background: var(--paper-warm);
}

.woocommerce-notice.woocommerce-notice--error {
  border-color: rgba(171, 62, 75, 0.55);
  background: rgba(171, 62, 75, 0.08);
}

/* Links inside notices (e.g. Undo, cart) */
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a,
.woocommerce-notice a:not(.button) {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-weight: 700;
}

.woocommerce-message a:hover,
.woocommerce-message a:focus-visible,
.woocommerce-info a:hover,
.woocommerce-info a:focus-visible,
.woocommerce-error a:hover,
.woocommerce-error a:focus-visible,
.woocommerce-notice a:not(.button):hover,
.woocommerce-notice a:not(.button):focus-visible {
  color: var(--sage-deep);
}

.woocommerce-message a:focus-visible,
.woocommerce-info a:focus-visible,
.woocommerce-error a:focus-visible,
.woocommerce-notice a:not(.button):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Buttons inside notices (some gateways / WC blocks) */
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.woocommerce-notice .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover,
.woocommerce-notice .button:hover {
  background: var(--gold-deep);
  color: #fff;
}

/* Torah cart: replace-verse confirmation (search results) */
.torah-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 27, 22, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.torah-dialog-overlay.is-open {
  display: flex;
}

.torah-dialog__panel {
  width: min(100%, 420px);
  max-height: min(90vh, 520px);
  overflow: auto;
  background: var(--paper-warm);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px 24px 24px;
  text-align: center;
}

.torah-dialog__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

.torah-dialog__message {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.torah-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.torah-dialog__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* â”€â”€ Empty cart â”€â”€ */
.woocommerce-cart .entry-header {
  display: none;
}

.torah-empty-cart {
  max-width: 520px;
  margin: 24px auto 48px;
  padding: 28px 28px 32px;
  text-align: center;
  background: var(--paper-warm);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.torah-empty-cart__header {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.torah-empty-cart__icon {
  color: var(--sage);
  opacity: 0.55;
  flex-shrink: 0;
  line-height: 0;
}

.torah-empty-cart__title {
  font-family: var(--heading-font, 'Frank Ruhl Libre', serif);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0;
}

.torah-empty-cart__steps {
  text-align: right;
  margin-bottom: 20px;
}

.torah-empty-cart__intro {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0px 30px 8px;
}

.torah-empty-cart__list {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
}

.torah-empty-cart__list li {
  counter-increment: step;
  position: relative;
  padding-right: 32px;
  padding-bottom: 8px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.torah-empty-cart__list li::before {
  content: counter(step);
  position: absolute;
  right: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.torah-empty-cart__cta {
  display: inline-flex;
  padding: 12px 36px;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
}

@media (max-width: 620px) {
  .torah-empty-cart {
    margin: 16px 16px 32px;
    padding: 24px 18px;
  }
  .torah-empty-cart__title {
    font-size: 1.25rem;
  }
  .torah-empty-cart__list li {
    font-size: 0.88rem;
    padding-right: 30px;
  }
  .torah-empty-cart__cta {
    width: 100%;
    justify-content: center;
  }
}
