/* AUTO-GENERATED from outputs/clone_vaping/ai_*_clone.txt by build_components_css.py — do not edit by hand */


/* ===================== hero ===================== */

/* ── ref-hero: premium carousel — glass arrows, progress-pill dots, Ken-Burns,
   slide counter. JS (hero.js) drives autoplay/nav; pure-CSS crossfade is the
   no-JS fallback (timing keyframes injected by the PHP renderer). ── */
.ref-hero {
  position: relative;
  width: 100%;
  max-width: var(--rs-container, 1300px);
  margin: 0 auto;
  aspect-ratio: 2800 / 1000;
  border-radius: 16px;
  overflow: hidden;
  background: var(--rs-dark, #1a1a1a);
  box-shadow: 0 18px 50px -16px rgba(0, 0, 0, 0.45), 0 3px 10px rgba(0, 0, 0, 0.12);
  isolation: isolate;
}

.ref-hero-track { position: absolute; inset: 0; }

.ref-hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  overflow: hidden;
  text-decoration: none;
  will-change: opacity;
}
.ref-hero-slide:first-child { opacity: 1; }

.ref-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.001);
}
.ref-hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* subtle bottom vignette so dots/counter stay legible over bright banners */
.ref-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.06) 22%, transparent 40%);
}

/* ── progress-pill dots ── */
.ref-hero-dots {
  position: absolute;
  left: 26px;
  bottom: 22px;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.ref-hero-dot {
  width: 30px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.ref-hero-dot:hover { transform: scaleY(1.6); }
.ref-hero-dot::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: #fff;
  border-radius: inherit;
}

/* ── slide counter ── */
.ref-hero-count {
  position: absolute;
  right: 26px;
  bottom: 18px;
  z-index: 4;
  color: #fff;
  font-family: var(--rs-heading-font, sans-serif);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.ref-hero-count .cur { font-size: 18px; font-weight: 800; }
.ref-hero-count .sep { opacity: 0.45; }
.ref-hero-count .total { opacity: 0.65; font-size: 13px; }

/* ── glass prev/next arrows (injected by hero.js) ── */
.ref-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease, background 0.2s ease, transform 0.2s ease;
}
.ref-hero-arrow svg { width: 20px; height: 20px; }
.ref-hero:hover .ref-hero-arrow,
.ref-hero:focus-within .ref-hero-arrow { opacity: 1; }
.ref-hero-arrow:hover { background: rgba(255, 255, 255, 0.34); }
.ref-hero-arrow:active { transform: translateY(-50%) scale(0.9); }
.ref-hero-prev { left: 18px; }
.ref-hero-next { right: 18px; }

/* ── JS mode: class-driven crossfade + Ken-Burns + progress fill ── */
.ref-hero.is-js .ref-hero-slide {
  animation: none !important;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.ref-hero.is-js .ref-hero-slide.is-active { opacity: 1; }
.ref-hero.is-js .ref-hero-slide img { transition: transform 6.2s ease-out; }
.ref-hero.is-js .ref-hero-slide.is-active img { transform: scale(1.08); }   /* Ken Burns */
.ref-hero.is-js .ref-hero-dot { animation: none !important; background: rgba(255, 255, 255, 0.34); }
.ref-hero.is-js .ref-hero-dot.is-active { background: rgba(255, 255, 255, 0.5); }
.ref-hero.is-js .ref-hero-dot.is-active::after { animation: heroDotFill var(--hero-dur, 5500ms) linear forwards; }
@keyframes heroDotFill { from { width: 0; } to { width: 100%; } }

/* ── Responsive ── */
@media (max-width: 768px) {
  .ref-hero { aspect-ratio: 16 / 10; border-radius: 12px; }
  .ref-hero-dots { left: 14px; bottom: 13px; }
  .ref-hero-count { right: 14px; bottom: 11px; }
  .ref-hero-arrow { width: 38px; height: 38px; }
  .ref-hero-prev { left: 10px; }
  .ref-hero-next { right: 10px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .ref-hero-slide, .ref-hero-slide img, .ref-hero-dot::after { animation: none !important; transition: none !important; }
  .ref-hero.is-js .ref-hero-slide.is-active img { transform: none; }
}


/* ===================== categories ===================== */

/* ── ref-categories: self-contained, token-driven ── */

.ref-categories-section {
  width: 100%;
  padding: 48px 20px 56px;
  box-sizing: border-box;
  background: var(--rs-bg, #f5f5f5);
}

.ref-categories-inner {
  max-width: var(--rs-container, 1300px);
  margin: 0 auto;
}

/* ── Grid ── */
.ref-categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Card ── */
.ref-cat-card {
  position: relative;
  display: block;
  border-radius: var(--rs-radius, 12px);
  overflow: hidden;
  aspect-ratio: 6 / 7;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--rs-dark, #1a1a1a) 85%, var(--rs-accent-2, #7c3aed) 15%) 0%,
      var(--rs-dark, #1a1a1a) 100%
    );
  text-decoration: none;
  cursor: pointer;
  /* depth from image + dark base, not heavy shadow */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  /* default: fully visible — scroll-reveal is progressive enhancement only */
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
  outline: none;
}

/* Progressive-enhancement reveal (JS adds .is-visible) */
.ref-categories[data-reveal] .ref-cat-card {
  /* still fully visible by default */
  opacity: 1;
  transform: translateY(0);
}

/* When JS fires, cards can animate in from a slight offset */
.ref-categories[data-reveal] .ref-cat-card.is-visible {
  animation: ref-card-rise 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

@keyframes ref-card-rise {
  from {
    opacity: 0.6;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger via nth-child when JS-driven */
.ref-categories[data-reveal] .ref-cat-card:nth-child(1) { animation-delay: 0.00s; }
.ref-categories[data-reveal] .ref-cat-card:nth-child(2) { animation-delay: 0.07s; }
.ref-categories[data-reveal] .ref-cat-card:nth-child(3) { animation-delay: 0.14s; }
.ref-categories[data-reveal] .ref-cat-card:nth-child(4) { animation-delay: 0.21s; }
.ref-categories[data-reveal] .ref-cat-card:nth-child(5) { animation-delay: 0.28s; }

/* ── Hover / Focus ── */
.ref-cat-card:hover,
.ref-cat-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  /* subtle accent border glow */
  outline: 2px solid color-mix(in srgb, var(--rs-accent, #6d28d9) 60%, transparent 40%);
  outline-offset: 2px;
}

.ref-cat-card:focus-visible {
  outline: 3px solid var(--rs-accent, #6d28d9);
  outline-offset: 3px;
}

/* ── Image ── */
.ref-cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
  /* full-colour product photography — no desaturation */
  opacity: 1;
}

.ref-cat-card:hover img,
.ref-cat-card:focus-visible img {
  transform: scale(1.06);
}

/* ── Bottom gradient overlay ── */
.ref-cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.28) 38%,
    transparent 65%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

/* ── Label ── */
.ref-cat-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  font-family: var(--rs-heading-font, sans-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
  /* underline micro-interaction */
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1.5px;
  transition: background-size 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
  display: inline-block;
  padding-bottom: 2px;
}

.ref-cat-card:hover .ref-cat-label,
.ref-cat-card:focus-visible .ref-cat-label {
  background-size: 100% 1.5px;
}

/* ── Responsive: tablet (3 columns) ── */
@media (max-width: 1024px) {
  .ref-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .ref-categories-section {
    padding: 36px 16px 44px;
  }

  .ref-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .ref-cat-label {
    font-size: 13px;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
}

/* ── Responsive: mobile (2 columns) ── */
@media (max-width: 520px) {
  .ref-categories-section {
    padding: 28px 12px 36px;
  }

  .ref-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* 5th card spans full width on 2-col so nothing is orphaned awkwardly */
  .ref-cat-card:nth-child(5) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 7;
  }

  .ref-cat-label {
    font-size: 14px;
    bottom: 14px;
    left: 14px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .ref-cat-card,
  .ref-cat-card img,
  .ref-cat-label {
    transition: none;
    animation: none;
  }
}


/* ===================== brands ===================== */

/* ============================================================
   ref-brands — Brands Section
   All colors/fonts/shape via design-system tokens
   ============================================================ */

.ref-brands {
  width: 100%;
  max-width: var(--rs-container, 1300px);
  margin: 0 auto;
  padding: 40px 20px 48px;
  box-sizing: border-box;
  font-family: var(--rs-body-font, sans-serif);
}

/* ---------- Section Header ---------- */
.ref-brands-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ref-brands-head h2 {
  font-family: var(--rs-heading-font, sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--rs-text, #111);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* "View All Brands" link with arrow circle */
.ref-brands-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--rs-body-font, sans-serif);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--rs-muted, #666);
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.ref-brands-more:hover {
  color: var(--rs-accent, #7c3aed);
}

.ref-brands-more:hover .ref-brands-more-label {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Arrow circle via ::after */
.ref-brands-more::after {
  content: "›";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--rs-bg-soft, #f0f0f0);
  color: var(--rs-muted, #666);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ref-brands-more:hover::after {
  background: var(--rs-accent, #7c3aed);
  color: #fff;
  transform: translateX(2px);
}

/* ---------- Brand Cards Row ---------- */
.ref-brands-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 0 2px 10px;
}
.ref-brands-row::-webkit-scrollbar { display: none; }

/* ---------- Individual Brand Card ---------- */
.ref-brand-card {
  flex: 0 0 213px;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0;
  padding: 22px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #e3e3e3;
  box-shadow: none;
  transition:
    transform 0.35s cubic-bezier(.2, .7, .3, 1),
    box-shadow 0.35s cubic-bezier(.2, .7, .3, 1),
    border-color 0.35s ease;
  /* Fully visible by default — no hidden state */
  opacity: 1;
  position: relative;
}

.ref-brand-card img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.45s cubic-bezier(.2, .7, .3, 1);
  pointer-events: none;
  user-select: none;
}

/* Hover lift + logo scale */
.ref-brand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.ref-brand-card:hover img {
  transform: scale(1.03);
}

/* Focus state for accessibility */
.ref-brand-card:focus-visible {
  outline: 2px solid var(--rs-accent, #7c3aed);
  outline-offset: 3px;
  border-color: var(--rs-accent, #7c3aed);
}

/* ---------- Scroll-reveal — PROGRESSIVE ENHANCEMENT ONLY ----------
   Default state is fully visible (opacity:1, no transform).
   .is-visible adds a subtle entrance animation if JS adds the class.
   Content is NEVER hidden without JS.
   ------------------------------------------------------------------ */
.ref-brands[data-reveal] .ref-brand-card {
  /* already visible by default — no changes needed */
}

.ref-brands[data-reveal].is-visible .ref-brand-card {
  animation: refBrandReveal 0.55s cubic-bezier(.2, .7, .3, 1) both;
}

.ref-brands[data-reveal].is-visible .ref-brand-card:nth-child(1) { animation-delay: 0.00s; }
.ref-brands[data-reveal].is-visible .ref-brand-card:nth-child(2) { animation-delay: 0.07s; }
.ref-brands[data-reveal].is-visible .ref-brand-card:nth-child(3) { animation-delay: 0.14s; }
.ref-brands[data-reveal].is-visible .ref-brand-card:nth-child(4) { animation-delay: 0.21s; }
.ref-brands[data-reveal].is-visible .ref-brand-card:nth-child(5) { animation-delay: 0.28s; }

@keyframes refBrandReveal {
  from {
    opacity: 0.4;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .ref-brand-card { flex-basis: 180px; }
}

@media (max-width: 540px) {
  .ref-brands {
    padding: 28px 14px 36px;
  }

  .ref-brands-row {
    gap: 10px;
  }

  .ref-brands-head h2 {
    font-size: 1.125rem;
  }

  .ref-brands-more {
    font-size: 0.75rem;
  }

  .ref-brand-card {
    flex-basis: 150px;
    padding: 18px;
  }

  .ref-brand-card img {
    max-height: 100%;
  }
}


/* ===================== products ===================== */

/* ── Featured collections: tabbed product rows (pure-CSS tabs, no JS) ──────── */
.ref-products {
  max-width: var(--rs-container, 1300px);
  margin: 0 auto;
  padding: 56px 20px 60px;
  font-family: var(--rs-body-font, sans-serif);
}
.ref-products-heading {
  font-family: var(--rs-heading-font, sans-serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--rs-dark, #111);
  margin: 0 0 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

/* radios drive the tabs; kept out of flow & accessible */
.ref-tab-radio { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ── Tab bar ── */
.ref-tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 40px);
  justify-content: center;
  margin: 0 0 34px;
}
.ref-tab {
  font-family: var(--rs-heading-font, sans-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #b6b6bd;
  cursor: pointer;
  padding: 4px 2px;
  position: relative;
  transition: color 0.25s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.ref-tab::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: var(--rs-accent, #7c3aed);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1);
}
.ref-tab:hover { color: var(--rs-dark, #333); }

/* ── Panels (only the checked one shows) ── */
.ref-tab-panel { display: none; }

/* horizontal scroller of cards — 4 across on desktop, scroll for the rest */
.ref-products-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 6px;
}
.ref-products-row::-webkit-scrollbar { display: none; }
.ref-products-row > .ref-product-card { flex: 0 0 calc(25% - 18px); }

/* checked-radio → show its panel + light its tab (general-sibling, works without JS) */
#ptab-0:checked ~ .ref-tab-panels .ref-tab-panel:nth-child(1),
#ptab-1:checked ~ .ref-tab-panels .ref-tab-panel:nth-child(2),
#ptab-2:checked ~ .ref-tab-panels .ref-tab-panel:nth-child(3),
#ptab-3:checked ~ .ref-tab-panels .ref-tab-panel:nth-child(4),
#ptab-4:checked ~ .ref-tab-panels .ref-tab-panel:nth-child(5) { display: block; }

#ptab-0:checked ~ .ref-tabbar label[for="ptab-0"],
#ptab-1:checked ~ .ref-tabbar label[for="ptab-1"],
#ptab-2:checked ~ .ref-tabbar label[for="ptab-2"],
#ptab-3:checked ~ .ref-tabbar label[for="ptab-3"],
#ptab-4:checked ~ .ref-tabbar label[for="ptab-4"] { color: var(--rs-dark, #111); }
#ptab-0:checked ~ .ref-tabbar label[for="ptab-0"]::after,
#ptab-1:checked ~ .ref-tabbar label[for="ptab-1"]::after,
#ptab-2:checked ~ .ref-tabbar label[for="ptab-2"]::after,
#ptab-3:checked ~ .ref-tabbar label[for="ptab-3"]::after,
#ptab-4:checked ~ .ref-tabbar label[for="ptab-4"]::after { transform: scaleX(1); }

/* ── Clean product card (reference-style: no border, contained product photo) ── */
.ref-product-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: transparent;
  border-radius: var(--rs-radius, 12px);
  padding: 6px;
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1);
}
.ref-product-card:hover { transform: translateY(-4px); }
.ref-product-card:focus-visible { outline: 3px solid var(--rs-accent, #7c3aed); outline-offset: 3px; }

.ref-product-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: var(--rs-radius, 12px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ref-product-media img {
  width: 86%;
  height: 86%;
  object-fit: contain;            /* show the WHOLE product, never crop */
  display: block;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
  mix-blend-mode: multiply;       /* drop white product backgrounds onto the tile */
}
.ref-product-card:hover .ref-product-media img { transform: scale(1.06); }

.ref-product-title {
  font-family: var(--rs-heading-font, sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--rs-dark, #1a1a1a);
  margin: 0 0 6px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}
.ref-product-card:hover .ref-product-title { color: var(--rs-accent, #7c3aed); }

.ref-product-price {
  font-family: var(--rs-heading-font, sans-serif);
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: -0.01em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ref-products-row > .ref-product-card { flex: 0 0 calc(33.333% - 16px); }
}
@media (max-width: 680px) {
  .ref-products { padding: 40px 14px 44px; }
  .ref-products-row { gap: 14px; }
  .ref-products-row > .ref-product-card { flex: 0 0 calc(50% - 7px); }
  .ref-tabbar { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .ref-product-card, .ref-product-media img, .ref-tab::after { transition: none; }
}


/* ===================== blog ===================== */

/* ============================================================
   ref-blog — "From the Blog" section
   Uses host theme tokens; self-contained, class-prefixed "ref-"
   ============================================================ */

.ref-blog {
  width: 100%;
  background: var(--rs-bg, #ffffff);
  padding: 64px 20px 80px;
  box-sizing: border-box;
}

/* ── Section heading ── */
.ref-blog-head {
  max-width: var(--rs-container, 1300px);
  margin: 0 auto 40px;
  text-align: center;
}

.ref-blog-head h2 {
  font-family: var(--rs-heading-font, sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--rs-dark, #111111);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.ref-blog-head h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--rs-accent, #7c3aed);
  border-radius: 99px;
  margin: 10px auto 0;
}

/* ── Grid ── */
.ref-blog-grid {
  max-width: var(--rs-container, 1300px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Card ── */
.ref-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--rs-bg-soft, #f8f8f8);
  border: 1px solid var(--rs-line, #e5e5e5);
  border-radius: var(--rs-radius, 12px);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.35s cubic-bezier(.2,.7,.3,1),
    box-shadow 0.35s cubic-bezier(.2,.7,.3,1),
    border-color 0.35s ease;
  will-change: transform, box-shadow;
  outline: none;
}

.ref-blog-card:hover,
.ref-blog-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
  border-color: var(--rs-accent, #7c3aed);
}

.ref-blog-card:focus-visible {
  outline: 2px solid var(--rs-accent, #7c3aed);
  outline-offset: 2px;
}

/* ── Image wrapper ── */
.ref-blog-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--rs-line, #e5e5e5);
  flex-shrink: 0;
}

.ref-blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1);
}

.ref-blog-card:hover .ref-blog-img-wrap img,
.ref-blog-card:focus-visible .ref-blog-img-wrap img {
  transform: scale(1.05);
}

/* ── Card body ── */
.ref-blog-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
  gap: 8px;
}

/* ── Date ── */
.ref-blog-date {
  font-family: var(--rs-body-font, sans-serif);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--rs-muted, #888888);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

/* ── Title ── */
.ref-blog-body h3 {
  font-family: var(--rs-heading-font, sans-serif);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
  color: var(--rs-text, #222222);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.ref-blog-card:hover .ref-blog-body h3,
.ref-blog-card:focus-visible .ref-blog-body h3 {
  color: var(--rs-accent, #7c3aed);
}

/* ── Excerpt ── */
.ref-blog-body p {
  font-family: var(--rs-body-font, sans-serif);
  font-size: 0.875rem;
  color: var(--rs-muted, #888888);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Read More label ── */
.ref-blog-read {
  display: inline-block;
  font-family: var(--rs-body-font, sans-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rs-accent, #7c3aed);
  margin-top: 6px;
  position: relative;
  width: fit-content;
  letter-spacing: 0.01em;
}

.ref-blog-read::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rs-accent, #7c3aed);
  transition: width 0.25s ease;
  border-radius: 99px;
}

.ref-blog-card:hover .ref-blog-read::after,
.ref-blog-card:focus-visible .ref-blog-read::after {
  width: 100%;
}

/* ── Scroll-reveal progressive enhancement ── */
/* Default: fully visible — no content hidden */
.ref-blog-card {
  opacity: 1;
  transform: translateY(0);
}

/* Optional .is-visible animation (JS-added) */
.ref-blog-card.is-visible {
  animation: ref-card-rise 0.55s cubic-bezier(.2,.7,.3,1) both;
}

.ref-blog-card:nth-child(2).is-visible { animation-delay: 0.1s; }
.ref-blog-card:nth-child(3).is-visible { animation-delay: 0.2s; }

@keyframes ref-card-rise {
  from {
    opacity: 0.4;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive: tablet (2 columns) ── */
@media (max-width: 900px) {
  .ref-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .ref-blog {
    padding: 48px 16px 64px;
  }
}

/* ── Responsive: mobile (1 column) ── */
@media (max-width: 560px) {
  .ref-blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ref-blog {
    padding: 40px 14px 56px;
  }

  .ref-blog-head {
    margin-bottom: 28px;
  }

  .ref-blog-body {
    padding: 18px 18px 20px;
  }
}


/* ===================== newsletter ===================== */

/* ── ref-newsletter ─────────────────────────────────────────────────────── */

.ref-newsletter {
  width: 100%;
  background: var(--rs-bg, #ffffff);
  padding: 56px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

/* ── Scroll-reveal progressive enhancement ─────────────────────────────── */
/* Default: fully visible — no content hidden */
.ref-newsletter h2,
.ref-newsletter p,
.ref-newsletter-form {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s cubic-bezier(.2,.7,.3,1),
              transform 0.55s cubic-bezier(.2,.7,.3,1);
}

/* When JS adds .is-visible, animate from slight offset */
.ref-newsletter[data-reveal].is-visible h2 {
  animation: ref-fadeUp 0.6s cubic-bezier(.2,.7,.3,1) both;
}
.ref-newsletter[data-reveal].is-visible p {
  animation: ref-fadeUp 0.6s cubic-bezier(.2,.7,.3,1) 0.1s both;
}
.ref-newsletter[data-reveal].is-visible .ref-newsletter-form {
  animation: ref-fadeUp 0.6s cubic-bezier(.2,.7,.3,1) 0.2s both;
}

@keyframes ref-fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Heading ───────────────────────────────────────────────────────────── */
.ref-newsletter h2 {
  font-family: var(--rs-heading-font, 'Inter', sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--rs-dark, #111111);
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ── Subtext ───────────────────────────────────────────────────────────── */
.ref-newsletter p {
  font-family: var(--rs-body-font, 'Inter', sans-serif);
  font-size: 0.875rem;
  color: var(--rs-muted, #888888);
  margin: 0 0 28px;
  line-height: 1.5;
}

/* ── Form wrapper ──────────────────────────────────────────────────────── */
.ref-newsletter-form {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Email input ───────────────────────────────────────────────────────── */
.ref-newsletter-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--rs-body-font, 'Inter', sans-serif);
  font-size: 0.9rem;
  color: var(--rs-text, #222222);
  background: var(--rs-bg-soft, #f7f7f7);
  border: 1.5px solid var(--rs-line, #e0e0e0);
  border-radius: var(--rs-radius, 12px);
  padding: 13px 18px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.25s ease,
              box-shadow 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.ref-newsletter-form input[type="email"]::placeholder {
  color: var(--rs-muted, #aaaaaa);
  opacity: 1;
}

.ref-newsletter-form input[type="email"]:hover {
  border-color: var(--rs-accent, #6c3fff);
}

.ref-newsletter-form input[type="email"]:focus {
  border-color: var(--rs-accent, #6c3fff);
  box-shadow: 0 0 0 3px rgba(108, 63, 255, 0.14);
  background: var(--rs-bg, #ffffff);
}

/* ── Subscribe button ──────────────────────────────────────────────────── */
.ref-newsletter-form button[type="submit"] {
  flex: 0 0 auto;
  font-family: var(--rs-heading-font, 'Inter', sans-serif);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--rs-bg, #ffffff);
  background: var(--rs-dark, #111111);
  border: none;
  border-radius: var(--rs-radius-button, 60px);
  padding: 13px 28px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1),
              box-shadow 0.35s cubic-bezier(.2,.7,.3,1),
              background 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.ref-newsletter-form button[type="submit"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  background: var(--rs-accent, #6c3fff);
}

.ref-newsletter-form button[type="submit"]:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.ref-newsletter-form button[type="submit"]:focus-visible {
  outline: 2.5px solid var(--rs-accent, #6c3fff);
  outline-offset: 3px;
}

/* Ripple shimmer on button hover */
.ref-newsletter-form button[type="submit"]::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.55s ease;
}

.ref-newsletter-form button[type="submit"]:hover::after {
  background-position: 200% 0;
}

/* ── Responsive: stack on mobile ───────────────────────────────────────── */
@media (max-width: 520px) {
  .ref-newsletter {
    padding: 44px 20px 48px;
  }

  .ref-newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .ref-newsletter-form input[type="email"],
  .ref-newsletter-form button[type="submit"] {
    width: 100%;
    text-align: center;
  }

  .ref-newsletter-form button[type="submit"] {
    padding: 14px 28px;
  }
}

@media (max-width: 360px) {
  .ref-newsletter h2 {
    font-size: 1.1rem;
  }
}

/* ===================== source-clone components ===================== */

.vf-banner-mosaic,
.vf-source-header,
.vf-source-offer,
.vf-source-banner-row,
.vf-text-band,
.vf-products,
.vf-feature-pair,
.vf-cat-strip,
.vf-banner-grid,
.vf-source-gallery,
.vf-source-footer,
.vf-link-footer {
  box-sizing: border-box;
  color: var(--rs-text, #1a1a1a);
  font-family: var(--rs-body-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  letter-spacing: 0;
}

body.rsvs-global-shell > .rs-marquee,
body.rsvs-global-shell > .rs-notice,
body.rsvs-global-shell > .rs-header,
body.rsvs-global-shell > #rs-drawer,
body.rsvs-global-shell > .rs-overlay {
  display: none !important;
}
body.rsvs-global-shell > .rs-footer {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
body.rsvs-global-shell > .rs-footer > :not(.rsvs-global-footer) {
  display: none !important;
}
body.rsvs-global-shell .rsvs-global-header {
  position: relative;
  z-index: 60;
  background: #fff;
}
body.rsvs-global-shell .rsvs-global-footer {
  position: relative;
  z-index: 2;
  background: #fff;
}

.vf-source-header {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
}
.vf-source-topbanner {
  display: block;
  line-height: 0;
  background: var(--vf-topbanner-bg, #0b0b0b);
  text-align: center;
}
.vf-source-topbanner img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  max-height: 88px;
}
.vf-source-notice {
  background: #060606;
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
  padding: 14px 12px;
}
.vf-source-utility {
  background: var(--vf-utility-bg, #f5f5f5);
  border-bottom: 1px solid var(--vf-utility-line, #e9ecef);
}
.vf-source-utility-inner {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  column-gap: 22px;
}
.vf-source-utility-inner a {
  color: var(--vf-utility-color, #444);
  font-size: 12px;
  line-height: 34px;
  text-decoration: none;
  white-space: nowrap;
}
.vf-source-utility-inner a:hover {
  color: var(--rs-accent, #111);
}
.vf-source-head-main {
  max-width: var(--rs-container, 1400px);
  height: 76px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 210px minmax(240px, 1fr) auto;
  align-items: center;
  gap: 24px;
}
.vf-source-logo img {
  display: block;
  max-width: 190px;
  max-height: 54px;
}
.vf-mobile-menu-button {
  appearance: none;
  -webkit-appearance: none;
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111;
  cursor: pointer;
}
.vf-mobile-menu-button .vf-line-icon {
  width: 23px;
  height: 23px;
  stroke-width: 2.1;
}
.vf-source-search {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 104px;
  height: 52px;
  border: 1px solid #dfe5ea;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(13, 22, 32, .06);
  transition: border-color .2s ease, box-shadow .2s ease;
  box-sizing: border-box;
  align-items: stretch;
}
.vf-source-search * {
  box-sizing: border-box;
}
.vf-source-search:focus-within {
  border-color: var(--rs-accent, #72bf44);
  box-shadow: 0 16px 34px rgba(49, 126, 38, .16);
}
.vf-search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  width: 22px;
  height: 22px;
  color: #111;
}
.vf-line-icon {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vf-source-search input {
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 10px 0 0;
  font-size: 16px;
  line-height: 52px;
  font-family: inherit;
  color: #151515;
}
.vf-source-search button {
  appearance: none;
  -webkit-appearance: none;
  align-self: center;
  justify-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  min-height: 0;
  margin: 5px 5px 5px 0;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  font-family: inherit;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.vf-source-search button:hover {
  background: var(--rs-accent-2, #3f8f2f);
  transform: translateY(-1px);
}
.vf-search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
  display: none;
  padding: 15px 16px 16px;
  border: 1px solid #e5ebef;
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 48px rgba(13, 22, 32, .14);
}
.vf-source-search:focus-within .vf-search-panel {
  display: block;
}
.vf-search-panel > span {
  display: block;
  margin-bottom: 10px;
  color: #66717b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.vf-search-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vf-search-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #e1e7eb;
  border-radius: 999px;
  background: #f7f9fa;
  color: #151515;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.vf-source-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #111;
}
.vf-source-actions a {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.vf-action-icon {
  position: relative;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.vf-action-icon:hover {
  transform: translateY(-1px);
  background: #f3f6f4;
  color: var(--rs-accent-2, #3f8f2f);
}
.vf-cart-count {
  position: absolute;
  top: 0;
  right: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.vf-source-nav {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
  padding: 0 20px 13px;
  display: flex;
  align-items: center;
  gap: 26px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.vf-source-nav::-webkit-scrollbar { display: none; }
/* Dropdown-capable nav: overflow must stay visible or submenus get clipped. */
.vf-source-nav.has-dropdowns {
  overflow: visible;
  flex-wrap: wrap;
}
.vf-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.vf-nav-item > a {
  display: inline-flex;
  align-items: center;
  padding: 9px 0;
}
.vf-nav-item.has-children > a::after,
.vf-nav-all-item.has-children .vf-source-all::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .65;
}
.vf-nav-dropdown,
.vf-nav-all-panel {
  position: absolute;
  top: 100%;
  left: -14px;
  z-index: 60;
  min-width: 218px;
  padding: 10px 0;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-top: 2px solid var(--rs-accent, #151515);
  box-shadow: 0 14px 34px rgba(10, 14, 20, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.vf-nav-item.has-children:hover > .vf-nav-dropdown,
.vf-nav-item.has-children:focus-within > .vf-nav-dropdown,
.vf-nav-all-item.has-children:hover > .vf-nav-all-panel,
.vf-nav-all-item.has-children:focus-within > .vf-nav-all-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vf-nav-dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 13.5px !important;
  font-weight: 400 !important;
  color: #2b2b2b !important;
  white-space: nowrap;
}
.vf-nav-dropdown a:hover {
  background: #f4f5f7;
  color: var(--rs-accent, #111) !important;
}
.vf-nav-all-panel {
  left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 4px 18px;
  width: min(880px, 86vw);
  max-height: 68vh;
  overflow-y: auto;
  padding: 16px 18px;
}
.vf-nav-all-panel .vf-nav-all-group > a {
  display: block;
  padding: 5px 0;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #111 !important;
}
.vf-nav-all-panel .vf-nav-all-group > div a {
  display: block;
  padding: 3px 0;
  font-size: 12.5px !important;
  font-weight: 400 !important;
  color: #555 !important;
}
.vf-nav-all-panel .vf-nav-all-group > div a:hover {
  color: var(--rs-accent, #111) !important;
}
.vf-mobile-drawer-nav .vf-drawer-child {
  padding-left: 26px;
  font-size: 13px;
  opacity: .85;
}
.vf-source-nav a,
.vf-source-all {
  color: #151515;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}
.vf-source-all { font-weight: 800; }
.vf-source-all {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}
.vf-source-all .vf-line-icon {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}
.vf-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9990;
  visibility: hidden;
  pointer-events: none;
}
.vf-mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}
.vf-mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 13, 18, .22);
  opacity: 0;
  transition: opacity .22s ease;
}
.vf-mobile-menu.is-open .vf-mobile-menu-backdrop {
  opacity: 1;
}
.vf-mobile-drawer {
  position: relative;
  z-index: 1;
  width: min(390px, 86vw);
  height: 100%;
  background: #fff;
  box-shadow: 22px 0 60px rgba(8, 13, 18, .18);
  transform: translateX(-104%);
  transition: transform .24s ease;
  overflow-y: auto;
}
.vf-mobile-menu.is-open .vf-mobile-drawer {
  transform: translateX(0);
}
.vf-mobile-drawer-head {
  min-height: 98px;
  padding: 18px 16px 16px;
  border-bottom: 1px solid #e5e8eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.vf-mobile-drawer-logo img {
  display: block;
  max-width: 238px;
  max-height: 66px;
}
.vf-mobile-menu-close {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111;
  cursor: pointer;
}
.vf-mobile-menu-close:hover {
  background: #f3f6f4;
}
.vf-mobile-drawer-body {
  padding: 36px 10px 44px;
}
.vf-mobile-drawer-body h3 {
  margin: 0 0 18px;
  color: #253040;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}
.vf-mobile-drawer-nav {
  display: grid;
  gap: 0;
}
.vf-mobile-drawer-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  color: #0f1720;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.vf-mobile-drawer-nav a:hover {
  color: var(--rs-accent-2, #3f8f2f);
}
html.rsvs-menu-lock,
body.rsvs-menu-lock {
  overflow: hidden;
}

.vf-source-offer {
  max-width: var(--rs-container, 1400px);
  margin: 15px auto 20px;
  padding: 0 20px;
}
.vf-source-offer-inner {
  min-height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--rs-accent, #a80f16);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.vf-source-offer a {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}

.vf-source-banner-row {
  padding: 16px 20px 0;
}
.vf-source-banner-row-inner {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.vf-source-banner-card {
  position: relative;
  display: block;
  min-height: 260px;
  aspect-ratio: 580 / 260;
  overflow: hidden;
  background: #f3f3f3;
  color: #111;
  text-decoration: none;
}
.vf-source-banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .32s ease;
}
.vf-source-banner-card:hover img {
  transform: scale(1.035);
}
.vf-source-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.68) 34%, rgba(255,255,255,.08) 68%, rgba(255,255,255,0) 100%);
}
.vf-source-banner-copy {
  position: relative;
  z-index: 2;
  min-height: 100%;
  max-width: 54%;
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.vf-source-banner-title {
  display: block;
  color: #111;
  font-family: var(--rs-heading-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  font-size: clamp(24px, 2.25vw, 36px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.vf-source-banner-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 3px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.vf-banner-mosaic {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
  padding: 18px 20px 0;
}
.vf-mosaic-top {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(290px, .95fr);
  gap: 12px;
}
.vf-mosaic-main,
.vf-mosaic-side-card,
.vf-mosaic-bottom-card,
.vf-banner-card {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: #f4f4f4;
  text-decoration: none;
}
.vf-mosaic-main {
  position: relative;
  min-height: 0;
  aspect-ratio: 850 / 497;
}
.vf-mosaic-main-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.vf-mosaic-main-slide.is-active:first-child,
.vf-mosaic-main-slide:first-child {
  opacity: 1;
}
.vf-mosaic-main-slide img,
.vf-mosaic-side-card img,
.vf-mosaic-bottom-card img,
.vf-banner-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vf-mosaic-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}
.vf-mosaic-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  box-shadow: 0 0 0 1px rgba(0,0,0,.16);
}
.vf-mosaic-dot:first-child { background: var(--rs-accent, #78bd43); }
.vf-mosaic-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.vf-mosaic-bottom,
.vf-banner-grid-inner {
  display: grid;
  grid-template-columns: repeat(var(--vf-banner-cols, 3), minmax(0, 1fr));
  gap: 12px;
}
.vf-mosaic-bottom {
  --vf-banner-cols: 3;
  margin-top: 12px;
}
.vf-mosaic-bottom-card,
.vf-banner-card {
  aspect-ratio: 426 / 178;
}
/* Single full-width promo strip: keep the image's natural height. */
.vf-banner-grid--single .vf-banner-card {
  aspect-ratio: auto;
  background: transparent;
}
.vf-banner-grid--single .vf-banner-card img {
  height: auto;
}

.vf-text-band {
  background: var(--vf-band-bg, #d8f4c6);
  margin-top: 48px;
  padding: 34px 20px;
  text-align: center;
}
.vf-text-band.align-left { text-align: left; }
.vf-text-band.align-right { text-align: right; }
.vf-text-band-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.vf-text-band h1,
.vf-text-band h2 {
  margin: 0 0 12px;
  color: var(--rs-text, #1a1a1a);
  font-family: var(--rs-heading-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  font-size: clamp(28px, 2.2vw, 32px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
}
.vf-text-copy p {
  max-width: 1040px;
  margin: 0 auto;
  color: #273322;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0;
}
.vf-text-copy p + p { margin-top: 12px; }

.vf-products {
  background: #fff;
  padding: 54px 20px 10px;
}
.vf-products-inner {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
}
.vf-products-head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 22px;
  text-align: center;
  margin-bottom: 28px;
}
.vf-products-head h2,
.vf-feature-copy h2 {
  margin: 0;
  color: var(--rs-text, #1a1a1a);
  font-family: var(--rs-heading-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}
.vf-products-intro p {
  max-width: 920px;
  margin: 12px auto 0;
  font-size: 16px;
  line-height: 1.45;
  color: #525252;
  letter-spacing: 0;
}
.vf-products-more {
  color: var(--rs-accent, #5fb33b);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.vf-products-carousel {
  position: relative;
}
.vf-products-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 0 2px 12px;
}
.vf-products-track::-webkit-scrollbar { display: none; }
.vf-product-card {
  position: relative;
  flex: 0 0 calc(20% - 15px);
  min-width: 205px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  color: var(--rs-text, #1a1a1a);
  text-decoration: none;
  border: 1px solid #e7ecef;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 58%, #f8faf8 100%);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(13, 22, 32, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.vf-product-card:hover {
  transform: translateY(-4px);
  border-color: #d2ded3;
  box-shadow: 0 18px 42px rgba(13, 22, 32, .12);
}
.vf-product-main {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.vf-product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  margin: 10px 10px 0;
  padding: 18px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 30%, rgba(114,191,68,.11), transparent 52%),
    #fff;
}
.vf-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .24s ease;
}
.vf-product-card:hover .vf-product-media img {
  transform: scale(1.045);
}
.vf-product-name {
  min-height: 42px;
  padding: 12px 16px 0;
  color: #1f2933;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0;
}
.vf-product-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-height: 38px;
  padding: 9px 16px 8px;
  flex-wrap: wrap;
}
.vf-product-price {
  color: #111;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}
.vf-product-price del {
  margin-right: 6px;
  color: #8a949d;
  font-size: 13px;
  font-weight: 600;
}
.vf-product-price ins {
  color: #111;
  text-decoration: none;
}
.vf-product-regular {
  color: #7a7a7a;
  font-size: 12px;
  text-decoration: line-through;
}
.vf-product-actions {
  display: block;
  padding: 0 16px 16px;
}
.vf-product-quick,
.vf-product-quick.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  transition: background .2s ease, transform .2s ease;
}
.vf-product-quick:hover,
.vf-product-quick.button:hover {
  background: var(--rs-accent-2, #3f8f2f);
  color: #fff;
  transform: translateY(-1px);
}
.vf-product-actions .added_to_cart {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  color: var(--rs-accent-2, #3f8f2f);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.vf-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border-radius: 999px;
  background: #ef1d25;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  padding: 6px 9px;
}
.vf-product-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #7f8991;
  background: #fff;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  line-height: 24px;
}
.vf-carousel-btn {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: #7a7a7a;
  box-shadow: 0 3px 14px rgba(0,0,0,.18);
  cursor: pointer;
}
.vf-carousel-prev { left: -10px; }
.vf-carousel-next { right: -10px; }

.vf-feature-pair {
  padding: 46px 20px 12px;
}
.vf-feature-panel {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
  gap: 20px;
  align-items: stretch;
  background: #d8f4c6;
  border-radius: 6px;
  padding: 22px;
}
.vf-feature-copy {
  position: relative;
  display: block;
  color: #1a1a1a;
  text-decoration: none;
  padding: 12px 28px 12px 8px;
}
.vf-feature-copy h2 {
  font-size: clamp(34px, 2.6vw, 40px);
  margin-bottom: 14px;
}
.vf-feature-copy p {
  max-width: 680px;
  margin: 0;
  color: #25331f;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0;
}
.vf-feature-arrow {
  position: absolute;
  top: 16px;
  right: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #7a7a7a;
  font-size: 24px;
}
.vf-feature-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.vf-product-card.is-compact {
  min-width: 0;
  flex-basis: auto;
}

.vf-cat-strip {
  padding: 34px 20px 20px;
  background: #fff;
}
.vf-cat-strip-row {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, minmax(90px, 1fr));
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}
.vf-cat-strip-row::-webkit-scrollbar { display: none; }
.vf-cat-strip-card {
  min-width: 92px;
  color: #1a1a1a;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}
.vf-cat-strip-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 8px;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  background: #fff;
}
.vf-cat-strip-img img {
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
}

.vf-banner-grid {
  padding: 34px 20px 0;
}
.vf-banner-grid-inner {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
}

.vf-source-gallery {
  padding: 36px 20px 0;
  background: #fff;
}
.vf-source-gallery-inner {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
}
.vf-source-gallery h2 {
  margin: 0 0 24px;
  color: #111;
  font-family: var(--rs-heading-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
}
.vf-source-gallery-grid {
  display: grid;
  grid-template-columns: minmax(260px, 40%) minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
}
.vf-source-gallery-feature,
.vf-source-gallery-card {
  display: block;
  overflow: hidden;
}
.vf-source-gallery-feature {
  min-height: 420px;
  background: #0a0a0a;
}
.vf-source-gallery-card {
  background: #f4f4f4;
}
.vf-source-gallery-feature video,
.vf-source-gallery-feature img,
.vf-source-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vf-source-gallery-side {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.vf-source-gallery-card {
  aspect-ratio: 1 / 1;
}
.vf-source-gallery-actions {
  display: flex;
  justify-content: center;
  padding: 40px 0 74px;
}
.vf-source-gallery-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 40px;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.vf-source-gallery-actions a:hover {
  background: #111;
  color: #fff;
}

.vf-source-footer {
  background: #fff;
  color: #111;
}
.vf-source-newsletter {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .98fr);
  gap: 34px;
  align-items: center;
  background: #000;
  color: #fff;
}
.vf-source-newsletter h2 {
  margin: 0 0 6px;
  color: #fff;
  font-family: var(--rs-heading-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.vf-source-newsletter p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}
.vf-source-newsletter-form {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 38px;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .82);
}
.vf-source-newsletter-mail {
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
.vf-source-newsletter-form input {
  min-width: 0;
  height: 42px;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.vf-source-newsletter-form input::placeholder {
  color: #fff;
  opacity: 1;
}
.vf-source-newsletter-form button {
  appearance: none;
  -webkit-appearance: none;
  width: 38px;
  min-width: 0;
  height: 38px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.vf-source-newsletter-form button:hover,
.vf-source-newsletter-form button:focus {
  border: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}
body .vf-source-newsletter-form button[type="submit"] {
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
}
.vf-source-footer-main {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
  padding: 34px 10px 28px;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 54px;
  align-items: start;
}
.vf-source-footer-main h3 {
  margin: 0 0 12px;
  color: #111;
  font-family: var(--rs-heading-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}
.vf-source-footer-col a {
  display: block;
  color: #202020;
  font-size: 13px;
  line-height: 1.85;
  font-weight: 400;
  text-decoration: none;
}
.vf-source-footer-col a:hover,
.vf-source-footer-bottom a:hover {
  text-decoration: underline;
}
.vf-source-footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.vf-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
}
.vf-footer-social-link > span:not(.vf-footer-social-glyph) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.vf-footer-social-glyph {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 26px;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  text-transform: lowercase;
}
.vf-footer-social-glyph--instagram {
  width: 23px;
  height: 23px;
  border: 2px solid #000;
  border-radius: 7px;
  font-size: 0;
}
.vf-footer-social-glyph--instagram::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 2px solid #000;
  border-radius: 50%;
}
.vf-footer-social-glyph--instagram::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 3px;
  height: 3px;
  margin: 0;
  border-radius: 50%;
  background: #000;
}
.vf-footer-social-glyph--facebook {
  font-size: 29px;
  font-family: Arial, sans-serif;
}
.vf-footer-social-glyph--vimeo,
.vf-footer-social-glyph--pinterest {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 21px;
}
.vf-source-footer-legal {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
  padding: 8px 10px 22px;
  border-bottom: 1px solid #d8d8d8;
  color: #555;
  font-size: 11px;
  line-height: 1.45;
}
.vf-source-footer-legal p {
  margin: 0;
}
.vf-source-footer-pay {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
  padding: 18px 10px 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.vf-source-footer-pay-icon img {
  display: block;
  height: 26px;
  width: auto;
}
.vf-source-footer-logo {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
  padding: 12px 10px 0;
  text-align: center;
}
.vf-source-footer-logo img {
  display: inline-block;
  max-height: 46px;
  width: auto;
}
.vf-source-footer-bottom {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
  padding: 16px 10px 28px;
  color: #555;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}
.vf-source-footer-bottom p {
  margin: 0 0 8px;
}
.vf-source-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.vf-source-footer-bottom a {
  color: #111;
  text-decoration: none;
}
.vf-source-footer-bottom a::after {
  content: "|";
  display: inline-block;
  margin: 0 10px;
  color: #777;
}
.vf-source-footer-bottom a:last-child::after {
  display: none;
}

.vf-link-footer {
  margin-top: 46px;
  background: #f5f5f5;
  padding: 38px 20px 34px;
}
.vf-footer-cols {
  max-width: var(--rs-container, 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px;
}
.vf-footer-col h3 {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.3;
  color: #111;
  font-weight: 800;
  letter-spacing: 0;
}
.vf-footer-col a {
  display: block;
  color: #2f2f2f;
  font-size: 13px;
  line-height: 1.8;
  text-decoration: none;
  letter-spacing: 0;
}
.vf-footer-col a:hover { text-decoration: underline; }
.vf-footer-fine {
  max-width: var(--rs-container, 1400px);
  margin: 34px auto 0;
  color: #555;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0;
}

.rsvs-canvas .vf-text-band h1,
.rsvs-canvas .vf-text-band h2,
.rsvs-canvas .vf-products-head h2,
.rsvs-canvas .vf-feature-copy h2 {
  font-family: var(--rs-heading-font, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  letter-spacing: 0;
}

.rsvs-canvas .vf-products-head h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
}

.rsvs-canvas .vf-feature-copy h2 {
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.12;
}

@media (max-width: 1100px) {
  .vf-mosaic-top { grid-template-columns: 1fr; }
  .vf-mosaic-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .vf-mosaic-side-card { aspect-ratio: 426 / 178; }
  .vf-product-card { flex-basis: calc(25% - 14px); }
  .vf-feature-panel { grid-template-columns: 1fr; }
  .vf-source-gallery-grid { grid-template-columns: 1fr; }
  .vf-source-gallery-feature { min-height: 360px; aspect-ratio: 16 / 9; }
  .vf-source-footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
  .vf-footer-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .vf-source-head-main {
    height: 76px;
    grid-template-columns: 34px minmax(104px, 1fr) minmax(116px, 150px) auto;
    gap: 8px;
    padding: 0 14px;
    align-items: center;
  }
  .vf-mobile-menu-button {
    display: inline-flex;
  }
  .vf-source-logo {
    min-width: 0;
  }
  .vf-source-logo img {
    margin: 0;
    max-width: clamp(108px, 22vw, 142px);
    max-height: 46px;
  }
  .vf-source-search {
    grid-template-columns: 34px minmax(0, 1fr);
    height: 40px;
    order: initial;
    width: 100%;
    border: 0;
    background: #f5f5f5;
    box-shadow: none;
  }
  .vf-source-search input {
    line-height: 40px;
    padding-right: 12px;
    font-size: 15px;
  }
  .vf-source-search button {
    display: none;
  }
  .vf-search-icon {
    width: 20px;
    height: 20px;
  }
  .vf-search-icon .vf-line-icon {
    width: 20px;
    height: 20px;
  }
  .vf-source-actions {
    order: initial;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 9px;
  }
  .vf-source-actions .vf-action-icon:first-child {
    display: none;
  }
  .vf-action-icon { width: 29px; height: 29px; }
  .vf-action-icon .vf-line-icon { width: 21px; height: 21px; }
  .vf-cart-count {
    top: -1px;
    right: -3px;
    min-width: 15px;
    height: 15px;
    font-size: 9px;
    border-width: 2px;
  }
  .vf-source-nav {
    display: none;
  }
  .vf-mobile-drawer {
    width: min(395px, 86vw);
  }
  .vf-mobile-drawer-head {
    min-height: 98px;
    padding: 18px 10px 16px;
  }
  .vf-mobile-drawer-logo img {
    max-width: 240px;
  }
  .vf-source-offer {
    margin: 10px auto 12px;
    padding: 0 12px;
  }
  .vf-source-offer-inner {
    min-height: 38px;
    display: block;
    line-height: 38px;
    white-space: nowrap;
  }
  .vf-source-offer a {
    display: none;
  }
  .vf-source-offer a:first-child {
    display: block;
    overflow: hidden;
    text-overflow: clip;
  }
  .vf-source-banner-row {
    padding: 12px 12px 0;
  }
  .vf-source-banner-row-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .vf-source-banner-card {
    min-height: 0;
    aspect-ratio: 580 / 260;
  }
  .vf-source-banner-copy {
    max-width: 58%;
    padding: 28px 24px;
  }
  .vf-source-banner-title {
    font-size: clamp(21px, 6vw, 30px);
  }
  .vf-banner-mosaic { padding: 10px 12px 0; }
  .vf-mosaic-bottom,
  .vf-banner-grid-inner { grid-template-columns: 1fr; }
  .vf-text-band { margin-top: 28px; padding: 28px 16px; }
  .vf-products { padding: 42px 14px 4px; }
  .vf-products-head { display: block; }
  .vf-product-card { flex-basis: calc(50% - 9px); min-width: 168px; }
  .vf-carousel-btn { display: none; }
  .vf-feature-pair { padding: 30px 12px 6px; }
  .vf-feature-panel { padding: 14px; }
  .vf-feature-products { grid-template-columns: 1fr 1fr; gap: 12px; }
  .vf-cat-strip { padding-left: 12px; padding-right: 12px; }
  .vf-cat-strip-row { grid-template-columns: repeat(8, 96px); gap: 12px; }
  .vf-source-gallery { padding: 30px 12px 0; }
  .vf-source-gallery h2 { font-size: 19px; margin-bottom: 16px; }
  .vf-source-gallery-feature { min-height: 0; aspect-ratio: 16 / 10; }
  .vf-source-gallery-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vf-source-gallery-actions { padding: 28px 0 46px; }
  .vf-source-newsletter {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 16px;
  }
  .vf-source-newsletter-form { grid-template-columns: 28px minmax(0, 1fr) 34px; }
  .vf-source-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 20px;
    padding: 30px 12px 24px;
  }
  .vf-source-footer-legal,
  .vf-source-footer-bottom { padding-left: 12px; padding-right: 12px; }
  .vf-footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .vf-source-head-main {
    grid-template-columns: 30px minmax(88px, 1fr) minmax(96px, 118px) auto;
    gap: 6px;
    padding: 0 10px;
  }
  .vf-mobile-menu-button {
    width: 30px;
    height: 30px;
  }
  .vf-source-logo img {
    max-width: clamp(88px, 28vw, 118px);
  }
  .vf-source-search {
    grid-template-columns: 30px minmax(0, 1fr);
    height: 36px;
  }
  .vf-source-search input {
    font-size: 14px;
    line-height: 36px;
  }
  .vf-search-icon .vf-line-icon {
    width: 18px;
    height: 18px;
  }
  .vf-source-actions {
    gap: 6px;
  }
  .vf-action-icon {
    width: 27px;
    height: 27px;
  }
  .vf-action-icon .vf-line-icon {
    width: 20px;
    height: 20px;
  }
  .vf-source-banner-copy {
    max-width: 62%;
    padding: 20px 18px;
    gap: 10px;
  }
  .vf-source-banner-button {
    min-height: 32px;
    padding: 0 13px;
    font-size: 11px;
  }
  .vf-mosaic-side { grid-template-columns: 1fr; }
  .vf-feature-products { grid-template-columns: 1fr; }
  .vf-source-footer-main { grid-template-columns: 1fr; }
  .vf-source-gallery-side { gap: 6px; }
  .vf-source-newsletter h2 { font-size: 14px; }
  .vf-source-newsletter p,
  .vf-source-newsletter-form input,
  .vf-source-footer-col a { font-size: 12px; }
  .vf-footer-cols { grid-template-columns: 1fr; }
}

/* ============ clone_block: 1:1 preserved source section (isolated iframe) ============ */
.vf-clone-block {
  display: block;
  width: 100%;
  border: 0;
  min-height: 40px;
  overflow: hidden;
}
.rsvs-block--clone_block { line-height: 0; }
body.rsvs-canvas-template,
.rsvs-canvas-main,
.rsvs-canvas,
.rsvs-block,
.vf-clone-block {
  overflow-anchor: none !important;
}
.rsvs-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
