/** Shopify CDN: Minification failed

Line 1309:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-bar (INDEX:1) */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500&display=swap');

  .announcement-bar {
    background-color: var(--ann-bg, #434d34);
    padding: 10px 16px;
    text-align: center;
  }

  .announcement-bar__text {
    font-family: 'Raleway', sans-serif;
    font-size: var(--ann-size, 15px);
    font-weight: 500;
    color: var(--ann-text, #eff1e9);
    margin: 0;
    line-height: 1.4;
  }

  .announcement-bar__link {
    color: var(--ann-text, #eff1e9);
    text-decoration: none;
  }

  .announcement-bar__link:hover {
    text-decoration: underline;
  }
/* END_SECTION:announcement-bar */

/* START_SECTION:collection (INDEX:5) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:6) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:7) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:faq (INDEX:8) */
.faq {
    background-color: #eff1e9;
    padding: 80px 0;
  }

  .faq__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .faq__heading {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: #231812;
    margin-bottom: 40px;
  }

  .faq__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(35, 24, 18, 0.12);
  }

  .faq__item {
    border-bottom: 1px solid rgba(35, 24, 18, 0.12);
  }

  .faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #231812;
    user-select: none;
  }

  .faq__question::-webkit-details-marker {
    display: none;
  }

  .faq__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #434d34;
    transition: transform 0.25s ease;
  }

  .faq__icon svg {
    width: 100%;
    height: 100%;
  }

  details[open] .faq__icon {
    transform: rotate(180deg);
  }

  .faq__answer {
    padding-bottom: 20px;
  }

  .faq__answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: #5c4f46;
    line-height: 1.7;
    max-width: 68ch;
  }

  @media (max-width: 749px) {
    .faq {
      padding: 48px 0;
    }

    .faq__inner {
      padding: 0 24px;
    }
  }
/* END_SECTION:faq */

