/** Shopify CDN: Minification failed

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

**/
/* Noreva-inspired homepage framework: tokens, animations, shared components */

:root {
  --nrv-black: #000000;
  --nrv-white: #ffffff;
  --nrv-brown-400: #756765;
  --nrv-brown-500: #453b3a;
  --nrv-green-300: #daecdf;
  --nrv-green-400: #adce6d;
  --nrv-green-500: #4da374;
  --nrv-grey-100: #f6f5f5;
  --nrv-grey-200: #d9d9d9;
  --nrv-nude-200: #faf6f2;
  --nrv-nude-300: #f1eae4;
  --nrv-nude-400: #e1c0a0;
  --nrv-nude-500: #d3a375;
  --nrv-orange-400: #d2853d;
  --nrv-orange-500: #f6a429;
  --nrv-pink-300: #f08590;
  --nrv-red-400: #c21b1b;

  --nrv-font-base: "Montserrat", sans-serif;
  --nrv-font-accent: "Caveat", cursive;

  --nrv-ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nrv-radius-sm: 0.3125rem;
  --nrv-radius-md: 0.625rem;
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300..800;1,300..800&family=Caveat:wght@500;600;700&display=swap");

/* ---------- keyframes ---------- */
@keyframes nrv-bullet-fill {
  from { width: 0%; }
  to { width: 100%; }
}
@keyframes nrv-rotate-wheel {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes nrv-shimmer {
  to { transform: translateX(100%); }
}
@keyframes nrv-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes nrv-fade-right {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes nrv-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- scroll reveal ---------- */
.nrv-reveal { opacity: 0; will-change: opacity, transform; }
.nrv-reveal.is-inview { animation: nrv-fade-up 0.6s var(--nrv-ease-out) forwards; animation-delay: var(--nrv-delay, 0ms); }
.nrv-reveal-right.is-inview { animation-name: nrv-fade-right; }
.nrv-reveal-fade.is-inview { animation-name: nrv-fade-in; }
@media (prefers-reduced-motion: reduce) {
  .nrv-reveal, .nrv-reveal.is-inview { opacity: 1; animation: none; }
}

/* ---------- layout ---------- */
.nrv-section { font-family: var(--nrv-font-base); }
.nrv-container {
  max-width: 84.5rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 1024px) {
  .nrv-container { padding-inline: 4rem; }
}
.nrv-py { padding-block: 2.5rem; }
@media (min-width: 1024px) {
  .nrv-py { padding-block: 4.5rem; }
}

/* ---------- headings ---------- */
.nrv-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--nrv-brown-400);
}
.nrv-heading {
  font-family: var(--nrv-font-base);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--nrv-brown-500);
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.nrv-heading strong, .nrv-heading b, .nrv-heading span.accent {
  font-weight: 800;
}
.nrv-handwrite {
  font-family: var(--nrv-font-accent);
  font-weight: 600;
  color: var(--nrv-nude-500);
  line-height: 0.9;
}

/* ---------- buttons ---------- */
.nrv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--nrv-font-base);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border-radius: var(--nrv-radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--nrv-ease-out), color 0.25s var(--nrv-ease-out), border-color 0.25s var(--nrv-ease-out), transform 0.25s var(--nrv-ease-out);
  text-decoration: none;
}
.nrv-btn:hover { transform: translateY(-2px); }
.nrv-btn-primary { background: var(--nrv-brown-500); color: var(--nrv-white); }
.nrv-btn-primary:hover { background: var(--nrv-black); }
.nrv-btn-light { background: var(--nrv-white); color: var(--nrv-brown-500); }
.nrv-btn-light:hover { background: var(--nrv-nude-300); }
.nrv-btn-outline { background: transparent; color: var(--nrv-white); border-color: var(--nrv-white); }
.nrv-btn-outline:hover { background: var(--nrv-white); color: var(--nrv-brown-500); }

/* ---------- badge pill ---------- */
.nrv-pill {
  display: inline-block;
  background: rgba(255,255,255,0.75);
  color: var(--nrv-black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
}

/* ---------- hero ---------- */
.nrv-hero {
  position: relative;
  width: 100%;
  height: 32rem;
  overflow: hidden;
  border-radius: 0;
}
@media (min-width: 1024px) {
  .nrv-hero { height: 42rem; }
}
.nrv-hero-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.7s var(--nrv-ease-out);
}
.nrv-hero-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.nrv-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--nrv-bg-gradient, linear-gradient(135deg, var(--nrv-nude-400), var(--nrv-brown-500)));
}
.nrv-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0) 55%);
}
.nrv-hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.25rem 3.5rem;
  max-width: 34rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: var(--nrv-white);
}
@media (min-width: 1024px) {
  .nrv-hero-content { padding: 3rem 4rem 5rem; }
}
.nrv-hero-title {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
}
@media (min-width: 1024px) {
  .nrv-hero-title { font-size: 3.25rem; }
}
.nrv-hero-desc { font-size: 0.9rem; line-height: 1.5; max-width: 28rem; }

