/** Shopify CDN: Minification failed

Line 48:0 All "@import" rules must come first
Line 479:13 Expected identifier but found whitespace
Line 479:22 Unexpected "0.7s"

**/
/* ==========================================================================
   Vaishnavi Estate — Pure Coffee Landing Page
   Design language: "Estate Manifest" — grounded in the working documents
   of a 1928 Coorg coffee estate: grading ledgers, jute-sack stamps, brass
   filter-coffee ware, and the deep red of a ripe coffee cherry before it
   is ever roasted. Ledger hairlines carry structure; the estate stamp is
   the signature mark, echoed at the hero and again at the newsletter.
   ========================================================================== */

:root {
  /* ---- Color tokens -------------------------------------------------- */
  --vs-ink:            #1F1712; /* roasted-bean ink, near-black brown */
  --vs-ink-soft:        #382A21;
  --vs-parchment:       #EFE6D8; /* aged estate ledger paper */
  --vs-parchment-soft:  #F8F3EA; /* lighter card tint */
  --vs-cherry:          #8C2F2F; /* unroasted coffee cherry red */
  --vs-cherry-dark:     #6E2323;
  --vs-moss:            #445940; /* Coorg hillside green */
  --vs-brass:           #A9793C; /* filter-coffee tumbler brass */
  --vs-brass-light:     #C79A5C;
  --vs-cream:           #F6F0E4; /* text on dark grounds */
  --vs-line:            rgba(31, 23, 18, 0.14);
  --vs-line-on-dark:    rgba(246, 240, 228, 0.18);
  --vs-shadow:          0 12px 32px rgba(31, 23, 18, 0.10);
  --vs-shadow-soft:     0 6px 18px rgba(31, 23, 18, 0.08);

  /* ---- Type tokens ----------------------------------------------------- */
  --vs-font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --vs-font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --vs-font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* ---- Layout tokens ----------------------------------------------------- */
  --vs-radius-lg: 20px;
  --vs-radius-md: 12px;
  --vs-radius-sm: 8px;
  --vs-container: 1180px;
  --vs-gutter: clamp(20px, 5vw, 64px);
}

/* ---- Font loading ------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Public+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ---- Reset / base -------------------------------------------------------- */
.vs-scope, .vs-scope * { box-sizing: border-box; }
.vs-scope {
  font-family: var(--vs-font-body);
  color: var(--vs-ink);
  -webkit-font-smoothing: antialiased;
}
.vs-scope img { max-width: 100%; height: auto; display: block; }
.vs-scope a { color: inherit; }
.vs-scope svg { display: block; }

.vs-container {
  width: 100%;
  max-width: var(--vs-container);
  margin: 0 auto;
  padding-left: var(--vs-gutter);
  padding-right: var(--vs-gutter);
}

.vs-section {
  padding-top: var(--vs-pt, 64px);
  padding-bottom: var(--vs-pb, 64px);
}

@media screen and (min-width: 750px) {
  .vs-section { padding-top: var(--vs-pt-desktop, var(--vs-pt, 96px)); padding-bottom: var(--vs-pb-desktop, var(--vs-pb, 96px)); }
}

/* ---- Eyebrow / ledger labels --------------------------------------------- */
.vs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vs-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vs-brass);
  margin: 0 0 18px;
}
.vs-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

/* ---- Headings -------------------------------------------------------- */
.vs-heading {
  font-family: var(--vs-font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--vs-ink);
}
.vs-heading em { font-style: italic; font-weight: 400; color: var(--vs-cherry); }
.vs-on-dark .vs-heading { color: var(--vs-cream); }
.vs-on-dark .vs-heading em { color: var(--vs-brass-light); }

.vs-h1 { font-size: clamp(38px, 6vw, 68px); }
.vs-h2 { font-size: clamp(30px, 4.2vw, 46px); }
.vs-h3 { font-size: clamp(20px, 2.4vw, 25px); }

.vs-body { font-size: 17px; line-height: 1.7; color: var(--vs-ink-soft); max-width: 60ch; }
.vs-on-dark .vs-body { color: rgba(246, 240, 228, 0.82); }

