:root {
  --color-ink: #211a18;
  --color-muted: #6f665f;
  --color-paper: #f7f1ea;
  --color-cream: #fffaf3;
  --color-soft: #ebe0d4;
  --color-line: #ded0c2;
  --color-primary: #6f263f;
  --color-primary-dark: #35141f;
  --color-gold: #b9894a;
  --color-sage: #6f7a62;
  --color-clay: #a9654c;
  --color-night: #1e1817;
  --shadow-soft: 0 22px 60px rgba(30, 24, 23, 0.14);
  --radius: 8px;
  --container: 1180px;
  --page-gutter: clamp(36px, 5vw, 84px);
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

@media (min-width: 901px) {
  .home-blog .blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__link {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(260px, 0.72fr) auto;
  }

  .home-blog .blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__media {
    min-height: 260px;
  }

  .home-blog .blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__media img {
    height: 100%;
    min-height: 260px;
    width: 100%;
  }

  .home-blog .blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__body {
    justify-content: flex-start;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

img,
svg {
  display: block;
}

img {
  height: auto;
  max-width: 100%;
}

::selection {
  background: rgba(185, 137, 74, 0.28);
}

.skip-link {
  left: 1rem;
  position: absolute;
  top: -100px;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 24px;
  width: 100%;
}

.wide-container {
  margin: 0 auto;
  max-width: none;
  padding: 0 var(--page-gutter);
  width: 100%;
}

.content-narrow {
  max-width: 820px;
}

.eyebrow {
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.site-header {
  background: rgba(247, 241, 234, 0.96);
  border-bottom: 1px solid rgba(33, 26, 24, 0.1);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__inner {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: none;
  min-height: 92px;
  padding: 0 var(--page-gutter);
  position: relative;
  width: 100%;
}

.site-brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: max-content;
}

.site-brand__mark {
  align-items: center;
  display: inline-flex;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.site-brand__mark img {
  height: 72px;
  max-width: none;
  object-fit: contain;
  width: 72px;
}

.site-brand__text {
  color: var(--color-ink);
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
}

.site-brand__text strong {
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
}

.site-menu {
  align-items: center;
  display: flex;
  gap: clamp(22px, 2.5vw, 40px);
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-menu a,
.header-link {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.header-icon {
  align-items: center;
  color: var(--color-ink);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  position: relative;
  width: 42px;
}

.header-icon svg {
  height: 25px;
  width: 25px;
}

.header-icon circle,
.header-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-icon--cart span {
  align-items: center;
  background: var(--color-primary);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  height: 17px;
  justify-content: center;
  line-height: 1;
  min-width: 17px;
  padding: 0 4px;
  position: absolute;
  right: 0;
  top: 3px;
}

.site-trust-strip {
  background: rgba(255, 250, 243, 0.94);
  border-top: 1px solid rgba(222, 208, 194, 0.72);
  box-shadow: 0 12px 30px rgba(33, 26, 24, 0.035);
}

.site-trust-strip__inner {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: none;
  padding: 16px var(--page-gutter);
}

.site-trust-strip__item {
  align-items: center;
  border-left: 1px solid rgba(222, 208, 194, 0.82);
  color: var(--color-muted);
  display: grid;
  gap: 16px;
  grid-template-columns: 42px 1fr;
  justify-content: center;
  line-height: 1.35;
  min-height: 56px;
  padding: 0 clamp(22px, 3vw, 54px);
}

.site-trust-strip__item:first-child {
  border-left: 0;
}

.site-trust-strip__item svg {
  color: var(--color-gold);
  height: 34px;
  width: 34px;
}

.site-trust-strip__item svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.site-trust-strip__item span {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.site-menu a:hover,
.header-link:hover,
.text-link:hover,
.footer-list a:hover {
  color: var(--color-primary);
}

.site-header__actions,
.hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  transform: translateY(-1px);
}

.button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--color-primary);
  color: #fff;
}

.button--primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.button--light {
  background: rgba(255, 250, 243, 0.94);
  color: var(--color-ink);
}

.button--ghost {
  background: transparent;
  border-color: var(--color-line);
  color: var(--color-primary);
}

.button--shop {
  background: rgba(255, 250, 243, 0.84);
  border-color: rgba(185, 137, 74, 0.5);
  color: var(--color-ink);
}

.button--shop:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}

.text-link {
  color: var(--color-primary);
  display: inline-flex;
  font-weight: 800;
}

.text-link--light {
  color: rgba(255, 250, 243, 0.9);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  justify-self: end;
  min-height: 44px;
  min-width: 44px;
  padding: 8px;
  position: relative;
}

.menu-toggle span {
  background: var(--color-ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.menu-toggle__label {
  background: transparent !important;
  color: var(--color-primary);
  display: none !important;
  font-size: 14px;
  font-weight: 800;
  height: auto !important;
  margin: 0 !important;
  width: auto !important;
}

.menu-toggle::before {
  background: var(--color-ink);
  box-shadow: 0 7px 0 var(--color-ink), 0 14px 0 var(--color-ink);
  content: "";
  height: 2px;
  left: 10px;
  position: absolute;
  top: 14px;
  width: 24px;
}

.home-hero {
  background: radial-gradient(circle at 50% 0%, #fffaf3 0%, var(--color-paper) 54%, #f1e6da 100%);
  border-bottom: 1px solid var(--color-line);
  overflow: hidden;
  position: relative;
}

.home-hero::before {
  display: none;
}

.home-hero__inner {
  align-items: center;
  display: flex;
  margin: 0;
  max-width: none;
  min-height: clamp(500px, 30vw, 620px);
  padding: 0 var(--page-gutter);
  position: relative;
  width: 100%;
}

.home-hero h1,
.page-hero h1,
.section-heading h2,
.priority-card h3,
.ritual-levels h2,
.shop-preview h2,
.testimonials-preview h2,
.final-cta h2,
.wp-content h2,
.wp-content h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.08;
}

.home-hero__content {
  align-self: center;
  color: var(--color-ink);
  margin-left: clamp(12px, 2.2vw, 46px);
  max-width: 690px;
  padding: 0 clamp(36px, 5vw, 82px) 0 0;
  position: relative;
  transform: translateY(14px);
  width: min(42vw, 690px);
  z-index: 1;
}

.home-hero h1 {
  color: var(--color-ink);
  font-size: clamp(48px, 4.4vw, 72px);
  margin: 0;
  max-width: 730px;
  overflow-wrap: normal;
}

.home-hero__lead {
  color: var(--color-muted);
  font-size: clamp(18px, 1.7vw, 21px);
  margin: 24px 0 26px;
  max-width: 600px;
}

.home-hero .text-link--light {
  color: var(--color-primary);
}

.hero-shop-link {
  color: var(--color-primary);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  margin-top: 24px;
}

.hero-shop-link::after {
  content: "→";
  margin-left: 8px;
}

.home-hero__image {
  inset: 0;
  min-height: clamp(500px, 30vw, 620px);
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.home-hero__image img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.hero-benefits {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
}

.hero-benefits li {
  align-items: center;
  color: var(--color-muted);
  display: grid;
  font-size: 12px;
  font-weight: 700;
  gap: 12px;
  grid-template-columns: 36px 1fr;
  line-height: 1.35;
}

.hero-benefits svg {
  color: var(--color-gold);
  height: 32px;
  width: 32px;
}

.hero-benefits svg circle,
.hero-benefits svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.trust-strip {
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-line);
  padding: 14px 0;
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.trust-strip span {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
  padding: 7px 12px;
}

.content-section {
  padding: 88px 0;
}

.service-priority {
  padding: 34px 0 42px;
}

.service-priority .wide-container {
  padding-left: clamp(72px, 7vw, 140px);
  padding-right: clamp(72px, 7vw, 140px);
}

.content-section--soft {
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-line);
  border-top: 1px solid var(--color-line);
}

.content-section--soft:has(.modality-grid) {
  background: #fffaf5;
  padding: 72px 0 78px;
}

.intentions-section {
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-line);
  border-top: 1px solid var(--color-line);
  padding: 42px 0 38px;
}

.section-heading {
  margin-bottom: 36px;
}

.modality-heading {
  margin-bottom: 44px;
  max-width: none;
}

.modality-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}

.modality-heading p {
  color: var(--color-muted);
  font-size: 18px;
  font-weight: 700;
  margin: 14px 0 0;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 810px;
  text-align: center;
}

.intention-heading {
  margin-bottom: 20px;
  text-align: center;
}

.intention-heading .eyebrow {
  margin-bottom: 0;
}

.section-heading h2,
.ritual-levels h2,
.shop-preview h2,
.featured-shop h2,
.testimonials-preview h2,
.final-cta h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  margin: 0;
}

.section-heading p:not(.eyebrow),
.ritual-levels p,
.shop-preview p,
.final-cta p {
  color: var(--color-muted);
  font-size: 18px;
  margin: 16px 0 0;
  max-width: 720px;
}

.service-priority__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
}

.priority-card {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(33, 26, 24, 0.09);
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1fr;
  min-height: 420px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.priority-card--rituals {
  background: var(--color-cream);
  color: var(--color-ink);
}

.priority-card--consultation {
  background: var(--color-primary-dark);
}

.priority-card--consultation div {
  background: var(--color-primary-dark);
  color: #fff;
}

.priority-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .priority-card:hover {
    border-color: rgba(111, 38, 63, 0.34);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
  }

  .priority-card:hover img {
    transform: scale(1.025);
  }
}

.priority-card div {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 4vw, 58px) clamp(48px, 5vw, 82px);
}

.priority-card span,
.modality-card span,
.intention-card span,
.ritual-list span,
.product-mini span {
  color: var(--color-gold);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.priority-card h3 {
  font-size: clamp(28px, 2.45vw, 42px);
  margin: 26px 0 18px;
  max-width: 560px;
}

.priority-card p {
  color: var(--color-muted);
  margin: 0 0 32px;
  max-width: 570px;
}

.priority-card--consultation p {
  color: rgba(255, 255, 255, 0.75);
}

.priority-card strong {
  color: var(--color-primary);
  font-weight: 900;
}

.priority-card--consultation strong {
  color: #d4aa72;
}

.featured-shop {
  background: var(--color-paper);
  border-bottom: 1px solid var(--color-line);
  padding: 78px 0 88px;
}

.featured-shop__header {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 38px;
}

.featured-shop__header > div {
  max-width: 760px;
}

.featured-shop h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.featured-shop__header p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 680px;
}

.text-link--arrow {
  align-items: center;
  color: var(--color-ink);
  display: inline-flex;
  font-size: 17px;
  font-weight: 800;
  gap: 14px;
  white-space: nowrap;
}

.text-link--arrow::after {
  content: "→";
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.featured-product-row {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.featured-product {
  min-width: 0;
}

.featured-product__image {
  background: var(--color-cream);
  border: 1px solid rgba(222, 208, 194, 0.75);
  border-radius: 15px;
  box-shadow: 0 18px 42px rgba(33, 26, 24, 0.07);
  display: block;
  overflow: hidden;
}

.featured-product__image img {
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  transition: transform 0.22s ease;
  width: 100%;
}

.featured-product:hover .featured-product__image img {
  transform: scale(1.025);
}

.featured-product__body {
  padding: 20px 1px 0;
}

.featured-product h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.25vw, 23px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 12px;
}

.featured-product h3 a {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
}

.featured-product p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 20px;
  min-height: 44px;
}

.featured-product__meta {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.featured-product__price {
  color: var(--color-ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.featured-product__cart {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--color-ink);
  min-height: 42px;
  padding: 7px;
  width: 42px;
}

.featured-product__cart svg {
  height: 29px;
  width: 29px;
}

.featured-product__cart svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.featured-product__cart span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.featured-product__cart:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

.post-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.modality-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.intention-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.intention-card,
.post-card,
.woocommerce ul.products li.product {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  display: block;
  min-height: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.modality-card {
  align-items: start;
  border-left: 1px solid var(--color-line);
  display: grid;
  gap: 24px;
  grid-template-columns: 70px 1fr;
  min-height: 0;
  padding: 8px clamp(28px, 3vw, 52px);
  transition: color 0.18s ease, transform 0.18s ease;
}

.modality-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.modality-card svg {
  color: var(--color-ink);
  grid-row: 1 / span 3;
  height: 64px;
  transition: color 0.18s ease, transform 0.18s ease;
  width: 64px;
}

.modality-card span,
.modality-card h3,
.modality-card strong {
  grid-column: 2;
}

.modality-card svg rect,
.modality-card svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.intention-card {
  background: transparent;
  border: 0;
  border-left: 1px solid var(--color-line);
  min-height: 0;
  padding: 28px clamp(18px, 2vw, 32px);
  text-align: center;
}

.intention-card:first-child {
  border-left: 0;
}

.intention-card:hover,
.post-card:hover,
.woocommerce ul.products li.product:hover {
  border-color: rgba(111, 38, 63, 0.34);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.modality-card:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.modality-card:hover svg {
  color: var(--color-gold);
  transform: scale(1.04);
}

.post-card h2 {
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.16;
  margin: 34px 0 12px;
}

.modality-card h3 {
  color: var(--color-muted);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  margin: 12px 0 24px;
  max-width: 260px;
}

.intention-card h3 {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  margin: 12px auto 0;
  max-width: 185px;
}

.intention-card svg {
  color: var(--color-gold);
  height: 58px;
  margin: 0 auto 24px;
  width: 58px;
}

.intention-card svg circle,
.intention-card svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.intention-footer {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.post-card p {
  color: var(--color-muted);
  margin: 0;
}

.modality-card strong {
  color: var(--color-primary);
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  gap: 12px;
}

.modality-card strong::after {
  content: "→";
  font-size: 22px;
  font-weight: 500;
  line-height: 0.9;
}

.ritual-levels {
  background: #fffaf5;
  border-bottom: 1px solid var(--color-line);
  border-top: 1px solid var(--color-line);
  padding: 82px 0 86px;
}

.shop-preview__grid {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: 0.85fr 1fr;
}

.ritual-levels__header {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.ritual-levels__header > div {
  max-width: 820px;
}

.ritual-levels__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
}

.ritual-levels__header p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 720px;
}

.ritual-card-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ritual-card {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(33, 26, 24, 0.07);
  min-width: 0;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.ritual-card:hover {
  border-color: rgba(111, 38, 63, 0.34);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.ritual-card__image {
  display: block;
  overflow: hidden;
}

.ritual-card__image img {
  aspect-ratio: 16 / 7;
  height: auto;
  object-fit: cover;
  transition: transform 0.22s ease;
  width: 100%;
}

.ritual-card:hover .ritual-card__image img {
  transform: scale(1.025);
}

.ritual-card__body {
  padding: 28px 30px 30px;
}

.ritual-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 14px;
}

.ritual-card p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 24px;
}

.ritual-card__footer {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.ritual-card__price {
  color: var(--color-ink);
  font-size: 17px;
  font-weight: 700;
}

.ritual-card__link {
  color: var(--color-primary);
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  gap: 10px;
  white-space: nowrap;
}

.ritual-card__link::after {
  content: "→";
  font-size: 22px;
  font-weight: 500;
  line-height: 0.9;
}

.ritual-intentions {
  background: var(--color-paper);
  border-top: 1px solid var(--color-line);
}

.ritual-intention-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.ritual-intention-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ritual-intention-card {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(33, 26, 24, 0.055);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: clamp(28px, 3vw, 42px);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.ritual-intention-card:hover {
  border-color: rgba(111, 38, 63, 0.32);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.ritual-intention-card span {
  color: var(--color-gold);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ritual-intention-card h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 26px 0 18px;
}

.ritual-intention-card p {
  color: var(--color-muted);
  line-height: 1.62;
  margin: 0;
}

.ritual-intention-card strong {
  color: var(--color-primary);
  display: inline-flex;
  font-size: 15px;
  gap: 10px;
  margin-top: auto;
  padding-top: 32px;
}

.ritual-intention-card strong::after {
  content: "→";
  font-size: 22px;
  font-weight: 500;
  line-height: 0.9;
}

.ritual-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rituals-featured .ritual-card__image img {
  aspect-ratio: 4 / 3;
}

.shop-preview {
  background: var(--color-paper);
  border-bottom: 1px solid var(--color-line);
  border-top: 1px solid var(--color-line);
  color: var(--color-ink);
}

.shop-preview p {
  color: var(--color-muted);
}

.product-mini-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-mini {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 18px;
}

.product-mini img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  margin-bottom: 18px;
  object-fit: cover;
  width: 100%;
}

.product-mini strong {
  color: var(--color-ink);
  display: block;
  font-size: 20px;
  margin-top: 8px;
}

.testimonials-preview {
  background: var(--color-paper);
  border-bottom: 1px solid var(--color-line);
}

.testimonials-preview__header {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.testimonials-preview__header > div {
  max-width: 780px;
}

.testimonials-preview__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
}

.testimonials-preview__header p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 680px;
}

.testimonial-list,
.testimonial-archive-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-archive-grid {
  align-items: stretch;
}

.testimonial-card {
  background: linear-gradient(180deg, #fffdf9 0%, var(--color-cream) 100%);
  border: 1px solid rgba(222, 208, 194, 0.86);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(33, 26, 24, 0.065);
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 310px;
  padding: clamp(28px, 2.5vw, 42px);
  position: relative;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.testimonial-card::before {
  color: rgba(185, 137, 74, 0.22);
  content: "“";
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.7;
  position: absolute;
  right: 26px;
  top: 24px;
}

.testimonial-card:hover {
  border-color: rgba(111, 38, 63, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.testimonial-card__top {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card__top span {
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-card__top strong {
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.testimonial-card p {
  color: var(--color-ink);
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.65vw, 30px);
  font-weight: 500;
  line-height: 1.22;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}

.testimonial-card cite {
  border-top: 1px solid rgba(222, 208, 194, 0.78);
  color: var(--color-primary);
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  padding-top: 18px;
  position: relative;
  z-index: 1;
}

.testimonial-card cite small {
  color: var(--color-muted);
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

.testimonial-empty {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(33, 26, 24, 0.055);
  grid-column: 1 / -1;
  padding: clamp(32px, 5vw, 64px);
}

.testimonial-empty h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
  max-width: 850px;
}

.testimonial-empty p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.72;
  margin: 22px 0 0;
  max-width: 780px;
}

.legal-page__section {
  background: var(--color-paper);
}

.legal-page__wrap {
  align-items: start;
  display: grid;
  gap: clamp(32px, 5vw, 76px);
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
}

.legal-page__aside {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(33, 26, 24, 0.06);
  padding: 28px;
  position: sticky;
  top: 110px;
}

.legal-page__aside p:not(.eyebrow) {
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
}

.legal-page__content {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(33, 26, 24, 0.06);
  padding: clamp(28px, 5vw, 64px);
}

.legal-page__content h2,
.legal-page__content h3 {
  color: var(--color-ink);
}

.post-card {
  overflow: hidden;
  padding: 0;
}

.post-card__link {
  display: block;
  min-height: 100%;
}

.post-card__media {
  aspect-ratio: 16 / 10;
  background: var(--color-soft);
  overflow: hidden;
}

.post-card__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.post-card__body {
  padding: 24px;
}

.home-blog {
  background: #fffaf5;
  border-bottom: 1px solid var(--color-line);
}

.blog-index__hero {
  padding-bottom: 58px;
}

.blog-index__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 34px auto 0;
  max-width: 980px;
}

.blog-index__categories a {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 10px 15px;
  text-transform: uppercase;
}

.blog-index__categories a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fffaf3;
}

.blog-index__categories a.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fffaf3;
}

.blog-index__posts {
  background: var(--color-paper);
}

.blog-featured-post {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(33, 26, 24, 0.07);
  margin-bottom: clamp(56px, 6vw, 92px);
  overflow: hidden;
}

.blog-featured-post__link {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  min-height: 100%;
}

.blog-featured-post__media {
  background: var(--color-soft);
  min-height: 430px;
  overflow: hidden;
}

.blog-featured-post__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.blog-featured-post__body {
  align-self: center;
  padding: clamp(38px, 6vw, 82px);
}

.blog-featured-post__body h2,
.blog-index__section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.blog-featured-post__body p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.72;
  margin: 24px 0 28px;
}

.blog-featured-post__body span {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-index__section-header {
  margin-bottom: 30px;
  max-width: 760px;
}

.blog-index__section-header h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.home-blog__header {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 38px;
}

.home-blog__header > div {
  max-width: 760px;
}

.home-blog__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
}

.home-blog__header p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 680px;
}

.home-blog__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
}

.blog-feature-card {
  background: var(--color-cream);
  border: 1px solid rgba(222, 208, 194, 0.86);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(33, 26, 24, 0.06);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.blog-feature-card--large {
  grid-row: span 2;
}

.blog-feature-card:hover {
  border-color: rgba(111, 38, 63, 0.3);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.blog-feature-card__link {
  display: grid;
  min-height: 100%;
}

.blog-feature-card--large .blog-feature-card__link {
  grid-template-rows: minmax(340px, 1fr) auto;
}

.blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__link {
  grid-template-columns: 1fr;
  grid-template-rows: minmax(220px, 0.72fr) auto;
}

.blog-feature-card__media {
  background: var(--color-soft);
  overflow: hidden;
}

.blog-feature-card__media img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.22s ease;
  width: 100%;
}

.blog-feature-card--large .blog-feature-card__media img {
  min-height: 340px;
}

.blog-feature-card:hover .blog-feature-card__media img {
  transform: scale(1.025);
}

.blog-feature-card__placeholder {
  align-items: center;
  aspect-ratio: 16 / 10;
  background: radial-gradient(circle at 50% 40%, rgba(185, 137, 74, 0.18), rgba(111, 38, 63, 0.1) 46%, var(--color-soft) 100%);
  display: flex;
  justify-content: center;
  min-height: 220px;
}

.blog-feature-card__placeholder span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-feature-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3vw, 42px);
}

.blog-feature-card__meta {
  align-items: center;
  color: var(--color-gold);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.blog-feature-card__meta time {
  color: var(--color-muted);
  font-weight: 700;
}

.blog-feature-card h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.35vw, 42px);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 16px;
}

.blog-feature-card:not(.blog-feature-card--large) h3 {
  font-size: clamp(22px, 1.6vw, 30px);
}

.blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__body {
  justify-content: flex-start;
  padding: 26px 30px 30px;
}

.blog-feature-card p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.blog-feature-card strong {
  color: var(--color-primary);
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 10px;
  margin-top: auto;
}

.blog-feature-card strong::after {
  content: "→";
  font-size: 21px;
  font-weight: 500;
  line-height: 0.9;
}

.post-card__date,
.article-meta {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.final-cta {
  background: var(--color-primary-dark);
  padding: 0;
}

.final-cta__wrap {
  background-image: linear-gradient(90deg, rgba(53, 20, 31, 0.04) 0%, rgba(53, 20, 31, 0.04) 38%, rgba(53, 20, 31, 0.2) 62%, rgba(53, 20, 31, 0.08) 100%), url("../images/final-cta-ritual-banner-v1.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fffaf3;
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  min-height: clamp(360px, 35vw, 460px);
  padding: 0 var(--page-gutter);
  width: 100%;
}

.final-cta__content {
  align-self: center;
  justify-self: center;
  max-width: 680px;
  padding: clamp(42px, 5vw, 70px) 0;
  width: min(100%, 680px);
}

.final-cta .eyebrow {
  color: #d5aa72;
}

.final-cta h2 {
  color: #fffaf3;
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1.04;
  max-width: 650px;
}

.final-cta p {
  color: rgba(255, 250, 243, 0.78);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 690px;
}

.final-cta__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 32px 0 34px;
  padding: 0;
}

.final-cta__points li {
  border: 1px solid rgba(213, 170, 114, 0.34);
  border-radius: 999px;
  color: rgba(255, 250, 243, 0.82);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 13px;
}

.final-cta .button--primary {
  background: #fffaf3;
  border-color: #fffaf3;
  color: var(--color-primary);
}

.final-cta .button--ghost {
  border-color: rgba(255, 250, 243, 0.26);
  color: #fffaf3;
}

.final-cta .button--ghost:hover {
  background: rgba(255, 250, 243, 0.08);
}

.single-post-hero {
  background: radial-gradient(circle at 18% 0%, #fffaf3 0%, var(--color-paper) 58%, #efe2d5 100%);
  border-bottom: 1px solid var(--color-line);
  padding: clamp(58px, 7vw, 96px) 0;
}

.single-post-hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(42px, 6vw, 96px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.8fr);
}

.single-post-hero__content {
  max-width: 820px;
}

.single-post-hero__meta {
  align-items: center;
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.single-post-hero__meta a {
  color: var(--color-primary);
}

.single-post-hero__meta span::before {
  color: var(--color-line);
  content: "/";
  margin-right: 10px;
}

.single-post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 500;
  line-height: 1.02;
  margin: 0;
  max-width: 860px;
}

.single-post-hero__lead {
  color: var(--color-muted);
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.58;
  margin: 26px 0 0;
  max-width: 720px;
}

.single-post-hero__image {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.single-post-hero__image img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.single-post-shell {
  background: #fffaf5;
  padding: clamp(62px, 7vw, 104px) 0;
}

.single-post-shell__inner {
  align-items: start;
  display: grid;
  gap: clamp(38px, 5vw, 76px);
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
}

.single-post-aside {
  position: sticky;
  top: 140px;
}

.single-post-aside__box {
  background: var(--color-cream);
  border: 1px solid rgba(222, 208, 194, 0.86);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(33, 26, 24, 0.06);
  padding: 28px;
}

.single-post-aside__box h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 14px;
}

.single-post-aside__box p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.single-post-aside__box .button {
  justify-content: center;
  width: 100%;
}

.single-post-aside__box .text-link {
  margin-top: 18px;
}

.single-post-main {
  min-width: 0;
}

.single-post-content {
  background: #fffdf9;
  border: 1px solid rgba(222, 208, 194, 0.72);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(33, 26, 24, 0.05);
  padding: clamp(34px, 5vw, 72px);
}

.single-post-cta {
  align-items: center;
  background: var(--color-primary-dark);
  border-radius: 18px;
  color: #fffaf3;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  margin-top: 28px;
  padding: clamp(30px, 4vw, 48px);
}

.single-post-cta .eyebrow {
  color: #d5aa72;
}

.single-post-cta h2 {
  color: #fffaf3;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
}

.single-post-cta p {
  color: rgba(255, 250, 243, 0.76);
  margin: 14px 0 0;
  max-width: 660px;
}

.single-post-cta .button--ghost {
  border-color: rgba(255, 250, 243, 0.26);
  color: #fffaf3;
}

.single-related-posts {
  background: var(--color-paper);
  border-top: 1px solid var(--color-line);
}

.single-related-posts__header {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.single-related-posts__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
}

.page-hero {
  background: var(--color-soft);
  padding: 72px 0 54px;
}

.page-hero--compact {
  background: radial-gradient(circle at 50% 0%, #fffaf3 0%, var(--color-paper) 72%);
  border-bottom: 1px solid var(--color-line);
  padding: 86px 0 70px;
  text-align: center;
}

.page-hero--compact .container {
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  margin: 0;
}

.page-hero p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 19px;
  line-height: 1.55;
  margin: 20px auto 0;
  max-width: 700px;
}

.page-hero__lead {
  color: var(--color-muted);
  font-size: 19px;
  margin: 18px 0 0;
}

.single-featured {
  margin-top: 42px;
}

.single-featured img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  max-height: 620px;
  object-fit: cover;
  width: 100%;
}

.wp-content {
  color: #352d2a;
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.78;
}

.wp-content > *:first-child {
  margin-top: 0;
}

.wp-content > * {
  margin-bottom: 1.25em;
}

.wp-content p {
  margin-top: 0;
}

.wp-content ul,
.wp-content ol {
  padding-left: 1.25em;
}

.wp-content li + li {
  margin-top: 0.45em;
}

.wp-content a {
  color: var(--color-primary);
  font-weight: 800;
}

.wp-content a.button--primary,
.wp-content a.button--primary:hover {
  color: #fff;
}

.wp-content .wp-block-button__link,
.wp-content .wp-block-button__link:hover {
  background: var(--color-primary);
  border-radius: var(--radius);
  color: #fff;
}

.wp-content h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  margin: 1.55em 0 0.55em;
}

.wp-content h3 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 500;
  margin: 1.25em 0 0.45em;
}

.wp-content blockquote,
.wp-content .wp-block-quote {
  background: var(--color-cream);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  color: var(--color-ink);
  margin: 34px 0;
  padding: 24px 26px;
}

.wp-content .wp-block-table {
  overflow-x: auto;
}

.wp-content table {
  border-collapse: collapse;
  font-size: 16px;
  width: 100%;
}

.wp-content th,
.wp-content td {
  border: 1px solid var(--color-line);
  padding: 14px 16px;
  vertical-align: top;
}

.wp-content th {
  background: var(--color-primary-dark);
  color: #fff;
  text-align: left;
}

.wp-content tr:nth-child(even) td {
  background: #fff8f0;
}

.wp-content figure {
  margin: 36px 0;
}

.wp-content img {
  border-radius: 16px;
}

.wp-content figcaption {
  color: var(--color-muted);
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}

.consultation-page {
  background: var(--color-paper);
}

.consultation-hero {
  background: radial-gradient(circle at 46% 0%, #fffaf3 0%, var(--color-paper) 58%, #efe3d7 100%);
  border-bottom: 1px solid var(--color-line);
  min-height: clamp(560px, 38vw, 720px);
  overflow: hidden;
  position: relative;
}

.consultation-hero__media {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.consultation-hero__media::after {
  background: linear-gradient(90deg, rgba(247, 241, 234, 0.98) 0%, rgba(247, 241, 234, 0.9) 31%, rgba(247, 241, 234, 0.28) 54%, rgba(247, 241, 234, 0.04) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.consultation-hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.consultation-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(560px, 38vw, 720px);
  padding: clamp(70px, 7vw, 118px) var(--page-gutter);
  position: relative;
  width: min(760px, 48vw);
  z-index: 1;
}

.consultation-hero h1,
.consultation-section-heading h2,
.consultation-process__intro h2,
.consultation-806 h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.consultation-hero h1 {
  font-size: clamp(48px, 5.4vw, 82px);
  max-width: 760px;
}

.consultation-hero p:not(.eyebrow),
.consultation-section-heading p,
.consultation-process__intro p,
.consultation-806 p {
  color: var(--color-muted);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.62;
  margin: 22px 0 0;
  max-width: 660px;
}

.consultation-hero .hero__actions {
  margin-top: 30px;
}

.consultation-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.consultation-hero__proof li {
  border: 1px solid rgba(111, 38, 63, 0.16);
  border-radius: 999px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 13px;
}

.consultation-modes {
  background: #fffaf5;
  border-bottom: 1px solid var(--color-line);
}

.consultation-section-heading {
  margin-bottom: 44px;
  max-width: 920px;
}

.consultation-section-heading h2,
.consultation-process__intro h2,
.consultation-806 h2 {
  font-size: clamp(40px, 4.8vw, 64px);
}

.consultation-mode-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.consultation-mode-card {
  border-left: 1px solid var(--color-line);
  display: grid;
  gap: 16px;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 360px;
  padding: 8px clamp(28px, 3vw, 50px) 10px;
  transition: color 0.18s ease, transform 0.18s ease;
}

.consultation-mode-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.consultation-mode-card:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.consultation-mode-card svg {
  color: var(--color-gold);
  height: 66px;
  transition: color 0.18s ease, transform 0.18s ease;
  width: 66px;
}

.consultation-mode-card:hover svg {
  color: var(--color-primary);
  transform: scale(1.04);
}

.consultation-mode-card svg rect,
.consultation-mode-card svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.consultation-mode-card span,
.consultation-trust__card span {
  color: var(--color-gold);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consultation-mode-card h3 {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.3vw, 36px);
  font-weight: 500;
  line-height: 1.12;
  margin: 2px 0 0;
}

.consultation-mode-card p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.62;
  margin: 0;
}

.consultation-mode-card strong {
  align-self: end;
  color: var(--color-primary);
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  gap: 10px;
}

.consultation-mode-card strong::after {
  content: "→";
  font-size: 21px;
  font-weight: 500;
  line-height: 0.9;
}

.consultation-process {
  background: var(--color-paper);
}

.consultation-process__grid {
  align-items: start;
  display: grid;
  gap: clamp(54px, 7vw, 110px);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
}

.consultation-process__intro {
  position: sticky;
  top: 110px;
}

.consultation-steps {
  border-top: 1px solid var(--color-line);
  display: grid;
}

.consultation-steps div {
  border-bottom: 1px solid var(--color-line);
  display: grid;
  gap: 24px;
  grid-template-columns: 78px 1fr;
  padding: 34px 0;
}

.consultation-steps span {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.consultation-steps h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}

.consultation-steps p {
  color: var(--color-muted);
  grid-column: 2;
  line-height: 1.7;
  margin: -12px 0 0;
  max-width: 650px;
}

.consultation-806 {
  background: var(--color-primary-dark);
  color: #fffaf3;
}

.consultation-806__inner {
  align-items: center;
  display: grid;
  gap: clamp(42px, 6vw, 92px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
}

.consultation-806 p {
  color: rgba(255, 250, 243, 0.72);
}

.consultation-rate-card {
  background: rgba(255, 250, 243, 0.08);
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  padding: clamp(30px, 4vw, 46px);
}

.consultation-rate-card span {
  color: #fff;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  margin-bottom: 24px;
}

.consultation-rate-card p {
  border-top: 1px solid rgba(255, 250, 243, 0.16);
  color: #fffaf3;
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  max-width: none;
  padding: 14px 0;
}

.consultation-rate-card small {
  color: rgba(255, 250, 243, 0.62);
  display: block;
  line-height: 1.6;
  margin: 6px 0 26px;
}

.consultation-rate-card .button {
  justify-content: center;
  width: 100%;
}

.consultation-trust {
  background: #fffaf5;
  border-bottom: 1px solid var(--color-line);
}

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

.consultation-trust__card {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(33, 26, 24, 0.06);
  padding: clamp(30px, 4vw, 46px);
}

.consultation-trust__card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.12;
  margin: 24px 0 18px;
}

.consultation-trust__card p {
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

.consultation-final-cta {
  border-top: 0;
}

.consultation-detail-hero .consultation-hero__media::after {
  background: linear-gradient(90deg, rgba(247, 241, 234, 0.98) 0%, rgba(247, 241, 234, 0.9) 34%, rgba(247, 241, 234, 0.24) 58%, rgba(247, 241, 234, 0.05) 100%);
}

.detail-intro {
  background: var(--color-paper);
}

.detail-intro__grid {
  align-items: start;
  display: grid;
  gap: clamp(42px, 6vw, 96px);
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.52fr);
}

.detail-intro__copy h2,
.detail-card h2,
.whatsapp-flow h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
}

.detail-intro__copy p:not(.eyebrow),
.detail-card p {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.72;
  margin: 22px 0 0;
  max-width: 720px;
}

.detail-intro__panel {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(33, 26, 24, 0.07);
  padding: clamp(30px, 4vw, 46px);
}

.detail-intro__panel h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 24px;
}

.detail-intro__panel ul,
.detail-card ul {
  color: var(--color-muted);
  line-height: 1.72;
  margin: 0;
  padding-left: 1.1em;
}

.detail-intro__panel li + li,
.detail-card li + li {
  margin-top: 12px;
}

.whatsapp-flow {
  background: #fffaf5;
}

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

.detail-step-card {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(33, 26, 24, 0.055);
  padding: clamp(30px, 4vw, 46px);
}

.detail-step-card span {
  color: var(--color-gold);
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 28px;
}

.detail-step-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 16px;
}