.nrv-hero-nav {
  position: absolute;
  z-index: 3;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.6rem;
}
@media (min-width: 1024px) {
  .nrv-hero-nav { left: 4rem; right: auto; width: 16rem; }
}
.nrv-hero-dot {
  position: relative;
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  overflow: hidden;
}
.nrv-hero-dot span {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--nrv-white);
}
.nrv-hero-dot.is-active span { animation: nrv-bullet-fill 6s linear forwards; }
.nrv-hero-dot.is-done span { width: 100%; animation: none; }

/* ---------- tabs (push-expert style) ---------- */
.nrv-tabs {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--nrv-nude-300);
}
.nrv-tab {
  font-family: var(--nrv-font-base);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--nrv-brown-500);
  cursor: pointer;
  transition: border-color 0.25s var(--nrv-ease-out), color 0.25s var(--nrv-ease-out);
  margin-bottom: -1px;
}
.nrv-tab.is-active { border-color: var(--nrv-nude-500); color: var(--nrv-black); }
.nrv-tab-panel { display: none; }
.nrv-tab-panel.is-active { display: block; animation: nrv-fade-in 0.4s var(--nrv-ease-out); }

/* ---------- carousel ---------- */
.nrv-carousel-wrap { position: relative; }
.nrv-carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.nrv-carousel-track::-webkit-scrollbar { display: none; }
.nrv-carousel-track > * { scroll-snap-align: start; flex-shrink: 0; }
.nrv-carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--nrv-nude-300);
  color: var(--nrv-brown-500);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s var(--nrv-ease-out), transform 0.2s var(--nrv-ease-out);
  flex-shrink: 0;
}
.nrv-carousel-arrow:hover { background: var(--nrv-nude-400); transform: scale(1.06); }
.nrv-carousel-arrow.is-prev { transform: rotate(180deg); }
.nrv-carousel-arrow.is-prev:hover { transform: rotate(180deg) scale(1.06); }

/* ---------- range / product cards (color-block placeholders, no images) ---------- */
.nrv-range-card {
  width: 12.5rem;
  height: 17rem;
  border-radius: var(--nrv-radius-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: var(--nrv-white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--nrv-ease-out);
}
.nrv-range-card:hover { transform: translateY(-6px); }
.nrv-range-card span { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; }

/* ---------- spinning seal badge ---------- */
.nrv-seal-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15.625rem;
}
@media (min-width: 1024px) {
  .nrv-seal-wrap { height: 20rem; }
}
.nrv-seal {
  position: relative;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nrv-seal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--nrv-nude-500), var(--nrv-nude-300), var(--nrv-nude-500));
  animation: nrv-rotate-wheel 12s linear infinite;
}
.nrv-seal-core {
  position: relative;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background: var(--nrv-nude-200);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--nrv-brown-500);
}

/* ---------- reviews ---------- */
.nrv-review-card {
  background: var(--nrv-white);
  border: 1px solid var(--nrv-nude-300);
  border-radius: var(--nrv-radius-md);
  padding: 1.5rem;
  width: 18rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.nrv-review-stars { color: var(--nrv-orange-500); letter-spacing: 0.1em; font-size: 0.9rem; }
.nrv-review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--nrv-nude-400);
  color: var(--nrv-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---------- icon circle (dermato / reassurance) ---------- */
.nrv-icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nrv-nude-300);
  color: var(--nrv-brown-500);
  flex-shrink: 0;
}
.nrv-icon-circle svg { width: 1.4rem; height: 1.4rem; }

/* ---------- category grid ---------- */
.nrv-cat-card {
  border-radius: var(--nrv-radius-md);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: var(--nrv-white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.3s var(--nrv-ease-out);
}
.nrv-cat-card:hover { transform: translateY(-4px); }

/* ---------- news cards ---------- */
.nrv-news-card { display: flex; flex-direction: column; gap: 0.75rem; text-decoration: none; color: inherit; }
.nrv-news-thumb {
  border-radius: var(--nrv-radius-md);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--nrv-nude-300), var(--nrv-nude-400));
  position: relative;
  overflow: hidden;
}
.nrv-news-thumb::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}
.nrv-news-card:hover .nrv-news-thumb::after { animation: nrv-shimmer 1.1s ease; }
.nrv-news-title { font-weight: 700; font-size: 0.95rem; color: var(--nrv-brown-500); }
.nrv-news-excerpt { font-size: 0.8rem; color: var(--nrv-brown-400); line-height: 1.5; }

/* ---------- reassurance strip ---------- */
.nrv-reassurance {
  background: var(--nrv-brown-500);
  color: var(--nrv-white);
}
.nrv-reassurance .nrv-icon-circle { background: rgba(255,255,255,0.12); color: var(--nrv-white); }
.nrv-reassurance-item { display: flex; align-items: center; gap: 0.85rem; }
.nrv-reassurance-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
.nrv-reassurance-item p { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin: 0; }

/* ---------- grids ---------- */
.nrv-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.nrv-grid-3 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.nrv-grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
@media (min-width: 768px) {
  .nrv-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .nrv-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