/* ---- Buttons --------------------------------------------------------- */
.vs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--vs-font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.vs-btn:focus-visible {
  outline: 2px solid var(--vs-brass);
  outline-offset: 3px;
}
.vs-btn--primary {
  background: var(--vs-cherry);
  color: var(--vs-cream);
  box-shadow: var(--vs-shadow-soft);
}
.vs-btn--primary:hover { background: var(--vs-cherry-dark); transform: translateY(-2px); box-shadow: var(--vs-shadow); }
.vs-btn--brass {
  background: var(--vs-brass);
  color: var(--vs-ink);
}
.vs-btn--brass:hover { background: var(--vs-brass-light); transform: translateY(-2px); }
.vs-btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--vs-ink);
}
.vs-on-dark .vs-btn--outline { color: var(--vs-cream); }
.vs-btn--outline:hover { background: rgba(31, 23, 18, 0.06); }
.vs-on-dark .vs-btn--outline:hover { background: rgba(246, 240, 228, 0.08); }

/* ---- Estate stamp (signature element) --------------------------------- */
.vs-stamp {
  --size: 108px;
  width: var(--size);
  height: var(--size);
  flex-shrink: 0;
}
.vs-stamp text { font-family: var(--vs-font-mono); }
.vs-stamp .vs-stamp-ring { fill: none; stroke: currentColor; stroke-width: 1; }
.vs-stamp .vs-stamp-core { fill: currentColor; opacity: 0.06; }

/* ---- Hero -------------------------------------------------------------- */
.vs-hero {
  position: relative;
  background: var(--vs-ink);
  color: var(--vs-cream);
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.vs-hero__breadcrumb {
  position: relative;
  z-index: 2;
  font-family: var(--vs-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 22px var(--vs-gutter) 0;
  color: rgba(246, 240, 228, 0.55);
}
.vs-hero__breadcrumb a { text-decoration: none; }
.vs-hero__breadcrumb a:hover { text-decoration: underline; }
.vs-hero__breadcrumb ol { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; flex-wrap: wrap; }
.vs-hero__breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 6px; opacity: 0.5; }

.vs-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  padding: 56px var(--vs-gutter) 72px;
  max-width: var(--vs-container);
  margin: 0 auto;
  align-items: end;
}
@media screen and (min-width: 900px) {
  .vs-hero__inner { padding: 88px var(--vs-gutter) 96px; min-height: 560px; grid-template-rows: 1fr auto; }
}

.vs-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vs-hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.vs-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(31,23,18,0.35) 0%, rgba(31,23,18,0.55) 55%, rgba(31,23,18,0.92) 100%);
}
.vs-hero--no-image .vs-hero__scrim { background: var(--vs-ink); }

.vs-hero__steam {
  position: absolute;
  right: 6%;
  top: 8%;
  width: 120px;
  height: 220px;
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
}
.vs-hero__steam path {
  fill: none;
  stroke: var(--vs-cream);
  stroke-width: 1.4;
  stroke-linecap: round;
}
@media (prefers-reduced-motion: no-preference) {
  .vs-hero__steam .s1 { animation: vsSteam 7s ease-in-out infinite; }
  .vs-hero__steam .s2 { animation: vsSteam 7s ease-in-out infinite 1.4s; }
  .vs-hero__steam .s3 { animation: vsSteam 7s ease-in-out infinite 2.8s; }
}
@keyframes vsSteam {
  0% { transform: translateY(14px); opacity: 0; }
  25% { opacity: 0.55; }
  80% { opacity: 0; }
  100% { transform: translateY(-40px); opacity: 0; }
}

.vs-hero__label { color: var(--vs-brass-light); }
.vs-hero__title { max-width: 16ch; }
.vs-hero__subtitle {
  font-family: var(--vs-font-mono);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.01em;
  color: rgba(246, 240, 228, 0.78);
  margin: 0 0 34px;
  max-width: 40ch;
}
.vs-hero__subtitle .vs-no {
  color: rgba(246, 240, 228, 0.88);
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: var(--vs-cherry);
  text-decoration-thickness: 1.5px;
}
.vs-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.vs-hero__stamp {
  position: absolute;
  right: var(--vs-gutter);
  bottom: 28px;
  z-index: 2;
  color: rgba(246, 240, 228, 0.75);
  display: none;
}
@media screen and (min-width: 900px) { .vs-hero__stamp { display: block; } }

