.pfa-shell {
  --pfa-max: 1540px;
  --pfa-paper: #fbfaf6;
  --pfa-ink: #143f32;
  --pfa-deep: #103f31;
  --pfa-soft: #f3f4ef;
  --pfa-mint: #dfe9e1;
  --pfa-line: #dfe1da;
  --pfa-muted: #647069;
  --pfa-button-text: #fff;
  --pfa-hero-kicker: #fff;
  --pfa-hero-title: #fff;
  --pfa-hero-text: #edf3ef;
  --pfa-hero-overlay-start: rgba(18, 52, 42, .82);
  --pfa-hero-overlay-mid: rgba(18, 52, 42, .56);
  --pfa-hero-overlay-soft: rgba(18, 52, 42, .06);
  --pfa-hero-overlay-end: rgba(18, 52, 42, 0);
  --pfa-hero-overlay-fade: 62%;
  --pfa-section-title: #143f32;
  --pfa-section-subtitle: #647069;
  --pfa-feature-kicker: #36594d;
  --pfa-feature-title: #143f32;
  --pfa-feature-text: #586b63;
  --pfa-product-name: #143f32;
  --pfa-product-meta: #637169;
  --pfa-guide-kicker: #fff;
  --pfa-guide-title: #fff;
  --pfa-guide-text: #dbe7e1;
  --pfa-routine-title: #fff;
  --pfa-routine-note: #e1e8e4;
  --pfa-serif: "Cormorant Garamond", Georgia, serif;
  --pfa-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pfa-cols: 3;
  --pfa-cols-tablet: 2;
  --pfa-cols-mobile: 1;
  --pfa-col-gap: 22px;
  --pfa-row-gap: 52px;
  --pfa-image-ratio: 1.23/1;
  --pfa-image-fit: cover;
  --pfa-card-radius: 0px;
  --pfa-hero-height: 690px;
  --pfa-hero-position: center center;
  width: 100%;
  overflow: clip;
  background: var(--pfa-paper);
  color: var(--pfa-ink);
  font-family: var(--pfa-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.pfa-shell,
.pfa-shell * {
  box-sizing: border-box;
}

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

.pfa-shell a {
  color: inherit;
  text-decoration: none;
}

.pfa-shell button {
  font: inherit;
}

.pfa-shell .pfa-wrap {
  width: min(calc(100% - 48px), var(--pfa-max));
  margin-inline: auto;
}

.pfa-shell .pfa-breadcrumb {
  padding: 22px 0 20px;
  color: #8a948e;
  font-size: 11px;
  letter-spacing: .04em;
}

.pfa-shell .pfa-breadcrumb span {
  margin: 0 8px;
  color: #b0b7b2;
}

.pfa-shell .pfa-hero {
  position: relative;
  min-height: var(--pfa-hero-height);
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  background-color: #d9dfd9;
  background-image: var(--pfa-hero-desktop-image, none);
  background-position: var(--pfa-hero-position);
  background-size: cover;
  background-repeat: no-repeat;
}

.pfa-shell .pfa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--pfa-hero-overlay-start) 0%, var(--pfa-hero-overlay-mid) 26%, var(--pfa-hero-overlay-soft) var(--pfa-hero-overlay-fade), var(--pfa-hero-overlay-end) 100%);
}

.pfa-shell .pfa-hero-copy {
  width: min(620px, 48%);
  padding: clamp(86px, 9vw, 145px) 0 70px clamp(34px, 5vw, 86px);
  color: var(--pfa-hero-title);
}