.detail-step-card p {
  color: var(--color-muted);
  line-height: 1.68;
  margin: 0;
}

.detail-two-column {
  background: var(--color-paper);
}

.detail-two-column__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(33, 26, 24, 0.065);
  padding: clamp(38px, 5vw, 68px);
}

.detail-card--dark {
  background: var(--color-primary-dark);
  border-color: rgba(255, 250, 243, 0.1);
  color: #fffaf3;
}

.detail-card .eyebrow {
  color: var(--color-gold);
}

.detail-card--dark p,
.detail-card--dark ul {
  color: rgba(255, 250, 243, 0.74);
}

.detail-card ul {
  margin-top: 28px;
}

.detail-note {
  background: rgba(185, 137, 74, 0.12);
  border: 1px solid rgba(185, 137, 74, 0.22);
  border-radius: 14px;
  color: var(--color-muted);
  display: grid;
  gap: 8px;
  line-height: 1.6;
  margin-top: 30px;
  padding: 20px 22px;
}

.detail-note strong {
  color: var(--color-primary);
}

.booking-section {
  background: var(--color-paper);
}

.booking-section__grid {
  align-items: start;
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
}

.booking-section__intro {
  position: sticky;
  top: 110px;
}

.booking-section__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
}

.booking-section__intro > p {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.72;
  margin: 22px 0 0;
}