/* START_SECTION:footer (INDEX:9) */
footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  footer a {
    text-decoration: none;
    color: var(--color-foreground);
  }
  footer .footer__links,
  footer .footer__payment {
    display: flex;
    gap: 1rem;
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:10) */
header {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #434d34;
    padding: 0 48px;
    position: relative;
    z-index: 100;
  }
  header a {
    position: relative;
    text-decoration: none;
    color: var(--color-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header a sup {
    position: absolute;
    left: 100%;
    overflow: hidden;
    max-width: var(--page-margin);
  }
  header svg {
    width: 2rem;
  }
  header .header__menu,
  header .header__icons {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .header__dropdown {
    position: relative;
  }

  .header__dropdown-toggle {
    background: none;
    border: none;
    color: var(--color-foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
  }

  .header__dropdown-icon {
    width: 10px;
    height: 6px;
    transition: transform 0.2s ease;
  }

  .header__dropdown.is-open .header__dropdown-icon {
    transform: rotate(180deg);
  }

  .header__dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #434d34;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  .header__dropdown.is-open .header__dropdown-menu {
    display: block;
  }

  .header__dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    white-space: nowrap;
    color: var(--color-foreground);
    text-decoration: none;
    transition: background-color 0.15s ease;
  }

  .header__dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:11) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero (INDEX:12) */
.sh {
    position: relative;
    min-height: var(--sh-height, 100vh);
    overflow: hidden;
  }

  /* ── Background ── */
  .sh__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .sh__bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: var(--sh-bg-pos, center center);
    transform: scale(var(--sh-bg-scale, 1));
    transform-origin: center center;
  }

  .sh__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,var(--sh-overlay, 0.4));
  }

  /* ── Announcement bar ── */
  .sh__announce {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 30;
    background: rgba(10,10,8,0.85);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    text-align: center;
    padding: 9px 5%;
    font-family: var(--sh-body-font, 'Montserrat', sans-serif);
    font-size: clamp(10px, 0.9vw, 12px);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.85);
  }

  .sh__announce-link {
    color: inherit; text-decoration: none;
    transition: color 0.2s;
  }

  .sh__announce-link:hover { color: #fff; }

  /* ── Nav ── */
  .sh__nav {
    position: absolute;
    top: var(--sh-nav-top, 12px);
    left: 0; right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
  }

  .sh__nav-left { display: flex; align-items: center; gap: clamp(16px,2.5vw,36px); }
  .sh__logo { display: flex; align-items: center; text-decoration: none; }
  .sh__logo-img { height: var(--sh-logo-size,80px); width: auto; filter: brightness(0) invert(1); }

  .sh__nav-links {
    display: flex; align-items: center;
    gap: clamp(12px,2vw,28px);
    list-style: none; margin: 0; padding: 0;
  }

  .sh__nav-link {
    font-family: var(--sh-body-font, 'Montserrat', sans-serif);
    font-size: clamp(11px,1vw,13px); font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.9); text-decoration: none;
    background: none; border: none; cursor: pointer;
    transition: color 0.2s;
  }

  .sh__nav-link:hover { color: #fff; }
  .sh__nav-icons { display: flex; align-items: center; gap: clamp(12px,2vw,24px); }
  .sh__lang-form { display: flex; align-items: center; gap: 4px; }

  .sh__lang-btn {
    background: none; border: none; cursor: pointer;
    font-family: var(--sh-body-font, 'Montserrat', sans-serif);
    font-size: clamp(10px,0.9vw,12px); font-weight: 500;
    letter-spacing: 0.08em; color: rgba(255,255,255,0.6); padding: 0;
    transition: color 0.2s;
  }

  .sh__lang-btn:hover, .sh__lang-btn.is-active { color: #fff; }
  .sh__lang-sep { color: rgba(255,255,255,0.3); font-size: 11px; }

  .sh__nav-icon {
    position: relative; color: #fff;
    text-decoration: none; display: flex; align-items: center;
  }

  .sh__nav-icon svg { width: clamp(18px,2vw,24px); height: clamp(18px,2vw,24px); fill: none; stroke: #fff; stroke-width: 1.5; }

  .sh__cart-count {
    position: absolute; top: -6px; right: -8px;
    background: #ba8f61; color: #fff;
    font-family: var(--sh-body-font, 'Montserrat', sans-serif);
    font-size: 0.55rem; font-weight: 600;
    width: 15px; height: 15px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }

  /* ── Dropdown ── */
  .sh__dropdown { position: relative; }

  .sh__dropdown-toggle {
    display: inline-flex; align-items: center; gap: 5px; padding: 0;
  }

  .sh__dropdown-chevron { width: 9px; height: 5px; flex-shrink: 0; transition: transform 0.2s; opacity: 0.75; }
  .sh__dropdown.is-open .sh__dropdown-chevron { transform: rotate(180deg); opacity: 1; }

  .sh__dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%);
    background: rgba(14,10,6,0.95);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px; list-style: none; margin: 0; padding: 8px 0;
    min-width: 220px; box-shadow: 0 12px 32px rgba(0,0,0,0.4); z-index: 30;
  }

  .sh__dropdown.is-open .sh__dropdown-menu { display: block; }

  .sh__dropdown-menu li a {
    display: block; padding: 10px 18px;
    font-family: var(--sh-body-font, 'Montserrat', sans-serif);
    font-size: 11px; font-weight: 400; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.85); text-decoration: none; white-space: nowrap;
    transition: color 0.15s, background-color 0.15s;
  }

  .sh__dropdown-menu li a:hover { color: #fff; background: rgba(255,255,255,0.08); }

  /* ── Inner flex row ── */
  .sh__inner {
    position: relative; z-index: 5;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 5% clamp(40px, 6vh, 80px);
    gap: 4vw;
    box-sizing: border-box;
  }

  /* ── Left-side content ── */
  .sh__content {
    flex: 1;
    max-width: clamp(300px, 48vw, 640px);
    display: flex; flex-direction: column;
    gap: clamp(10px, 1.5vw, 18px);
    transform: translate(var(--sh-text-x, 0%), var(--sh-text-y, 0vh));
  }

  .sh__badge {
    font-family: var(--sh-body-font, 'Montserrat', sans-serif);
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: #fff78e;
  }

  .sh__heading {
    font-family: var(--sh-heading-font, 'Playfair Display', Georgia, serif);
    font-size: clamp(34px, 5vw, 76px);
    font-weight: 700; color: #fff;
    line-height: 1.12; margin: 0;
  }

  .sh__heading-accent {
    color: var(--sh-accent, #C8E44A);
    font-style: italic;
  }

  .sh__subheading {
    font-family: var(--sh-body-font, 'Montserrat', sans-serif);
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 300; color: rgba(255,255,255,0.8);
    line-height: 1.65; margin: 0;
  }

  .sh__promo {
    font-family: var(--sh-body-font, 'Montserrat', sans-serif);
    font-size: clamp(12px, 1.1vw, 15px);
    font-weight: 600;
    color: var(--sh-promo-color, #C8E44A);
    margin: 0;
    line-height: 1.5;
  }

  .sh__ctas {
    display: flex; gap: clamp(8px, 1vw, 14px);
    flex-wrap: wrap; margin-top: 2px;
  }

  .sh__btn {
    font-family: var(--sh-body-font, 'Montserrat', sans-serif);
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.07em; text-transform: uppercase;
    text-decoration: none; border-radius: 3px;
    padding: clamp(12px,1.1vw,16px) clamp(22px,2.2vw,32px);
    display: inline-flex; align-items: center; justify-content: center;
    transition: opacity 0.2s;
  }

  .sh__btn:hover { opacity: 0.85; }
  .sh__btn--primary { background: #434d34; color: #eff1e9; border: 1px solid #434d34; }
  .sh__btn--secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.55); }

  /* ── Right-side image ── */
  .sh__image-wrap {
    flex: 0 0 var(--sh-img-size, 45vw);
    width: var(--sh-img-size, 45vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 1.5vw, 20px);
    align-self: flex-end;
    transform: translate(var(--sh-img-x, 0%), var(--sh-img-y, 0vh));
    /* let image overflow the bottom slightly for that editorial feel */
    margin-bottom: -40px;
  }

  .sh__content-img {
    width: 100%; height: auto;
    display: block; object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
  }

  /* ── Mobile: image top, text below ── */
  @media (max-width: 749px) {
    .sh { min-height: auto; }
    .sh__inner {
      min-height: auto;
      flex-direction: column;
      align-items: stretch;
      padding: 0;
      gap: 0;
      margin-bottom: 0;
    }
    .sh__image-wrap {
      order: -1;
      flex: 0 0 auto;
      width: 100%;
      margin-bottom: 0;
      transform: none;
      align-items: center;
      padding-top: 70px; /* clear nav */
    }
    .sh__content-img {
      width: 100%;
      height: auto;
      max-height: 60vw;
      object-fit: contain;
      filter: drop-shadow(0 12px 32px rgba(0,0,0,0.5));
    }
    .sh__content {
      flex: 0 0 auto;
      max-width: 100%;
      padding: 24px 6% 40px;
      padding-top: 24px;
      gap: 10px;
      transform: none;
    }
    .sh__heading { font-size: clamp(28px, 8vw, 46px); }
    .sh__subheading { font-size: clamp(12px, 3.5vw, 15px); }
    .sh__promo { font-size: clamp(11px, 3vw, 14px); }
  }
/* END_SECTION:hero */

/* START_SECTION:product-buy (INDEX:15) */
.product-buy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }

  .product-buy__earth {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-buy__earth-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .product-buy__jar {
    position: relative;
    z-index: 1;
    width: 52%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.55));
    margin-top: -5%;
  }

  .product-buy__gallery {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 24px 20px;
    box-sizing: border-box;
  }

  .product-buy__gallery-main {
    width: 60%;
    margin-top: 0;
  }

  .product-buy__thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-buy__thumb {
    width: 56px;
    height: 56px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.05);
    padding: 0;
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
  }

  .product-buy__thumb.is-active { border-color: rgba(255,255,255,0.75); }
  .product-buy__thumb:hover { border-color: rgba(255,255,255,0.5); }

  .product-buy__thumb img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }

  .product-buy__panel {
    background-color: #231812;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 52px;
  }

  .product-buy__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
  }

  .product-buy__title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: #eff1e9;
    letter-spacing: 0.01em;
    line-height: 1.2;
  }

  .product-buy__desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #b8a898;
    line-height: 1.65;
  }

  .product-buy__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #d6c3b4;
  }

  .product-buy__currency {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
  }

  .product-buy__amount {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
  }

  .product-buy__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .product-buy__qty-row {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .product-buy__qty-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #7a6e65;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .product-buy__qty-wrap {
    display: flex;
    align-items: center;
    border: 1px solid rgba(214, 195, 180, 0.25);
    border-radius: 4px;
    overflow: hidden;
  }

  .product-buy__qty-btn {
    background: transparent;
    border: none;
    color: #d6c3b4;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-buy__qty-btn:hover {
    background: rgba(214, 195, 180, 0.1);
  }

  .product-buy__qty-input {
    background: transparent;
    border: none;
    border-left: 1px solid rgba(214, 195, 180, 0.25);
    border-right: 1px solid rgba(214, 195, 180, 0.25);
    color: #d6c3b4;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    width: 48px;
    height: 36px;
    -moz-appearance: textfield;
  }

  .product-buy__qty-input::-webkit-outer-spin-button,
  .product-buy__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
  }

  .product-buy__options {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .product-buy__option-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #7a6e65;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .product-buy__option-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .product-buy__option-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #d6c3b4;
    background: transparent;
    border: 1px solid rgba(214, 195, 180, 0.3);
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .product-buy__option-btn:hover {
    border-color: rgba(214, 195, 180, 0.7);
    color: #eff1e9;
  }

  .product-buy__option-btn.is-selected {
    background-color: #434d34;
    border-color: #434d34;
    color: #eff1e9;
  }

  .product-buy__btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-buy__btn-row .product-buy__form {
    display: contents;
  }

  .product-buy__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    padding: 15px 12px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    width: 100%;
    border: none;
  }

  .product-buy__btn:hover { opacity: 0.85; }

  .product-buy__btn--primary {
    background-color: #434d34;
    color: #eff1e9;
  }

  .product-buy__btn--secondary {
    background-color: transparent;
    color: #eff1e9;
    border: 1px solid rgba(214, 195, 180, 0.4);
  }

  .product-buy__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .product-buy__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding-top: 4px;
    border-top: 1px solid rgba(214, 195, 180, 0.12);
  }

  .product-buy__trust span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    color: #7a6e65;
    letter-spacing: 0.02em;
  }

  @media (max-width: 749px) {
    .product-buy {
      grid-template-columns: 1fr;
    }

    .product-buy__earth {
      height: 240px;
    }

    .product-buy__panel {
      padding: 40px 24px;
    }
  }