/* ---- Trust strip (ledger manifest) -------------------------------------- */
.vs-trust {
  background: var(--vs-parchment-soft);
  border-bottom: 1px solid var(--vs-line);
}
.vs-trust__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 700px) { .vs-trust__row { grid-template-columns: repeat(3, 1fr); } }
@media screen and (min-width: 1000px) { .vs-trust__row { grid-template-columns: repeat(6, 1fr); } }

.vs-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 14px;
  border-right: 1px solid var(--vs-line);
  border-bottom: 1px solid var(--vs-line);
}
@media screen and (min-width: 1000px) { .vs-trust__item:nth-child(6n) { border-right: none; } .vs-trust__item { border-bottom: none; } }
@media screen and (max-width: 999px) and (min-width: 700px) { .vs-trust__item:nth-child(3n) { border-right: none; } }
@media screen and (max-width: 699px) { .vs-trust__item:nth-child(2n) { border-right: none; } }

.vs-trust__icon { width: 30px; height: 30px; color: var(--vs-cherry); }
.vs-trust__label {
  font-family: var(--vs-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--vs-ink);
}

/* ---- Intro (editorial) --------------------------------------------------- */
.vs-intro__grid {
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 860px) {
  .vs-intro__grid { grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: start; }
}
.vs-intro__note {
  font-family: var(--vs-font-mono);
  font-size: 13px;
  line-height: 1.9;
  color: var(--vs-ink-soft);
  border-left: 1px solid var(--vs-cherry);
  padding-left: 22px;
}
.vs-intro__note strong { color: var(--vs-ink); }

/* ---- Roast guide --------------------------------------------------------- */
.vs-roasts {
  display: grid;
  gap: 22px;
}
@media screen and (min-width: 700px) { .vs-roasts { grid-template-columns: repeat(3, 1fr); } }

.vs-roast-card {
  background: var(--vs-parchment-soft);
  border-radius: var(--vs-radius-lg);
  padding: 30px 26px;
  box-shadow: var(--vs-shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vs-roast-card:hover { transform: translateY(-6px); box-shadow: var(--vs-shadow); }
.vs-roast-card__media { border-radius: var(--vs-radius-md); overflow: hidden; aspect-ratio: 4/3; background: var(--vs-parchment); display: flex; align-items: center; justify-content: center; }
.vs-roast-card__media img { width: 100%; height: 100%; object-fit: cover; }
.vs-roast-card__fallback-icon { width: 44px; height: 44px; color: var(--vs-brass); }
.vs-roast-card__name { font-family: var(--vs-font-display); font-size: 22px; margin: 0; }
.vs-roast-card__desc { font-size: 15px; line-height: 1.65; color: var(--vs-ink-soft); margin: 0; }

.vs-gauge { display: flex; flex-direction: column; gap: 8px; }
.vs-gauge__label { font-family: var(--vs-font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--vs-ink-soft); display: flex; justify-content: space-between; }
.vs-gauge__track { height: 5px; border-radius: 999px; background: var(--vs-line); overflow: hidden; }
.vs-gauge__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--vs-brass), var(--vs-cherry-dark)); width: 0%; transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1); }

.vs-roast-card__meta { display: grid; gap: 6px; font-size: 13px; }
.vs-roast-card__meta dt { font-family: var(--vs-font-mono); text-transform: uppercase; letter-spacing: 0.05em; font-size: 11px; color: var(--vs-brass); margin: 0; }
.vs-roast-card__meta dd { margin: 0 0 8px; color: var(--vs-ink); }

/* ---- Product grid intro header ------------------------------------------- */
.vs-shop-header { text-align: left; margin-bottom: 8px; }

/* ---- Features (manifest grid) -------------------------------------------- */
.vs-features {
  display: grid;
  gap: 1px;
  background: var(--vs-line);
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-lg);
  overflow: hidden;
}
@media screen and (min-width: 700px) { .vs-features { grid-template-columns: repeat(2, 1fr); } }
@media screen and (min-width: 1040px) { .vs-features { grid-template-columns: repeat(3, 1fr); } }