.booking-panel {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: 0 20px 56px rgba(33, 26, 24, 0.07);
  overflow: hidden;
  padding: clamp(22px, 3vw, 38px);
}

.booking-panel .wp-content > p:first-child {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 0;
}

.booking-panel iframe,
.booking-panel .fluent_booking_app,
.booking-panel .fluent_booking,
.booking-panel [class*="fluent"] {
  max-width: 100%;
}

.faq-section {
  background: var(--color-paper);
}

.faq-layout {
  align-items: start;
  display: grid;
  gap: clamp(36px, 6vw, 90px);
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
}

.faq-sidebar {
  position: sticky;
  top: 110px;
}

.faq-sidebar h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
}

.faq-sidebar p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.72;
  margin: 22px 0 28px;
}

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

.faq-group {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(33, 26, 24, 0.055);
  padding: clamp(24px, 3vw, 36px);
}

.faq-group .eyebrow {
  margin-bottom: 18px;
}

.faq-group details {
  border-top: 1px solid var(--color-line);
  padding: 20px 0;
}

.faq-group details:last-child {
  padding-bottom: 0;
}

.faq-group summary {
  color: var(--color-ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  list-style: none;
  padding-right: 38px;
  position: relative;
}

.faq-group summary::-webkit-details-marker {
  display: none;
}

.faq-group summary::after {
  color: var(--color-primary);
  content: "+";
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 500;
  position: absolute;
  right: 0;
  top: -2px;
}

.faq-group details[open] summary::after {
  content: "−";
}

.faq-group p {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.72;
  margin: 14px 0 0;
  max-width: 820px;
}

.pagination-wrap {
  margin-top: 36px;
}

.site-footer {
  background: #fffaf5;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  padding: 48px 0 0;
}

.site-footer__inner {
  display: grid;
  gap: clamp(34px, 5vw, 78px);
  grid-template-columns: minmax(300px, 1.25fr) minmax(140px, 0.65fr) minmax(220px, 0.85fr) minmax(330px, 1fr);
  margin: 0 auto;
  max-width: none;
  padding: 0 var(--page-gutter) 46px;
}

.site-footer__title,
.site-footer__heading {
  color: var(--color-ink);
  font-weight: 800;
  margin: 0 0 12px;
}

.site-footer__brand-row {
  align-items: flex-start;
  display: grid;
  gap: 22px;
  grid-template-columns: 96px 1fr;
  max-width: 470px;
}

.site-footer__brand-row img {
  height: 96px;
  object-fit: contain;
  width: 96px;
}

.site-footer__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.site-footer__brand p:not(.site-footer__title) {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  max-width: 360px;
}

.site-footer__heading {
  font-size: 16px;
}

.site-footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.site-footer__socials a {
  align-items: center;
  border: 1px solid rgba(111, 38, 63, 0.18);
  border-radius: 10px;
  color: var(--color-ink);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  width: 42px;
}

.site-footer__socials a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

.site-footer__socials svg {
  height: 25px;
  width: 25px;
}

.site-footer__socials svg rect,
.site-footer__socials svg circle,
.site-footer__socials svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

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

.footer-list a {
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 600;
}

.site-footer__newsletter p {
  color: var(--color-muted);
  font-size: 16px;
  margin: 0 0 18px;
}

.footer-newsletter-form {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.footer-newsletter-form input {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  color: var(--color-ink);
  font: inherit;
  min-height: 56px;
  padding: 0 18px;
  width: 100%;
}

.footer-newsletter-form button {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 56px;
  padding: 0 24px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.footer-newsletter-form button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.site-footer__notice {
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 14px;
  padding: 18px var(--page-gutter);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  color: var(--color-muted);
}

.shop-hero {
  background: var(--color-paper);
  border-bottom: 1px solid rgba(222, 208, 194, 0.86);
}

.shop-hero__inner {
  align-items: center;
  background-image: linear-gradient(90deg, rgba(247, 241, 234, 0.98) 0%, rgba(247, 241, 234, 0.94) 29%, rgba(247, 241, 234, 0.6) 48%, rgba(247, 241, 234, 0.04) 72%), url("../images/tarot-ines-hero-fundido-v1.webp");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  min-height: clamp(430px, 44vw, 620px);
}

.shop-hero__content {
  max-width: 660px;
  padding: clamp(72px, 8vw, 128px) 0;
}

.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 650px;
}

.shop-hero p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
  margin: 24px 0 0;
  max-width: 570px;
}

.shop-hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-hero--shop {
  border-bottom: 1px solid var(--color-line);
}

.shop-trust-strip {
  background: rgba(255, 250, 243, 0.95);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 14px 36px rgba(33, 26, 24, 0.035);
}

.shop-trust-strip__grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-trust-strip__grid > div {
  align-items: center;
  border-left: 1px solid var(--color-line);
  display: grid;
  gap: 6px 16px;
  grid-template-columns: 36px 1fr;
  padding: 22px clamp(18px, 2.4vw, 34px);
}

.shop-trust-strip__grid > div:first-child {
  border-left: 0;
}

.shop-trust-strip svg {
  color: var(--color-gold);
  grid-row: 1 / span 2;
  height: 31px;
  width: 31px;
}

.shop-trust-strip svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.shop-trust-strip span {
  color: var(--color-primary);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.shop-trust-strip p {
  color: var(--color-muted);
  line-height: 1.55;
  margin: 0;
}

.shop-main-section {
  background: var(--color-paper);
  scroll-margin-top: 150px;
}

.wc-wrap {
  max-width: 1560px;
}

.wc-page .woocommerce,
.wc-wrap > .woocommerce {
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid var(--color-line);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(33, 26, 24, 0.06);
  padding: clamp(24px, 4vw, 48px);
}

.woocommerce-products-header,
.woocommerce .woocommerce-breadcrumb {
  display: none;
}

.woocommerce ul.products {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  margin: 0 !important;
  padding: 18px !important;
  width: auto !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(19px, 1.45vw, 23px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.16;
  margin-bottom: 10px;
}

.woocommerce ul.products li.product img {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 18px;
}

.woocommerce ul.products li.product .price {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
}

.woocommerce ul.products li.product .button {
  margin-top: 14px;
}

.woocommerce div.product {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 28px;
}

.product-concept {
  background: var(--color-paper);
}

.product-premium-hero,
.boutique-product,
.guided-product-hero {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.78) 0%, rgba(247, 241, 234, 1) 100%);
  border-bottom: 1px solid var(--color-line);
  padding: clamp(58px, 7vw, 96px) 0;
}

.product-premium-hero__grid,
.boutique-product__grid,
.guided-product-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(38px, 5vw, 86px);
  grid-template-columns: minmax(420px, 0.88fr) minmax(380px, 0.7fr);
}