.pfa-shell .pfa-kicker {
  margin: 0 0 21px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.pfa-shell .pfa-hero .pfa-kicker {
  color: var(--pfa-hero-kicker) !important;
}

.pfa-shell .pfa-hero h1,
.pfa-shell .pfa-display {
  margin: 0;
  font-family: var(--pfa-serif);
  font-weight: 500;
  letter-spacing: -.035em;
}

.pfa-shell .pfa-hero h1 {
  max-width: 560px;
  color: var(--pfa-hero-title) !important;
  font-size: clamp(62px, 6vw, 104px);
  line-height: .86;
}

.pfa-shell .pfa-hero-text {
  max-width: 485px;
  margin: 28px 0 0;
  color: var(--pfa-hero-text) !important;
  font-size: 14px;
  line-height: 1.7;
}

.pfa-shell .pfa-surface {
  padding: 78px 0 86px;
}

.pfa-shell .pfa-section-title {
  margin: 0;
  color: var(--pfa-section-title) !important;
  font-family: var(--pfa-serif);
  font-size: clamp(38px, 3.15vw, 54px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
}

.pfa-shell .pfa-section-sub {
  margin: 8px 0 26px;
  color: var(--pfa-section-subtitle) !important;
  font-size: 13px;
}

.pfa-shell .pfa-surface-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--pfa-line);
}

.pfa-shell .pfa-surface-card {
  min-height: 96px;
  padding: 26px 28px 22px;
  border-right: 1px solid var(--pfa-line);
  transition: background .25s ease;
}

.pfa-shell .pfa-surface-card:last-child {
  border-right: 0;
}

.pfa-shell .pfa-surface-card:hover {
  background: #f1f3ee;
}

.pfa-shell .pfa-surface-name {
  display: block;
  margin-bottom: 4px;
  font-family: var(--pfa-serif);
  font-size: 21px;
  line-height: 1;
}

.pfa-shell .pfa-surface-note {
  display: block;
  color: #828c86;
  font-size: 9px;
  letter-spacing: .02em;
}

.pfa-shell .pfa-feature-band {
  padding: 88px 0;
  background: var(--pfa-soft);
}

.pfa-shell .pfa-feature-card {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 680px;
  padding: 64px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--pfa-mint);
}

.pfa-shell .pfa-feature-media {
  position: relative;
  min-height: 552px;
  overflow: hidden;
  background: #fff;
}

.pfa-shell .pfa-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.pfa-shell .pfa-feature-card:hover .pfa-feature-media img {
  transform: scale(1.025);
}

.pfa-shell .pfa-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 18px 50px clamp(54px, 6vw, 112px);
}

.pfa-shell .pfa-feature-copy .pfa-kicker {
  margin-bottom: 18px;
  color: var(--pfa-feature-kicker) !important;
}

.pfa-shell .pfa-feature-copy h2 {
  max-width: 530px;
  color: var(--pfa-feature-title) !important;
  font-size: clamp(52px, 4.7vw, 78px);
  line-height: .9;
}

.pfa-shell .pfa-feature-copy p {
  max-width: 470px;
  margin: 28px 0 31px;
  color: var(--pfa-feature-text) !important;
  font-size: 14px;
  line-height: 1.7;
}

.pfa-shell .pfa-buy-row {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pfa-shell .pfa-price {
  color: var(--pfa-ink);
  font-size: 15px;
  font-weight: 750;
}

.pfa-shell .pfa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--pfa-deep);
  border-radius: 3px;
  background: var(--pfa-deep);
  color: var(--pfa-button-text) !important;
  font-size: 12px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}

.pfa-shell .pfa-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.pfa-shell .pfa-btn-light {
  border-color: #fff;
  background: #fff;
  color: var(--pfa-deep) !important;
}

.pfa-shell .pfa-products {
  padding: 98px 0 110px;
}

.pfa-shell .pfa-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 34px;
}

.pfa-shell .pfa-products-shell {
  position: relative;
  min-height: 120px;
}

.pfa-shell .pfa-products-status {
  position: absolute;
  inset: -10px 0 auto;
  height: 2px;
  overflow: hidden;
}

.pfa-shell .pfa-products-shell.is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  background: rgba(251, 250, 246, .62);
  backdrop-filter: blur(1px);
}