/* END_SECTION:product-buy */

/* START_SECTION:product-reveal (INDEX:16) */
/* ── Scroll container ── */
  .pr {
    position: relative;
    height: 300vh;
  }

  .pr__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }

  /* ── Background ── */
  .pr__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

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

  .pr__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(10,6,2,0.4);
    pointer-events: none;
  }

  /* ── Product ── */
  .pr__product-wrap {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    will-change: transform, opacity;
    pointer-events: none;
  }

  .pr__product-img {
    width: clamp(200px, 30vw, 460px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.7));
  }

  /* ── Product card ── */
  .pr__card {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%) translateX(-40px);
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.2vw, 16px);
    max-width: clamp(260px, 28vw, 380px);
    opacity: 0;
    will-change: transform, opacity;
    pointer-events: none;
  }

  .pr__card.is-active { pointer-events: auto; }

  .pr__grade {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #fff78e;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .pr__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(30px, 3.8vw, 52px);
    color: #fff;
    line-height: 1.05;
    margin: 0;
  }

  .pr__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .pr__features li {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
  }

  .pr__features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.4);
    font-size: 10px;
  }

  .pr__price {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 500;
    color: #fff;
    margin: 0;
    letter-spacing: 0.02em;
  }

  .pr__ctas {
    display: flex;
    gap: clamp(8px, 1vw, 12px);
    flex-wrap: wrap;
    margin-top: 4px;
  }

  .pr__btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    padding: clamp(10px,1vw,14px) clamp(20px,2vw,28px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }

  .pr__btn:hover { opacity: 0.85; }

  .pr__btn--primary {
    background: #434d34;
    color: #eff1e9;
    border: 1px solid #434d34;
  }

  .pr__btn--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.55);
  }

  /* Mobile */
  @media (max-width: 749px) {
    .pr { height: 400vh; }

    .pr__product-img { width: clamp(160px, 55vw, 280px); }

    .pr__card {
      top: auto;
      bottom: 8%;
      left: 5%;
      right: 5%;
      max-width: 100%;
      transform: translateY(0) translateX(-30px);
    }
  }