.product-gallery-concept,
.boutique-product__image,
.guided-product-hero__image {
  min-width: 0;
}

.product-gallery-vertical {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 82px minmax(0, 1fr);
  max-width: 660px;
}

.product-gallery-vertical__thumbs {
  display: grid;
  gap: 12px;
}

.product-gallery-vertical__thumb,
.product-gallery-vertical__main {
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(222, 208, 194, 0.9);
  border-radius: 16px;
  display: block;
  overflow: hidden;
}

.product-gallery-vertical__thumb {
  cursor: pointer;
  padding: 6px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 100%;
}

.product-gallery-vertical__thumb:hover,
.product-gallery-vertical__thumb.is-active {
  border-color: rgba(126, 43, 69, 0.58);
  box-shadow: 0 12px 34px rgba(33, 26, 24, 0.12);
}

.product-gallery-vertical__thumb:hover {
  transform: translateY(-1px);
}

.product-gallery-vertical__thumbs img {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: contain;
  width: 100%;
}

.product-gallery-vertical__main {
  box-shadow: 0 22px 70px rgba(33, 26, 24, 0.1);
  padding: clamp(18px, 2.4vw, 30px);
}

.product-gallery-vertical__main img {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  max-height: 560px;
  object-fit: contain;
  width: 100%;
}