.pfa-shell .pfa-products-shell.is-loading .pfa-products-status::after {
  content: "";
  display: block;
  width: 36%;
  height: 100%;
  background: var(--pfa-deep);
  animation: pfa-loading 1s infinite ease-in-out;
}

@keyframes pfa-loading {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(330%); }
}

.pfa-shell .pfa-product-grid {
  display: grid;
  grid-template-columns: repeat(var(--pfa-cols), minmax(0, 1fr));
  column-gap: var(--pfa-col-gap);
  row-gap: var(--pfa-row-gap);
}

.pfa-shell .pfa-product-card {
  position: relative;
  min-width: 0;
}

.pfa-shell .pfa-product-card > a {
  display: block;
}

.pfa-shell .pfa-product-media {
  position: relative;
  aspect-ratio: var(--pfa-image-ratio);
  overflow: hidden;
  border-radius: var(--pfa-card-radius);
  background: #eef0ec;
}

.pfa-shell .pfa-product-media img {
  width: 100%;
  height: 100%;
  object-fit: var(--pfa-image-fit);
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

.pfa-shell .pfa-product-card:hover .pfa-product-media img {
  transform: scale(1.04);
}

.pfa-shell .pfa-plus {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #31564a;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 2px 12px rgba(24, 52, 43, .08);
}

.pfa-shell .pfa-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 18px 0 7px;
  color: var(--pfa-product-meta) !important;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pfa-shell .pfa-product-name {
  margin: 0;
  color: var(--pfa-product-name) !important;
  font-family: var(--pfa-serif);
  font-size: clamp(19px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.05;
}

.pfa-shell .pfa-product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.pfa-shell .pfa-product-foot .pfa-price {
  font-size: 13px;
}

.pfa-shell .pfa-colors {
  color: #68766e;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pfa-shell .pfa-pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 58px;
}

.pfa-shell .pfa-pagination-left { justify-content: flex-start; }
.pfa-shell .pfa-pagination-center { justify-content: center; }
.pfa-shell .pfa-pagination-right { justify-content: flex-end; }

.pfa-shell .pfa-pagination .page-numbers,
.pfa-shell .pfa-load-more,
.pfa-shell .pfa-page-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--pfa-line);
  border-radius: 999px;
  background: transparent;
  color: var(--pfa-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.pfa-shell .pfa-pagination a.page-numbers:hover,
.pfa-shell .pfa-load-more:hover {
  transform: translateY(-1px);
  border-color: var(--pfa-deep);
  background: var(--pfa-deep);
  color: var(--pfa-button-text);
}

.pfa-shell .pfa-pagination .page-numbers.current {
  border-color: var(--pfa-deep);
  background: var(--pfa-deep);
  color: var(--pfa-button-text);
}

.pfa-shell .pfa-pagination .dots {
  border-color: transparent;
}

.pfa-shell .pfa-load-more {
  min-width: 190px;
  cursor: pointer;
}

.pfa-shell .pfa-prev-next {
  justify-content: space-between;
}

.pfa-shell .pfa-page-status {
  border-color: transparent;
  color: var(--pfa-muted);
  font-weight: 500;
}

.pfa-shell .pfa-compare-band {
  padding: 94px 0 84px;
  background: var(--pfa-soft);
}

.pfa-shell .pfa-compare-title {
  font-size: clamp(50px, 4.2vw, 72px);
}

.pfa-shell .pfa-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 43px;
  border: 1px solid var(--pfa-line);
}

.pfa-shell .pfa-compare-card {
  padding: 30px;
  border-right: 1px solid var(--pfa-line);
}

.pfa-shell .pfa-compare-card:last-child {
  border-right: 0;
}

.pfa-shell .pfa-compare-image {
  aspect-ratio: 1.8/1;
  overflow: hidden;
  background: #e9ece6;
}

.pfa-shell .pfa-compare-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pfa-shell .pfa-compare-card h3 {
  margin: 20px 0 17px;
  font-family: var(--pfa-serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.pfa-shell .pfa-spec-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pfa-shell .pfa-spec-label {
  display: block;
  margin-bottom: 3px;
  color: #89928d;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pfa-shell .pfa-spec-value {
  display: block;
  color: #233f35;
  font-size: 10px;
  font-weight: 700;
}

.pfa-shell .pfa-guide {
  padding: 90px 0 104px;
  background: var(--pfa-soft);
}

.pfa-shell .pfa-guide-card {
  display: grid;
  grid-template-columns: 36% 64%;
  min-height: 565px;
  overflow: hidden;
  border-radius: 7px;
}

.pfa-shell .pfa-guide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 66px;
  background: var(--pfa-deep);
  color: var(--pfa-button-text);
}

.pfa-shell .pfa-guide-copy .pfa-kicker {
  color: var(--pfa-guide-kicker) !important;
}

.pfa-shell .pfa-guide-copy h2 {
  color: var(--pfa-guide-title) !important;
  font-size: clamp(48px, 4.2vw, 74px);
  line-height: .88;
}

.pfa-shell .pfa-guide-copy p {
  max-width: 395px;
  margin: 25px 0 30px;
  color: var(--pfa-guide-text) !important;
  font-size: 13px;
  line-height: 1.65;
}

.pfa-shell .pfa-guide-media {
  min-height: 565px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pfa-shell .pfa-routines {
  padding: 92px 0 100px;
}

.pfa-shell .pfa-routine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.pfa-shell .pfa-routine-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 6px;
  background: #dfe3dd;
}

.pfa-shell .pfa-routine-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 34, 27, .68), rgba(10, 34, 27, 0) 66%);
}

.pfa-shell .pfa-routine-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.pfa-shell .pfa-routine-card:hover img {
  transform: scale(1.045);
}

.pfa-shell .pfa-routine-copy {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  color: #fff;
}

.pfa-shell .pfa-routine-copy h3 {
  margin: 0 0 4px;
  color: var(--pfa-routine-title) !important;
  font-family: var(--pfa-serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.pfa-shell .pfa-routine-copy p {
  margin: 0;
  color: var(--pfa-routine-note) !important;
  font-size: 10px;
}

.pfa-shell .pfa-benefits {
  border-top: 1px solid var(--pfa-line);
  border-bottom: 1px solid var(--pfa-line);
}

.pfa-shell .pfa-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pfa-shell .pfa-benefit {
  min-height: 95px;
  padding: 27px 28px;
  border-right: 1px solid var(--pfa-line);
}

.pfa-shell .pfa-benefit:last-child {
  border-right: 0;
}

.pfa-shell .pfa-benefit strong {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
}

.pfa-shell .pfa-benefit span {
  display: block;
  color: #849089;
  font-size: 9px;
}

.pfa-empty-notice,
.pfa-requirement-notice {
  padding: 24px;
  border: 1px solid #dcdcda;
  background: #fff;
  color: #333;
}

@media (max-width: 1100px) {
  .pfa-shell .pfa-wrap {
    width: min(calc(100% - 36px), var(--pfa-max));
  }

  .pfa-shell .pfa-product-grid {
    grid-template-columns: repeat(var(--pfa-cols-tablet), minmax(0, 1fr));
  }

  .pfa-shell .pfa-feature-card {
    grid-template-columns: 55% 45%;
    min-height: 590px;
    padding: 40px;
  }

  .pfa-shell .pfa-feature-media {
    min-height: 500px;
  }

  .pfa-shell .pfa-feature-copy {
    padding-left: 44px;
  }

  .pfa-shell .pfa-guide-copy {
    padding: 48px;
  }
}

@media (max-width: 767px) {
  .pfa-shell .pfa-hero {
    background-image: var(--pfa-hero-mobile-image, var(--pfa-hero-desktop-image, none));
  }

  .pfa-shell .pfa-wrap {
    width: min(calc(100% - 28px), var(--pfa-max));
  }

  .pfa-shell .pfa-breadcrumb {
    padding: 15px 0;
  }

  .pfa-shell .pfa-hero {
    min-height: max(560px, var(--pfa-hero-height));
    background-position: var(--pfa-hero-position);
  }

  .pfa-shell .pfa-hero::before {
    background: linear-gradient(90deg, var(--pfa-hero-overlay-start), var(--pfa-hero-overlay-mid) 68%, var(--pfa-hero-overlay-soft));
  }

  .pfa-shell .pfa-hero-copy {
    width: 100%;
    padding: 82px 26px 46px;
  }

  .pfa-shell .pfa-hero h1 {
    max-width: 440px;
    font-size: clamp(58px, 18vw, 78px);
  }

  .pfa-shell .pfa-surface {
    padding: 58px 0 64px;
  }

  .pfa-shell .pfa-surface-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pfa-shell .pfa-surface-card {
    border-bottom: 1px solid var(--pfa-line);
  }

  .pfa-shell .pfa-surface-card:nth-child(2n) {
    border-right: 0;
  }

  .pfa-shell .pfa-surface-card:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .pfa-shell .pfa-feature-band {
    padding: 58px 0;
  }

  .pfa-shell .pfa-feature-card {
    display: block;
    min-height: 0;
    padding: 18px;
  }

  .pfa-shell .pfa-feature-media {
    min-height: 360px;
  }

  .pfa-shell .pfa-feature-copy {
    padding: 46px 14px 32px;
  }

  .pfa-shell .pfa-feature-copy h2 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .pfa-shell .pfa-products {
    padding: 68px 0 78px;
  }

  .pfa-shell .pfa-product-grid {
    grid-template-columns: repeat(var(--pfa-cols-mobile), minmax(0, 1fr));
  }

  .pfa-shell .pfa-product-meta {
    margin-top: 14px;
  }

  .pfa-shell .pfa-pagination {
    margin-top: 42px;
  }

  .pfa-shell .pfa-prev-next {
    justify-content: center;
  }

  .pfa-shell .pfa-compare-band {
    padding: 62px 0;
  }

  .pfa-shell .pfa-compare-grid {
    grid-template-columns: 1fr;
  }

  .pfa-shell .pfa-compare-card {
    border-right: 0;
    border-bottom: 1px solid var(--pfa-line);
  }

  .pfa-shell .pfa-compare-card:last-child {
    border-bottom: 0;
  }

  .pfa-shell .pfa-guide {
    padding: 58px 0 72px;
  }

  .pfa-shell .pfa-guide-card {
    display: flex;
    min-height: 0;
    flex-direction: column-reverse;
  }

  .pfa-shell .pfa-guide-copy {
    padding: 44px 30px;
  }

  .pfa-shell .pfa-guide-media {
    min-height: 330px;
  }

  .pfa-shell .pfa-routines {
    padding: 64px 0 70px;
  }

  .pfa-shell .pfa-routine-grid {
    grid-template-columns: 1fr;
  }

  .pfa-shell .pfa-routine-card {
    min-height: 280px;
  }

  .pfa-shell .pfa-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pfa-shell .pfa-benefit:nth-child(2n) {
    border-right: 0;
  }

  .pfa-shell .pfa-benefit:nth-child(-n+2) {
    border-bottom: 1px solid var(--pfa-line);
  }
}

@media (max-width: 480px) {
  .pfa-shell .pfa-surface-grid,
  .pfa-shell .pfa-benefit-grid {
    grid-template-columns: 1fr;
  }

  .pfa-shell .pfa-surface-card,
  .pfa-shell .pfa-benefit {
    border-right: 0;
    border-bottom: 1px solid var(--pfa-line);
  }

  .pfa-shell .pfa-surface-card:last-child,
  .pfa-shell .pfa-benefit:last-child {
    border-bottom: 0;
  }

  .pfa-shell .pfa-buy-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .pfa-shell .pfa-spec-row {
    grid-template-columns: 1fr;
  }
}