.vs-feature {
  background: var(--vs-parchment-soft);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vs-on-dark .vs-feature { background: var(--vs-ink-soft); }
.vs-feature__icon { width: 26px; height: 26px; color: var(--vs-cherry); }
.vs-feature__title { font-family: var(--vs-font-display); font-size: 19px; margin: 0; }
.vs-feature__text { font-size: 14.5px; line-height: 1.6; color: var(--vs-ink-soft); margin: 0; }
.vs-on-dark .vs-feature__text { color: rgba(246,240,228,0.75); }
.vs-on-dark .vs-feature__title { color: var(--vs-cream); }

/* ---- Comparison ------------------------------------------------------- */
.vs-compare {
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-lg);
  overflow: hidden;
  background: var(--vs-parchment-soft);
}
.vs-compare__head {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  border-bottom: 1px solid var(--vs-line);
}
.vs-compare__head div { padding: 18px 16px; font-family: var(--vs-font-mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
.vs-compare__head .vs-col-pure { color: var(--vs-cream); background: var(--vs-ink); }
.vs-compare__head .vs-col-chicory { color: var(--vs-ink-soft); }
.vs-compare__head .vs-col-attr { color: transparent; }

.vs-compare__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  border-bottom: 1px solid var(--vs-line);
}
.vs-compare__row:last-child { border-bottom: none; }
.vs-compare__row > div { padding: 16px; font-size: 14px; line-height: 1.5; display: flex; align-items: center; gap: 8px; }
.vs-compare__attr { font-family: var(--vs-font-mono); font-size: 12.5px; color: var(--vs-ink-soft); }
.vs-compare__pure { background: rgba(140, 47, 47, 0.05); font-weight: 600; }
.vs-compare__mark { width: 16px; height: 16px; flex-shrink: 0; }
.vs-compare__mark--yes { color: var(--vs-moss); }
.vs-compare__mark--no { color: var(--vs-ink-soft); opacity: 0.5; }

.vs-compare__footer {
  padding: 22px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--vs-line);
}

@media screen and (max-width: 640px) {
  .vs-compare__head .vs-col-attr, .vs-compare__attr { display: none; }
  .vs-compare__head { grid-template-columns: 1fr 1fr; }
  .vs-compare__row { grid-template-columns: 1fr 1fr; }
  .vs-compare__row > div:first-child { grid-column: 1 / -1; background: var(--vs-parchment); font-family: var(--vs-font-mono); font-size: 12px; color: var(--vs-ink-soft); padding-bottom: 4px; }
}

/* ---- Newsletter --------------------------------------------------------- */
.vs-newsletter {
  background: var(--vs-ink);
  color: var(--vs-cream);
  text-align: center;
  position: relative;
}
.vs-newsletter__inner { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.vs-newsletter .vs-eyebrow { justify-content: center; color: var(--vs-brass-light); }
.vs-newsletter__form {
  display: flex;
  width: 100%;
  max-width: 440px;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.vs-newsletter__field {
  flex: 1 1 240px;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid var(--vs-line-on-dark);
  background: rgba(246, 240, 228, 0.06);
  color: var(--vs-cream);
  font-family: var(--vs-font-body);
  font-size: 15px;
}
.vs-newsletter__field::placeholder { color: rgba(246, 240, 228, 0.5); }
.vs-newsletter__field:focus-visible { outline: 2px solid var(--vs-brass-light); outline-offset: 2px; }
.vs-newsletter__note { font-size: 12.5px; color: rgba(246, 240, 228, 0.5); margin-top: 14px; }
.vs-newsletter__success { font-family: var(--vs-font-mono); font-size: 13px; color: var(--vs-brass-light); margin-top: 14px; }
.vs-newsletter__stamp { margin: 0 auto 22px; color: rgba(246, 240, 228, 0.65); }

/* ---- Reveal-on-scroll utility -------------------------------------------- */
.vs-reveal{
    opacity:1;
    transform:none;
}
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.vs-reveal.vs-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .vs-reveal { opacity: 1; transform: none; transition: none; }
  .vs-hero__steam { display: none; }
  .vs-gauge__fill { transition: none; }
}

.vs-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Skip-friendly focus states across scope ----------------------------- */
.vs-scope a:focus-visible,
.vs-scope button:focus-visible,
.vs-scope input:focus-visible {
  outline: 2px solid var(--vs-brass);
  outline-offset: 2px;
}