.product-buy-panel {
  background: transparent;
  border-left: 1px solid var(--color-line);
  padding: clamp(10px, 2vw, 28px) 0 clamp(10px, 2vw, 28px) clamp(28px, 4vw, 58px);
}

.product-buy-panel h1,
.boutique-product h1,
.guided-product-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.product-buy-panel p:not(.eyebrow),
.boutique-product__content > p,
.guided-product-hero__copy > p {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 22px 0 0;
}

.product-buy-panel__price,
.boutique-product__price,
.guided-product-hero__price {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 26px;
}

.product-buy-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.product-buy-panel__form,
.guided-product-hero__form {
  margin-top: 28px;
}

.product-buy-panel__form form.cart,
.guided-product-hero__form form.cart {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 12px;
  margin: 0;
  max-width: 430px;
}

.product-buy-panel__form .quantity,
.guided-product-hero__form .quantity {
  flex: 0 0 auto;
  margin: 0 !important;
}

.product-buy-panel__form input.qty,
.guided-product-hero__form input.qty {
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  font-weight: 700;
  min-height: 58px;
  text-align: center;
  width: 78px;
}

.product-buy-panel__form table.variations,
.guided-product-hero__form table.variations {
  border: 0;
  display: block;
  flex: 0 0 100%;
  margin: 0;
  max-width: 430px;
  width: min(100%, 430px);
}

.product-buy-panel__form table.variations tbody,
.product-buy-panel__form table.variations tr,
.product-buy-panel__form table.variations th,
.product-buy-panel__form table.variations td,
.guided-product-hero__form table.variations tbody,
.guided-product-hero__form table.variations tr,
.guided-product-hero__form table.variations th,
.guided-product-hero__form table.variations td {
  display: block;
  padding: 0;
  text-align: left;
}

.product-buy-panel__form table.variations label,
.guided-product-hero__form table.variations label {
  color: var(--color-gold);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-buy-panel__form table.variations select,
.guided-product-hero__form table.variations select {
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 700;
  min-height: 58px;
  padding: 0 18px;
  width: 100%;
}

.product-buy-panel__form .reset_variations,
.guided-product-hero__form .reset_variations {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}

.product-buy-panel__form .reset_variations {
  color: var(--color-primary);
}

.guided-product-hero__form .reset_variations {
  color: rgba(255, 250, 243, 0.7);
}

.product-buy-panel__form .single_variation_wrap,
.guided-product-hero__form .single_variation_wrap {
  display: grid;
  flex: 0 0 100%;
  gap: 14px;
  max-width: 430px;
}

.product-buy-panel__form .woocommerce-variation-add-to-cart,
.guided-product-hero__form .woocommerce-variation-add-to-cart {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-buy-panel__form .single_add_to_cart_button,
.guided-product-hero__form .single_add_to_cart_button {
  align-items: center;
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  border-radius: 8px;
  color: #fff !important;
  display: inline-flex;
  justify-content: center;
  flex: 1 1 210px;
  min-height: 58px;
  min-width: 210px;
  padding: 0 28px;
  width: auto;
}

.product-buy-panel__form .single_add_to_cart_button:hover,
.guided-product-hero__form .single_add_to_cart_button:hover {
  background: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark) !important;
  color: #fff !important;
}

.guided-product-hero__form .single_add_to_cart_button {
  background: var(--color-gold) !important;
  border-color: var(--color-gold) !important;
  color: var(--color-ink) !important;
}

.guided-product-hero__form .single_add_to_cart_button:hover {
  background: #d4aa72 !important;
  border-color: #d4aa72 !important;
  color: var(--color-ink) !important;
}

.product-buy-panel__form .single_add_to_cart_button.disabled,
.product-buy-panel__form .single_add_to_cart_button:disabled,
.guided-product-hero__form .single_add_to_cart_button.disabled,
.guided-product-hero__form .single_add_to_cart_button:disabled {
  opacity: 0.58;
}

.guided-product-hero__form .single_add_to_cart_button.disabled,
.guided-product-hero__form .single_add_to_cart_button:disabled {
  background: rgba(255, 250, 243, 0.22) !important;
  border-color: rgba(255, 250, 243, 0.34) !important;
  color: rgba(255, 250, 243, 0.82) !important;
  opacity: 1;
}

.guided-product-hero__form input.qty,
.guided-product-hero__form table.variations select {
  background: rgba(255, 250, 243, 0.1);
  border-color: rgba(255, 250, 243, 0.22);
  color: #fffaf5;
}

.guided-product-hero__form table.variations label {
  color: #d4aa72;
}

.guided-product-hero__copy > .hero__actions {
  margin-top: 16px;
}

.guided-decision {
  padding-bottom: 42px;
}

.guided-flow {
  padding-top: 34px;
}

.product-trust-list {
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 30px 0 0;
  padding: 24px 0 0;
}

.product-trust-list li {
  align-items: center;
  display: flex;
  gap: 10px;
  font-weight: 700;
}

.product-trust-list li::before {
  background: var(--color-gold);
  border-radius: 999px;
  content: "";
  height: 7px;
  width: 7px;
}

.product-ritual-info__grid {
  align-items: start;
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.product-ritual-info h2,
.boutique-editorial h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
}

.product-ritual-info p:not(.eyebrow),
.boutique-editorial p {
  color: var(--color-muted);
  font-size: 18px;
}

.product-use-grid,
.product-step-row,
.boutique-columns,
.guided-decision__grid,
.guided-flow__row {
  display: grid;
  gap: 18px;
}

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

.product-use-grid div,
.product-step-row div,
.boutique-columns div,
.guided-decision__panel,
.guided-flow__row div {
  background: rgba(255, 250, 243, 0.7);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 34px);
}

.product-use-grid span,
.product-step-row span,
.guided-flow__row span {
  color: var(--color-gold);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.product-use-grid strong,
.product-step-row h3,
.boutique-columns h3,
.guided-flow__row h3 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 12px;
}

.product-use-grid p,
.product-step-row p,
.boutique-columns p,
.guided-flow__row p {
  color: var(--color-muted);
  margin: 0;
}

.product-step-row,
.boutique-columns,
.guided-flow__row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.boutique-product {
  background: #fffaf5;
}

.boutique-product__grid {
  grid-template-columns: minmax(420px, 0.86fr) minmax(360px, 0.68fr);
}

.boutique-product__image {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.boutique-product__image .product-gallery-vertical__main {
  box-shadow: none;
}

.boutique-product__image .product-gallery-vertical__main,
.boutique-product__image .product-gallery-vertical__thumb {
  border-radius: 0;
}

.boutique-product__content {
  max-width: 560px;
}

.boutique-detail-list {
  border-top: 1px solid var(--color-line);
  display: grid;
  margin-top: 38px;
}

.boutique-detail-list div {
  border-bottom: 1px solid var(--color-line);
  display: grid;
  gap: 16px;
  grid-template-columns: 120px 1fr;
  padding: 18px 0;
}

.boutique-detail-list span {
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.boutique-detail-list strong {
  color: var(--color-ink);
  font-weight: 600;
}

.boutique-editorial {
  background: #fffaf5;
}

.guided-product-hero {
  background: var(--color-primary-dark);
  color: #fffaf5;
}

.guided-product-hero__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.85fr);
}

.guided-product-hero .eyebrow {
  color: #d4aa72;
}

.guided-product-hero__copy > p {
  color: rgba(255, 250, 243, 0.76);
}

.guided-product-hero__price {
  color: #d4aa72;
}

.guided-product-hero__image {
  border-color: rgba(255, 250, 243, 0.16);
  border-radius: 0;
  box-shadow: none;
}

.guided-product-hero__image .product-gallery-vertical__main {
  background: rgba(255, 250, 243, 0.08);
  border-color: rgba(255, 250, 243, 0.16);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.guided-product-hero__image .product-gallery-vertical__thumb {
  background: rgba(255, 250, 243, 0.08);
  border-color: rgba(255, 250, 243, 0.16);
}

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

.guided-decision__panel ul {
  color: var(--color-muted);
  display: grid;
  gap: 13px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.guided-decision__panel--dark {
  background: var(--color-primary-dark);
  color: #fffaf5;
}

.guided-decision__panel--dark p:not(.eyebrow) {
  color: rgba(255, 250, 243, 0.72);
}

.guided-decision__panel--dark h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.04;
  margin: 0 0 16px;
}

.product-editorial-full,
.boutique-story,
.guided-story {
  background: var(--color-cream);
  border-top: 1px solid var(--color-line);
  padding: clamp(72px, 8vw, 128px) 0;
}

.product-editorial-full__grid,
.boutique-story,
.guided-story__grid {
  align-items: start;
  display: grid;
  gap: clamp(34px, 4vw, 72px);
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.78fr) minmax(240px, 0.42fr);
}

.product-editorial-content__intro,
.boutique-story__label,
.guided-story__grid > div:first-child {
  position: sticky;
  top: 140px;
}

.product-editorial-content h2,
.boutique-story h2,
.guided-story h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}

.product-editorial-full__body,
.boutique-story__body,
.guided-story__body {
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.78;
  max-width: none;
}

.product-editorial-full__body > *:first-child,
.boutique-story__body > *:first-child,
.guided-story__body > *:first-child {
  margin-top: 0;
}

.product-editorial-images {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 140px;
}

.product-editorial-images figure {
  background: rgba(247, 241, 234, 0.64);
  border: 1px solid rgba(222, 208, 194, 0.88);
  border-radius: 18px;
  margin: 0;
  overflow: hidden;
  padding: 12px;
}

.product-editorial-images img {
  border-radius: 12px;
  object-fit: contain;
  width: 100%;
}

.product-editorial-images__large img {
  aspect-ratio: 4 / 5;
}

.product-editorial-images__small img {
  aspect-ratio: 1 / 1;
}

.product-sticky-buy {
  background: rgba(255, 250, 243, 0.86);
  border: 1px solid rgba(222, 208, 194, 0.92);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(33, 26, 24, 0.08);
  margin-top: clamp(28px, 4vw, 46px);
  padding: 24px;
}

.product-sticky-buy span {
  color: var(--color-gold);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.product-sticky-buy h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
}

.product-sticky-buy__price {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0 18px;
}

.product-sticky-buy .button {
  width: 100%;
}

.product-sticky-buy--dark {
  background: var(--color-primary-dark);
  border-color: rgba(255, 250, 243, 0.18);
  color: #fffaf5;
}

.product-sticky-buy--dark .product-sticky-buy__price {
  color: #d4aa72;
}

.cart-hero {
  background:
    radial-gradient(circle at 72% 26%, rgba(190, 150, 100, 0.14), transparent 30%),
    linear-gradient(135deg, #fffaf5 0%, #f4eadf 100%);
  border-bottom: 1px solid var(--color-line);
}

.cart-hero__inner {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.72fr) auto;
  min-height: 300px;
  padding-bottom: clamp(54px, 7vw, 92px);
  padding-top: clamp(54px, 7vw, 92px);
}