/* END_SECTION:product-reveal */

/* START_SECTION:search (INDEX:18) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* START_SECTION:what-is-shilajit (INDEX:24) */
.what {
    background-color: #434d34;
    padding: 80px 0;
  }

  .what__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    align-items: center;
  }

  .what__heading {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: #eff1e9;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .what__body {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: #b8c4a4;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 46ch;
  }

  .what__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid rgba(239, 241, 233, 0.5);
    color: #eff1e9;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    padding: 12px 28px;
    margin-bottom: 48px;
    transition: background-color 0.2s ease;
  }

  .what__cta:hover {
    background-color: rgba(239, 241, 233, 0.1);
  }

  .what__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    border-top: 1px solid rgba(239, 241, 233, 0.15);
    padding-top: 36px;
  }

  .what__stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .what__stat-number {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #d6c3b4;
    line-height: 1;
  }

  .what__stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #8fa080;
    letter-spacing: 0.04em;
    line-height: 1.4;
  }

  .what__right {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
  }

  .what__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .what__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .what__photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 8px;
  }

  @media (max-width: 749px) {
    .what {
      padding: 48px 0;
    }

    .what__inner {
      grid-template-columns: 1fr;
      padding: 0 24px;
      gap: 36px;
    }

    .what__right {
      order: -1;
      min-height: 280px;
    }

    .what__stats {
      gap: 20px;
    }
  }