.cart-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.5vw, 74px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 900px;
}

.cart-hero p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 24px 0 0;
  max-width: 680px;
}

.cart-assurance-strip {
  background: rgba(255, 250, 243, 0.76);
  border-bottom: 1px solid var(--color-line);
}

.cart-assurance-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cart-assurance-strip__grid > div {
  border-left: 1px solid var(--color-line);
  padding: 24px clamp(18px, 3vw, 42px);
}

.cart-assurance-strip__grid > div:first-child {
  border-left: 0;
}

.cart-assurance-strip span {
  color: var(--color-primary);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-assurance-strip p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.45;
  margin: 8px 0 0;
}

.wc-page--cart .shop-main-section {
  background: var(--color-bg);
}

.wc-page--cart .wc-wrap {
  max-width: 1320px;
}

.wc-page--cart .woocommerce {
  display: grid;
  gap: 28px;
}

.wc-page--cart .woocommerce-notices-wrapper,
.wc-page--cart .woocommerce-message,
.wc-page--cart .woocommerce-info,
.wc-page--cart .woocommerce-error {
  grid-column: 1 / -1;
}

.woocommerce-cart-form {
  min-width: 0;
}

.woocommerce-cart-form table.shop_table {
  background: rgba(255, 250, 243, 0.84);
  border: 1px solid rgba(222, 208, 194, 0.95);
  border-collapse: separate;
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(33, 26, 24, 0.07);
  overflow: hidden;
}

.woocommerce-cart-form table.shop_table th {
  background: rgba(244, 234, 223, 0.68);
  border-bottom: 1px solid var(--color-line);
  padding: 18px 20px;
}

.woocommerce-cart-form table.shop_table td {
  border-top: 1px solid rgba(222, 208, 194, 0.66);
  padding: 22px 20px;
  vertical-align: middle;
}

.woocommerce-cart-form table.shop_table tr:first-of-type td {
  border-top: 0;
}

.woocommerce-cart-form .product-thumbnail img {
  aspect-ratio: 1 / 1;
  background: #fffaf5;
  border: 1px solid rgba(222, 208, 194, 0.8);
  border-radius: 14px;
  object-fit: contain;
  width: 96px;
}

.woocommerce-cart-form .product-name a {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.08;
}

.woocommerce-cart-form .product-name a:hover {
  color: var(--color-primary);
}

.woocommerce-cart-form .product-price,
.woocommerce-cart-form .product-subtotal {
  color: var(--color-primary);
  font-weight: 800;
  white-space: nowrap;
}

.woocommerce-cart-form .quantity input.qty {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  font-weight: 800;
  min-height: 48px;
  text-align: center;
  width: 78px;
}

.woocommerce-cart-form .product-remove a.remove {
  align-items: center;
  border: 1px solid rgba(126, 43, 69, 0.18);
  border-radius: 999px;
  color: var(--color-primary) !important;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.woocommerce-cart-form .product-remove a.remove:hover {
  background: var(--color-primary);
  color: #fffaf5 !important;
}

.woocommerce-cart-form .actions {
  background: rgba(244, 234, 223, 0.42);
}

.woocommerce-cart-form .coupon {
  align-items: stretch;
  display: flex;
  gap: 10px;
}

.woocommerce-cart-form .coupon .input-text {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  min-height: 52px;
  min-width: 260px;
  padding: 0 16px;
}

.woocommerce-cart-form button.button,
.cart_totals .wc-proceed-to-checkout a.checkout-button,
.woocommerce .return-to-shop a.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
}

.cart-collaterals {
  display: grid;
  justify-items: end;
}

.cart-collaterals .cart_totals {
  background: var(--color-primary-dark);
  border: 1px solid rgba(255, 250, 243, 0.15);
  border-radius: 18px;
  box-shadow: 0 24px 72px rgba(33, 26, 24, 0.13);
  color: #fffaf5;
  max-width: 440px;
  padding: clamp(24px, 3vw, 34px);
  width: 100%;
}

.cart-collaterals .cart_totals h2 {
  color: #fffaf5;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 20px;
}

.cart-collaterals .cart_totals table.shop_table {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
}

.cart-collaterals .cart_totals table.shop_table th,
.cart-collaterals .cart_totals table.shop_table td {
  border-color: rgba(255, 250, 243, 0.18);
  color: rgba(255, 250, 243, 0.8);
  padding: 16px 0;
}

.cart-collaterals .cart_totals table.shop_table td {
  color: #fffaf5;
  font-weight: 800;
  text-align: right;
}

.cart-collaterals .cart_totals .order-total th,
.cart-collaterals .cart_totals .order-total td {
  color: #d4aa72;
  font-size: 20px;
}

.cart_totals .wc-proceed-to-checkout {
  margin: 22px 0 0;
  padding: 0;
}

.cart_totals .wc-proceed-to-checkout a.checkout-button {
  background: #fffaf5;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 900;
  width: 100%;
}

.cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
  background: #d4aa72;
  color: var(--color-primary-dark);
}

.checkout-hero {
  background:
    radial-gradient(circle at 74% 22%, rgba(190, 150, 100, 0.14), transparent 30%),
    linear-gradient(135deg, #fffaf5 0%, #f4eadf 100%);
  border-bottom: 1px solid var(--color-line);
}

.checkout-hero__inner {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.72fr) auto;
  min-height: 300px;
  padding-bottom: clamp(54px, 7vw, 88px);
  padding-top: clamp(54px, 7vw, 88px);
}

.checkout-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.4vw, 72px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 880px;
}

.checkout-hero p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 24px 0 0;
  max-width: 720px;
}

.checkout-confirmation-card {
  background: rgba(255, 250, 243, 0.74);
  border: 1px solid rgba(222, 208, 194, 0.82);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(33, 26, 24, 0.08);
  max-width: 430px;
  padding: clamp(24px, 2.4vw, 34px);
}

.checkout-confirmation-card span {
  color: var(--color-primary);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-confirmation-card p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 12px 0 22px;
}

.checkout-confirmation-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-assurance-strip {
  background: rgba(255, 250, 243, 0.8);
  border-bottom: 1px solid var(--color-line);
}

.checkout-assurance-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.checkout-assurance-strip__grid > div {
  border-left: 1px solid var(--color-line);
  padding: 24px clamp(18px, 3vw, 42px);
}

.checkout-assurance-strip__grid > div:first-child {
  border-left: 0;
}

.checkout-assurance-strip span {
  color: var(--color-primary);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-assurance-strip p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.45;
  margin: 8px 0 0;
}

.wc-page--checkout .shop-main-section {
  background: var(--color-bg);
  padding-top: clamp(58px, 6vw, 86px);
}

.wc-page--checkout .wc-wrap {
  max-width: 1320px;
}

.wc-page--checkout .wp-block-woocommerce-checkout,
.wc-page--checkout .wc-block-checkout {
  align-items: start;
  column-gap: clamp(34px, 4vw, 64px);
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1320px !important;
  width: min(1320px, calc(100vw - 72px)) !important;
}

.wc-page--checkout .wp-block-woocommerce-checkout-fields-block {
  flex-basis: auto !important;
  grid-column: 1 !important;
  max-width: none !important;
  min-width: 0 !important;
  width: auto !important;
}

.wc-page--checkout .wp-block-woocommerce-checkout-totals-block {
  align-self: start !important;
  flex-basis: auto !important;
  grid-column: 2 !important;
  max-width: none !important;
  min-width: 0 !important;
  position: sticky !important;
  top: 110px !important;
  width: auto !important;
}

.wc-page--checkout .wc-block-checkout__main,
.wc-page--checkout .wc-block-components-main,
.wc-page--checkout .wp-block-woocommerce-checkout-fields-block {
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(222, 208, 194, 0.86);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(33, 26, 24, 0.06);
  padding: clamp(24px, 3vw, 40px);
}

.wc-page--checkout .wc-block-checkout__sidebar,
.wc-page--checkout .wc-block-components-sidebar,
.wc-page--checkout .wp-block-woocommerce-checkout-totals-block {
  background: var(--color-primary-dark);
  border: 1px solid rgba(255, 250, 243, 0.15);
  border-radius: 18px;
  box-shadow: 0 24px 72px rgba(33, 26, 24, 0.13);
  color: #fffaf5;
  padding: clamp(22px, 2.6vw, 32px);
  position: sticky;
  top: 110px;
}

.wc-page--checkout .wc-block-components-title,
.wc-page--checkout h2,
.wc-page--checkout h3 {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

.wc-page--checkout .wc-block-components-sidebar .wc-block-components-title,
.wc-page--checkout .wp-block-woocommerce-checkout-totals-block .wc-block-components-title,
.wc-page--checkout .wc-block-components-sidebar h2,
.wc-page--checkout .wp-block-woocommerce-checkout-totals-block h2,
.wc-page--checkout .wc-block-components-sidebar h3 {
  color: #fffaf5;
}

.wc-page--checkout .wc-block-components-checkout-step {
  border-bottom: 1px solid rgba(222, 208, 194, 0.78);
  margin: 0;
  padding: 0 0 30px;
}

.wc-page--checkout .wc-block-components-checkout-step + .wc-block-components-checkout-step {
  padding-top: 30px;
}

.wc-page--checkout .wc-block-components-text-input input,
.wc-page--checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-page--checkout .wc-block-components-form .wc-block-components-text-input input,
.wc-page--checkout .wc-block-components-textarea,
.wc-page--checkout .wc-block-components-select .wc-block-components-select__select {
  background: #fffaf5 !important;
  border: 1px solid var(--color-line) !important;
  border-radius: 8px !important;
  min-height: 56px;
}

.wc-page--checkout .wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"],
.wc-page--checkout .wc-block-components-radio-control__input {
  accent-color: var(--color-primary);
}

.wc-page--checkout .wc-block-checkout__payment-method,
.wc-page--checkout .wc-block-components-radio-control,
.wc-page--checkout .wc-block-components-panel {
  border-color: rgba(222, 208, 194, 0.86);
}

.wc-page--checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-radio-control {
  border: 1px solid rgba(222, 208, 194, 0.78);
  border-radius: 12px;
  overflow: hidden;
}

.wc-page--checkout .wc-block-components-radio-control__option {
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(222, 208, 194, 0.78);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 18px;
}

.wc-page--checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-radio-control__option {
  border: 0 !important;
  border-bottom: 1px solid rgba(222, 208, 194, 0.72) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  min-height: 72px;
  padding: 20px 24px 20px 70px !important;
}

.wc-page--checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-radio-control__option:last-child {
  border-bottom: 0 !important;
}

.wc-page--checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-radio-control__input {
  height: 24px !important;
  left: 24px !important;
  margin: 0 !important;
  position: absolute !important;
  top: 24px !important;
  width: 24px !important;
}

.wc-page--checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-radio-control__label,
.wc-page--checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-radio-control__label-group {
  color: var(--color-ink);
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.28;
  padding-left: 0 !important;
}

.wc-page--checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-radio-control__description,
.wc-page--checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-radio-control__secondary-label {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
  margin-top: 8px;
}

.wc-page--checkout .wc-block-components-radio-control__option-checked {
  border-color: var(--color-primary);
  box-shadow: 0 14px 35px rgba(33, 26, 24, 0.08);
}

.wc-page--checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-radio-control__option-checked {
  background: #fffaf5;
  box-shadow: inset 0 0 0 1px rgba(126, 43, 69, 0.34), 0 14px 34px rgba(33, 26, 24, 0.07) !important;
}

.wc-page--checkout .wc-block-components-order-summary,
.wc-page--checkout .wp-block-woocommerce-checkout-order-summary-block {
  border: 0;
}

.wc-page--checkout .wc-block-components-order-summary-item,
.wc-page--checkout .wp-block-woocommerce-checkout-order-summary-cart-items-block {
  border-color: rgba(255, 250, 243, 0.16);
  color: rgba(255, 250, 243, 0.82);
}

.wc-page--checkout .wc-block-components-order-summary-item__image img {
  background: #fffaf5;
  border-radius: 10px;
  object-fit: cover;
}

.wc-page--checkout .wc-block-components-order-summary-item__description,
.wc-page--checkout .wc-block-components-order-summary-item__total-price,
.wc-page--checkout .wc-block-components-totals-item__value,
.wc-page--checkout .wp-block-woocommerce-checkout-totals-block .wc-block-components-formatted-money-amount,
.wc-page--checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-page--checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: #fffaf5;
}

.wc-page--checkout .wc-block-components-product-name,
.wc-page--checkout .wc-block-components-order-summary-item__description a {
  color: #fffaf5;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}

.wc-page--checkout .wc-block-components-totals-item,
.wc-page--checkout .wc-block-components-totals-wrapper,
.wc-page--checkout .wp-block-woocommerce-checkout-order-summary-coupon-form-block,
.wc-page--checkout .wp-block-woocommerce-checkout-order-summary-subtotal-block,
.wc-page--checkout .wp-block-woocommerce-checkout-order-summary-shipping-block,
.wc-page--checkout .wp-block-woocommerce-checkout-order-summary-taxes-block {
  border-color: rgba(255, 250, 243, 0.16);
  color: rgba(255, 250, 243, 0.82);
}

.wc-page--checkout .wc-block-components-totals-footer-item {
  color: #d4aa72;
}

.wc-page--checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: #d4aa72;
  font-size: 24px;
}

.wc-page--checkout .wc-block-components-checkout-place-order-button,
.wc-page--checkout .wc-block-components-button:not(.is-link) {
  align-items: center;
  background: var(--color-primary);
  border-radius: 8px;
  color: #fffaf5;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
}

.wc-page--checkout .wc-block-components-checkout-place-order-button {
  background: #fffaf5;
  color: var(--color-primary);
  width: 100%;
}

.wc-page--checkout .wc-block-components-checkout-place-order-button:hover {
  background: #d4aa72;
  color: var(--color-primary-dark);
}

.wc-page--checkout .wc-block-components-checkout-return-to-cart-button {
  color: var(--color-ink);
  font-weight: 800;
}

.wc-page--checkout .wc-block-components-checkout-step__description,
.wc-page--checkout .wc-block-components-validation-error {
  color: var(--color-muted);
}

.wc-page--order-received .checkout-hero__inner {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 430px);
}

.wc-page--order-received .shop-main-section {
  padding-bottom: clamp(72px, 8vw, 120px);
}

.wc-page--order-received .wc-wrap {
  max-width: 980px;
}

.wc-page--order-received .woocommerce-order {
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(222, 208, 194, 0.88);
  border-radius: 20px;
  box-shadow: 0 26px 80px rgba(33, 26, 24, 0.08);
  padding: clamp(30px, 4vw, 56px);
}

.wc-page--order-received .woocommerce-thankyou-order-received {
  align-items: center;
  color: var(--color-ink);
  display: flex;
  font-size: 20px;
  font-weight: 850;
  gap: 12px;
  line-height: 1.35;
  margin: 0 0 26px;
}

.wc-page--order-received .woocommerce-thankyou-order-received::before {
  align-items: center;
  background: var(--color-primary);
  border-radius: 999px;
  color: #fffaf5;
  content: "✓";
  display: inline-flex;
  flex: 0 0 34px;
  font-size: 18px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.wc-page--order-received .woocommerce-order-overview {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
}

.wc-page--order-received .woocommerce-order-overview li {
  border-right: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  margin: 0;
  min-width: 0;
  padding: 18px 16px;
  text-transform: uppercase;
}

.wc-page--order-received .woocommerce-order-overview li:last-child {
  border-right: 0;
}

.wc-page--order-received .woocommerce-order-overview strong {
  color: var(--color-ink);
  display: block;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.25;
  margin-top: 6px;
  text-transform: none;
  overflow-wrap: anywhere;
}

.wc-page--order-received .woocommerce-order-details,
.wc-page--order-received .woocommerce-customer-details,
.wc-page--order-received .woocommerce-bacs-bank-details {
  margin-top: 34px;
}

.wc-page--order-received .woocommerce-order-details__title,
.wc-page--order-received .woocommerce-column__title,
.wc-page--order-received .wc-bacs-bank-details-heading {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 18px;
}

.wc-page--order-received table.shop_table {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
}

.wc-page--order-received table.shop_table th,
.wc-page--order-received table.shop_table td {
  border-color: rgba(222, 208, 194, 0.8);
  padding: 16px 18px;
}

.wc-page--order-received table.shop_table td.product-name {
  width: 72%;
}

.wc-page--order-received .tarot-order-item-line {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 76px minmax(0, 1fr);
}

.wc-page--order-received .tarot-order-item-thumb {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(222, 208, 194, 0.82);
  border-radius: 10px;
  display: flex;
  height: 76px;
  justify-content: center;
  overflow: hidden;
  width: 76px;
}

.wc-page--order-received .tarot-order-item-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.wc-page--order-received .tarot-order-item-name {
  min-width: 0;
}

.wc-page--order-received table.shop_table tfoot th,
.wc-page--order-received table.shop_table tfoot td {
  background: rgba(244, 234, 223, 0.48);
}

.wc-page--order-received .woocommerce-customer-details address {
  background: #fffaf5;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  color: var(--color-muted);
  font-style: normal;
  line-height: 1.65;
  padding: 22px;
}

.woocommerce .cart-empty {
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: 0 18px 54px rgba(33, 26, 24, 0.08);
  color: var(--color-muted);
  font-size: 18px;
  padding: 34px;
  text-align: center;
}

.woocommerce-cart-form table.shop_table,
.woocommerce-checkout table.shop_table,
.woocommerce table.shop_table {
  border-color: var(--color-line);
  border-radius: 14px;
  overflow: hidden;
}

.woocommerce table.shop_table th {
  color: var(--color-primary);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  min-height: 48px;
}

.wc-page--cart .woocommerce {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
}

.wc-page--cart .woocommerce-cart-form {
  grid-column: 1;
}

.wc-page--cart .cart-collaterals {
  align-self: start;
  grid-column: 2;
  grid-row: 2;
  position: sticky;
  top: 110px;
}

.wc-page--cart .woocommerce-cart-form table.shop_table {
  border-radius: 18px;
}

.wc-page--cart .cart-collaterals .cart_totals table.shop_table {
  border-radius: 0;
}

@media (min-width: 1041px) and (max-width: 1400px) {
  .home-hero__inner {
    min-height: 560px;
    padding-bottom: 34px;
  }

  .home-hero__content {
    transform: translateY(4px);
  }

  .hero-benefits {
    margin-bottom: 18px;
  }

  .blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__link {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(210px, 0.72fr) auto;
  }

  .blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__media img {
    min-height: 210px;
  }

  .blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__body {
    justify-content: flex-start;
    padding: 26px 30px 30px;
  }

  .blog-feature-card:not(.blog-feature-card--large) h3 {
    font-size: 26px;
  }

  .consultation-rate-card span {
    font-size: 42px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .final-cta .hero__actions {
    margin-top: 34px;
  }
}

@media (max-width: 1040px) {
  .site-header__inner {
    grid-template-columns: 1fr 44px;
  }

  .cart-hero__inner,
  .checkout-hero__inner,
  .wc-page--cart .woocommerce {
    grid-template-columns: 1fr;
  }

  .cart-hero__inner,
  .checkout-hero__inner {
    align-items: start;
  }

  .cart-assurance-strip__grid,
  .checkout-assurance-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-assurance-strip__grid > div:nth-child(odd),
  .checkout-assurance-strip__grid > div:nth-child(odd) {
    border-left: 0;
  }

  .checkout-assurance-strip__grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--color-line);
  }

  .wc-page--cart .woocommerce-cart-form,
  .wc-page--cart .cart-collaterals {
    grid-column: 1;
  }

  .wc-page--cart .cart-collaterals {
    grid-row: auto;
    justify-items: stretch;
    position: static;
  }

  .cart-collaterals .cart_totals {
    max-width: none;
  }

  .wc-page--checkout .wp-block-woocommerce-checkout,
  .wc-page--checkout .wc-block-checkout {
    grid-template-columns: 1fr !important;
    width: min(100%, calc(100vw - 36px)) !important;
  }

  .wc-page--checkout .wp-block-woocommerce-checkout-fields-block,
  .wc-page--checkout .wp-block-woocommerce-checkout-totals-block {
    grid-column: 1 !important;
  }

  .wc-page--checkout .wc-block-checkout__sidebar,
  .wc-page--checkout .wc-block-components-sidebar,
  .wc-page--checkout .wp-block-woocommerce-checkout-totals-block {
    position: static;
  }

  .wc-page--order-received .checkout-hero__inner {
    grid-template-columns: 1fr;
  }

  .wc-page--order-received .woocommerce-order-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wc-page--order-received .woocommerce-order-overview li:nth-child(2n) {
    border-right: 0;
  }

  .wc-page--order-received .woocommerce-order-overview li:nth-child(n + 3) {
    border-top: 1px solid var(--color-line);
  }

  .shop-hero__inner {
    background-image: linear-gradient(90deg, rgba(247, 241, 234, 0.98) 0%, rgba(247, 241, 234, 0.93) 52%, rgba(247, 241, 234, 0.38) 100%), url("../images/tarot-ines-hero-fundido-v1.webp");
    min-height: 520px;
  }

  .shop-hero__content {
    max-width: 560px;
  }

  .menu-toggle {
    align-items: center;
    color: var(--color-primary);
    display: inline-flex;
    justify-content: center;
    min-width: 0;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .menu-toggle span {
    display: none;
  }

  .menu-toggle .menu-toggle__label {
    display: none !important;
  }

  .menu-toggle::before {
    display: none;
  }

  .menu-toggle::after {
    color: var(--color-primary);
    content: "Menú";
    display: block;
    font-size: 14px;
    font-weight: 800;
  }

  .site-nav {
    background: var(--color-paper);
    border-top: 1px solid var(--color-line);
    display: none;
    grid-column: 1 / -1;
    padding: 18px 0;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-menu {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header__actions {
    display: none;
  }

  .site-trust-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 14px;
  }

  .site-trust-strip__item:nth-child(odd) {
    border-left: 0;
  }

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

  .shop-trust-strip__grid > div:nth-child(odd) {
    border-left: 0;
  }

  .shop-trust-strip__grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--color-line);
  }

  .home-hero__inner,
  .single-post-hero__inner,
  .single-post-shell__inner,
  .single-post-cta,
  .product-premium-hero__grid,
  .boutique-product__grid,
  .guided-product-hero__grid,
  .product-ritual-info__grid,
  .guided-decision__grid,
  .product-editorial-full__grid,
  .boutique-story,
  .guided-story__grid,
  .consultation-process__grid,
  .consultation-806__inner,
  .detail-intro__grid,
  .detail-two-column__grid,
  .booking-section__grid,
  .blog-featured-post__link,
  .faq-layout,
  .legal-page__wrap,
  .service-priority__grid,
  .ritual-levels__grid,
  .shop-preview__grid,
  .testimonials-preview__grid,
  .final-cta__wrap {
    grid-template-columns: 1fr;
  }

  .product-buy-panel {
    border-left: 0;
    border-top: 1px solid var(--color-line);
    padding: 34px 0 0;
  }

  .product-editorial-content__intro,
  .boutique-story__label,
  .guided-story__grid > div:first-child,
  .product-editorial-images {
    position: static;
  }

  .final-cta__wrap {
    background-image: linear-gradient(90deg, rgba(53, 20, 31, 0.62) 0%, rgba(53, 20, 31, 0.72) 52%, rgba(53, 20, 31, 0.18) 100%), url("../images/final-cta-ritual-banner-v1.webp");
    min-height: 430px;
  }

  .home-hero__inner {
    display: flex;
    flex-direction: column;
    min-height: 720px;
    padding-left: 0;
    padding-right: 0;
  }

  .home-hero__content {
    margin-left: 0;
    max-width: none;
    padding: 56px 28px 72px;
    transform: none;
    width: 100%;
  }

  .home-hero__image {
    inset: 0;
    min-height: 100%;
    position: absolute;
  }

  .home-hero__image::after {
    background:
      linear-gradient(180deg, rgba(247, 241, 234, 0.98) 0%, rgba(247, 241, 234, 0.94) 50%, rgba(247, 241, 234, 0.7) 72%, rgba(247, 241, 234, 0.2) 100%),
      linear-gradient(90deg, rgba(247, 241, 234, 0.98) 0%, rgba(247, 241, 234, 0.92) 48%, rgba(247, 241, 234, 0.35) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
  }

  .home-hero__image img {
    object-position: 64% center;
  }

  .consultation-hero,
  .consultation-hero__content {
    min-height: 0;
  }

  .consultation-hero__media::after {
    background: linear-gradient(90deg, rgba(247, 241, 234, 0.98) 0%, rgba(247, 241, 234, 0.9) 54%, rgba(247, 241, 234, 0.28) 100%);
  }

  .consultation-hero__content {
    padding: 72px 28px;
    width: min(720px, 72vw);
  }

  .consultation-process__intro {
    position: static;
  }

  .booking-section__intro {
    position: static;
  }

  .faq-sidebar {
    position: static;
  }

  .legal-page__aside {
    position: static;
  }

  .detail-intro__grid,
  .detail-two-column__grid {
    gap: 22px;
  }

  .single-post-aside {
    position: static;
  }

  .modality-grid,
  .intention-grid,
  .product-use-grid,
  .product-step-row,
  .boutique-columns,
  .guided-flow__row,
  .consultation-mode-grid,
  .consultation-trust__grid,
  .detail-step-grid,
  .ritual-intention-grid,
  .featured-product-row,
  .ritual-card-grid,
  .testimonial-list,
  .testimonial-archive-grid,
  .home-blog__grid,
  .blog-index__grid,
  .post-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-feature-card--large {
    grid-column: 1 / -1;
  }

  .blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__link {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container,
  .wide-container,
  .site-header__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    position: relative;
    top: auto;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .site-brand__mark {
    height: 54px;
    width: 54px;
  }

  .site-brand__mark img {
    height: 54px;
    width: 54px;
  }

  .site-brand__text strong {
    font-size: 22px;
  }

  .site-trust-strip__inner {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .site-trust-strip__item,
  .site-trust-strip__item:nth-child(odd) {
    align-items: center;
    border-left: 1px solid rgba(222, 208, 194, 0.82);
    display: flex;
    flex: initial;
    flex-direction: column;
    gap: 7px;
    justify-content: center;
    min-height: 86px;
    padding: 12px 8px;
    text-align: center;
  }

  .site-trust-strip__item:nth-child(odd) {
    border-left: 0;
  }

  .site-trust-strip__item:nth-child(n + 3) {
    border-top: 1px solid rgba(222, 208, 194, 0.82);
  }

  .site-trust-strip__item svg {
    height: 27px;
    width: 27px;
  }

  .site-trust-strip__item span {
    font-size: 12px;
    line-height: 1.22;
  }

  .shop-trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .shop-trust-strip__grid > div,
  .shop-trust-strip__grid > div:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }

  .shop-trust-strip__grid > div:first-child {
    border-top: 0;
  }

  .cart-hero__inner {
    min-height: 0;
    padding-bottom: 52px;
    padding-top: 52px;
  }

  .checkout-hero__inner {
    min-height: 0;
    padding-bottom: 52px;
    padding-top: 52px;
  }

  .cart-hero h1 {
    font-size: 42px;
  }

  .checkout-hero h1 {
    font-size: 42px;
  }

  .cart-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .checkout-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .checkout-confirmation-card {
    max-width: none;
  }

  .cart-assurance-strip__grid,
  .checkout-assurance-strip__grid {
    grid-template-columns: 1fr;
  }

  .cart-assurance-strip__grid > div,
  .cart-assurance-strip__grid > div:nth-child(odd),
  .checkout-assurance-strip__grid > div,
  .checkout-assurance-strip__grid > div:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }

  .cart-assurance-strip__grid > div:first-child,
  .checkout-assurance-strip__grid > div:first-child {
    border-top: 0;
  }

  .woocommerce-cart-form .coupon {
    flex-direction: column;
  }

  .woocommerce-cart-form .coupon .input-text,
  .woocommerce-cart-form button.button,
  .woocommerce .return-to-shop a.button {
    width: 100%;
  }

  .wc-page--order-received .woocommerce-order {
    padding: 24px 18px;
  }

  .wc-page--order-received .woocommerce-order-overview {
    grid-template-columns: 1fr;
  }

  .wc-page--order-received .woocommerce-order-overview li,
  .wc-page--order-received .woocommerce-order-overview li:nth-child(2n) {
    border-right: 0;
  }

  .wc-page--order-received .woocommerce-order-overview li + li {
    border-top: 1px solid var(--color-line);
  }

  .wc-page--order-received .tarot-order-item-line {
    gap: 12px;
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .wc-page--order-received .tarot-order-item-thumb {
    height: 58px;
    width: 58px;
  }

  .shop-hero__inner {
    background-image: linear-gradient(180deg, rgba(247, 241, 234, 0.98) 0%, rgba(247, 241, 234, 0.95) 56%, rgba(247, 241, 234, 0.62) 100%), url("../images/tarot-ines-hero-fundido-v1.webp");
    background-position: center right;
    min-height: 0;
  }

  .shop-hero__content {
    padding: 58px 0;
  }

  .shop-hero h1 {
    font-size: 42px;
  }

  .shop-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .home-hero__inner {
    min-height: 0;
    padding-left: 0;
  }

  .product-premium-hero,
  .boutique-product,
  .guided-product-hero {
    padding: 48px 0;
  }

  .product-gallery-vertical {
    gap: 14px;
    grid-template-columns: 1fr;
    max-width: none;
  }

  .product-gallery-vertical__thumbs {
    display: flex;
    order: 2;
    overflow-x: auto;
  }

  .product-gallery-vertical__thumb {
    flex: 0 0 72px;
  }

  .product-gallery-vertical__main img {
    max-height: 430px;
  }

  .product-buy-panel h1,
  .boutique-product h1,
  .guided-product-hero h1 {
    font-size: 42px;
  }

  .product-use-grid,
  .product-step-row,
  .boutique-columns,
  .guided-flow__row {
    grid-template-columns: 1fr;
  }

  .boutique-detail-list div {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    font-size: 42px;
    max-width: 350px;
  }

  .single-post-hero {
    padding: 48px 0;
  }

  .single-post-hero h1 {
    font-size: 42px;
  }

  .single-post-hero__image img {
    aspect-ratio: 16 / 10;
  }

  .single-post-content {
    border-radius: 14px;
    padding: 28px 22px;
  }

  .single-post-cta {
    border-radius: 14px;
  }

  .home-hero__lead {
    font-size: 18px;
    max-width: 350px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .trust-strip__inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .trust-strip__inner::-webkit-scrollbar {
    display: none;
  }

  .trust-strip span {
    flex: 0 0 auto;
  }

  .content-section {
    padding: 62px 0;
  }

  .service-priority .wide-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .priority-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .priority-card h3 {
    font-size: 34px;
    margin-top: 30px;
  }

  .consultation-hero__media {
    opacity: 0.36;
  }

  .consultation-hero__media::after {
    background: rgba(247, 241, 234, 0.86);
  }

  .consultation-hero__content {
    padding: 58px 18px;
    width: 100%;
  }

  .consultation-hero h1 {
    font-size: 42px;
  }

  .consultation-hero__proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .consultation-mode-card,
  .consultation-mode-card:first-child {
    border-left: 0;
    border-top: 1px solid var(--color-line);
    min-height: 0;
    padding: 26px 0;
  }

  .consultation-mode-card:first-child {
    border-top: 0;
  }

  .consultation-steps div {
    grid-template-columns: 54px 1fr;
  }

  .consultation-steps p {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .modality-grid,
  .intention-grid,
  .consultation-mode-grid,
  .consultation-trust__grid,
  .detail-step-grid,
  .ritual-intention-grid,
  .featured-product-row,
  .ritual-card-grid,
  .product-mini-grid,
  .testimonial-list,
  .testimonial-archive-grid,
  .home-blog__grid,
  .blog-index__grid,
  .post-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .ritual-levels__header,
  .featured-shop__header,
  .testimonials-preview__header,
  .home-blog__header,
  .single-related-posts__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-feature-card--large {
    grid-column: auto;
    grid-row: auto;
  }

  .blog-feature-card--large .blog-feature-card__link,
  .blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__link {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero__actions,
  .hero__actions .button,
  .final-cta .button {
    width: 100%;
  }

  .final-cta__content {
    justify-self: start;
    padding: 42px 0;
  }

  .hero__actions .button,
  .final-cta .button {
    justify-content: center;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__newsletter {
    grid-column: auto;
  }

  .site-footer__brand-row {
    grid-template-columns: 78px 1fr;
  }

  .site-footer__brand-row img {
    height: 78px;
    width: 78px;
  }

  .footer-newsletter-form {
    grid-template-columns: 1fr;
  }

  .wp-content {
    font-size: 17px;
  }
}

@media (min-width: 901px) {
  .home-blog .blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__link {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(260px, 0.72fr) auto;
  }

  .home-blog .blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__media {
    min-height: 260px;
  }

  .home-blog .blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__media img {
    height: 100%;
    min-height: 260px;
    width: 100%;
  }

  .home-blog .blog-feature-card:not(.blog-feature-card--large) .blog-feature-card__body {
    justify-content: flex-start;
  }
}