/* END_SECTION:what-is-shilajit */

/* START_SECTION:why-shilajit (INDEX:25) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400;1,700&family=Montserrat:wght@300;400;500&display=swap');

  .why {
    background-color: #f5f3ee;
    padding: 72px 0;
  }

  .why__inner {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
    align-items: stretch;
  }

  /* Header row */
  .why__header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 12px;
  }

  .why__eyebrow {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.55rem;
    color: #231812;
    line-height: 1;
  }

  .why__eyebrow-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.82rem;
    color: #7a6e65;
    line-height: 1;
  }

  .why__body {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: #5c4f46;
    line-height: 1.65;
    max-width: 64ch;
    margin-bottom: 32px;
  }

  .why__benefits-label {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #231812;
    margin-bottom: 24px;
  }

  /* 3-column benefits grid */
  .why__benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 36px;
  }

  .why__benefit {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .why__benefit-icon {
    width: 28px;
    height: 28px;
    color: #434d34;
    margin-bottom: 4px;
    flex-shrink: 0;
  }

  .why__benefit-icon svg {
    width: 100%;
    height: 100%;
  }

  .why__benefit-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: #231812;
    line-height: 1.3;
  }

  .why__benefit-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.73rem;
    font-weight: 300;
    color: #6b5e55;
    line-height: 1.6;
  }

  /* Right side vertical text */
  .why__right {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .why__side-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 51px;
    color: #231812;
    line-height: 1.05;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: -0.01em;
    text-align: center;
    white-space: normal;
    height: 320px;
  }

  @media (max-width: 1100px) {
    .why__side-text { font-size: 36px; }
    .why__inner { grid-template-columns: 1fr 110px; }
  }

  @media (max-width: 900px) {
    .why__inner {
      grid-template-columns: 1fr;
      padding: 0 24px;
    }
    .why__right { display: none; }
    .why__benefits { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 540px) {
    .why__benefits { grid-template-columns: 1fr; }
    .why { padding: 48px 0; }
  }
/* END_SECTION:why-shilajit */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:26) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:27) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:29) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */