:root {
  --vp-forest-950: #0c2f23;
  --vp-forest-900: #123b2a;
  --vp-forest-800: #1a4a35;
  --vp-forest-700: #286247;
  --vp-leaf-500: #6f9d78;
  --vp-leaf-300: #b9cfb8;
  --vp-leaf-100: #e8f0e6;
  --vp-cream-50: #fffdfa;
  --vp-cream-100: #faf7f0;
  --vp-cream-200: #f1eadc;
  --vp-sand-300: #dbcbb2;
  --vp-clay-500: #b8663d;
  --vp-gold-400: #cfaa62;
  --vp-ink: #183028;
  --vp-muted: #63736c;
  --vp-border: rgba(24, 48, 40, 0.13);
  --vp-white: #fff;
  --vp-danger: #b4473c;
  --vp-success: #2f7655;
  --vp-shadow-sm: 0 10px 28px rgba(22, 47, 37, 0.07);
  --vp-shadow-md: 0 22px 60px rgba(22, 47, 37, 0.11);
  --vp-shadow-lg: 0 34px 90px rgba(15, 45, 33, 0.16);
  --vp-radius-sm: 12px;
  --vp-radius-md: 20px;
  --vp-radius-lg: 30px;
  --vp-radius-xl: 42px;
  --vp-radius-pill: 999px;
  --vp-container: 1280px;
  --vp-font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --vp-font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body.vp-site-body,
body {
  margin: 0;
  min-width: 320px;
  color: var(--vp-ink);
  background: var(--vp-cream-50);
  font-family: var(--vp-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .vp-header {
  top: 32px;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--vp-forest-950);
  font-family: var(--vp-font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

::selection {
  color: var(--vp-white);
  background: var(--vp-forest-700);
}

:focus-visible {
  outline: 3px solid rgba(184, 102, 61, 0.5);
  outline-offset: 3px;
}

.vp-site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: clip;
}

.vp-container {
  width: min(var(--vp-container), calc(100% - 56px));
  margin-inline: auto;
}

.vp-main-content {
  flex: 1;
}

.is-hidden,
.hidden {
  display: none !important;
}

.screen-reader-text,
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vp-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--vp-radius-pill);
  color: var(--vp-white);
  background: var(--vp-forest-900);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.vp-skip-link:focus {
  transform: translateY(0);
}

/* Header */
.vp-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(24, 48, 40, 0.09);
  background: rgba(255, 253, 250, 0.93);
  backdrop-filter: blur(18px);
}

.vp-topbar {
  color: rgba(255, 255, 255, 0.92);
  background: var(--vp-forest-950);
}

.vp-topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.vp-topbar__inner p {
  display: flex;
  align-items: center;
  gap: 9px;
}

.vp-topbar__secondary {
  opacity: 0.72;
  font-weight: 600;
}

.vp-topbar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #92c596;
  box-shadow: 0 0 0 4px rgba(146, 197, 150, 0.15);
}

.vp-header-main {
  background: transparent;
}

.vp-header__inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: minmax(210px, auto) 1fr auto;
  align-items: center;
  gap: 30px;
}

.vp-header__left {
  min-width: 0;
}

.vp-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.vp-brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--vp-forest-700);
}

.vp-brand__copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vp-brand__text {
  color: var(--vp-forest-950);
  font-family: var(--vp-font-display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.vp-brand__copy small {
  color: var(--vp-muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.vp-custom-logo img {
  width: auto;
  max-width: 240px;
  max-height: 58px;
}

.vp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.vp-nav__item {
  position: relative;
}

.vp-nav__link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  color: #365046;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.vp-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--vp-clay-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.vp-nav__link:hover,
.vp-nav__link:focus-visible {
  color: var(--vp-forest-900);
}

.vp-nav__link:hover::after,
.vp-nav__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.vp-nav__caret {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.vp-nav__dropdown {
  position: absolute;
  z-index: 20;
  top: calc(100% - 3px);
  left: 50%;
  width: 300px;
  padding: 22px;
  border: 1px solid rgba(24, 48, 40, 0.1);
  border-radius: 18px;
  opacity: 0;
  background: var(--vp-white);
  box-shadow: var(--vp-shadow-md);
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.vp-nav__item--has-dropdown:hover .vp-nav__dropdown,
.vp-nav__item--has-dropdown:focus-within .vp-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.vp-nav__dropdown-title {
  margin-bottom: 12px;
  color: var(--vp-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vp-nav__dropdown-list {
  display: grid;
  gap: 4px;
  list-style: none;
}

.vp-nav__dropdown-item a {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 9px;
  color: var(--vp-ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.vp-nav__dropdown-item a:hover,
.vp-nav__dropdown-item a:focus-visible {
  color: var(--vp-forest-900);
  background: var(--vp-leaf-100);
}

.vp-nav__dropdown-item--all a {
  margin-bottom: 5px;
  color: var(--vp-white);
  background: var(--vp-forest-900);
}

.vp-nav__dropdown-item--all a:hover,
.vp-nav__dropdown-item--all a:focus-visible {
  color: var(--vp-white);
  background: var(--vp-forest-700);
}

.vp-header__actions {
  display: flex;
  align-items: center;
  gap: 5px;
}

.vp-icon-btn {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  place-items: center;
  color: var(--vp-forest-900);
  background: transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.vp-icon-btn:hover,
.vp-icon-btn:focus-visible {
  border-color: rgba(24, 48, 40, 0.08);
  background: var(--vp-cream-100);
  transform: translateY(-1px);
}

.vp-icon {
  position: relative;
  display: inline-block;
  width: 19px;
  height: 19px;
}

.vp-icon::before,
.vp-icon::after {
  position: absolute;
  inset: 0;
  margin: auto;
  border-color: currentColor;
  content: "";
}

.vp-icon--search::before {
  width: 11px;
  height: 11px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
  transform: translate(-2px, -2px);
}

.vp-icon--search::after {
  width: 7px;
  height: 1.8px;
  border: 0;
  background: currentColor;
  transform: translate(5px, 5px) rotate(45deg);
}

.vp-icon--close::before,
.vp-icon--close::after {
  width: 15px;
  height: 1.8px;
  border: 0;
  background: currentColor;
}

.vp-icon--close::before { transform: rotate(45deg); }
.vp-icon--close::after { transform: rotate(-45deg); }

.vp-icon--menu::before {
  width: 16px;
  height: 1.7px;
  border: 0;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 -5px 0 currentColor;
}

.vp-icon--cart::before {
  width: 13px;
  height: 9px;
  border: 1.7px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  transform: translateY(2px);
}

.vp-icon--cart::after {
  width: 11px;
  height: 7px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  transform: translateY(-5px);
}

.vp-icon--user::before {
  width: 7px;
  height: 7px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  transform: translateY(-5px);
}

.vp-icon--user::after {
  width: 13px;
  height: 7px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  transform: translateY(6px);
}

.header-cart__count {
  position: absolute;
  top: -1px;
  right: -2px;
  display: grid;
  width: 18px;
  height: 18px;
  border: 2px solid var(--vp-cream-50);
  border-radius: 50%;
  place-items: center;
  color: var(--vp-white);
  background: var(--vp-clay-500);
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
}

.vp-header-search--open {
  display: flex;
  align-items: center;
  gap: 5px;
}

.vp-search-form {
  display: flex;
  align-items: center;
}

.vp-search-form input[type="search"] {
  width: min(320px, 25vw);
  height: 42px;
  padding: 0 16px 0 18px;
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-pill);
  outline: none;
  color: var(--vp-ink);
  background: var(--vp-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vp-search-form input[type="search"]:focus {
  border-color: rgba(40, 98, 71, 0.45);
  box-shadow: 0 0 0 4px rgba(40, 98, 71, 0.1);
}

.vp-mobile-only,
.vp-mobile-search,
.vp-mobile-nav {
  display: none;
}

/* Shared interface */
.vp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--vp-clay-500);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vp-eyebrow > span {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.vp-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--vp-radius-pill);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vp-btn:hover,
.vp-btn:focus-visible {
  transform: translateY(-2px);
}

.vp-btn--primary {
  color: var(--vp-white);
  background: var(--vp-forest-900);
  box-shadow: 0 12px 30px rgba(18, 59, 42, 0.18);
}

.vp-btn--primary:hover,
.vp-btn--primary:focus-visible {
  color: var(--vp-white);
  background: var(--vp-forest-700);
  box-shadow: 0 16px 38px rgba(18, 59, 42, 0.25);
}

.vp-btn--secondary,
.vp-btn--ghost {
  border-color: rgba(18, 59, 42, 0.2);
  color: var(--vp-forest-900);
  background: rgba(255, 255, 255, 0.7);
}

.vp-btn--secondary:hover,
.vp-btn--secondary:focus-visible,
.vp-btn--ghost:hover,
.vp-btn--ghost:focus-visible {
  border-color: var(--vp-forest-900);
  background: var(--vp-white);
}

.vp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--vp-forest-900);
  font-size: 0.9rem;
  font-weight: 800;
}

.vp-text-link span {
  transition: transform 0.2s ease;
}

.vp-text-link:hover span,
.vp-text-link:focus-visible span {
  transform: translateX(4px);
}

.vp-section-heading {
  margin-bottom: clamp(30px, 4vw, 54px);
}

.vp-section-heading h2 {
  max-width: 720px;
  margin-top: 13px;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
}

.vp-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 50px;
}

.vp-section-heading--split > p {
  max-width: 560px;
  justify-self: end;
  color: var(--vp-muted);
  font-size: 1rem;
}

/* Home hero */
.vp-home {
  background: var(--vp-cream-50);
}

.vp-hero {
  position: relative;
  padding: 38px 0 70px;
}

.vp-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 85%;
  background: linear-gradient(180deg, rgba(232, 240, 230, 0.68), rgba(255, 253, 250, 0));
  content: "";
  pointer-events: none;
}

.vp-hero__grid {
  position: relative;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}

.vp-hero__content {
  position: relative;
  z-index: 2;
  padding: 34px 0;
}

.vp-hero__content h1 {
  max-width: 720px;
  margin-top: 20px;
  font-size: clamp(3.3rem, 6.1vw, 6rem);
  line-height: 0.96;
}

.vp-hero__lead {
  max-width: 640px;
  margin-top: 26px;
  color: #4d635a;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.vp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.vp-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  list-style: none;
  color: #50655c;
  font-size: 0.82rem;
  font-weight: 700;
}

.vp-hero__proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.vp-hero__proof span {
  display: grid;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  place-items: center;
  color: var(--vp-forest-800);
  background: var(--vp-leaf-100);
  font-size: 0.7rem;
}

.vp-hero__visual {
  position: relative;
  min-height: 620px;
}

.vp-hero__shape {
  position: absolute;
  top: 25px;
  right: 4%;
  width: 82%;
  height: 85%;
  border-radius: 48% 48% 42% 58% / 44% 42% 58% 56%;
  background: #dce8d8;
  transform: rotate(4deg);
}

.vp-hero__shape::after {
  position: absolute;
  right: -8%;
  bottom: -4%;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(18, 59, 42, 0.13);
  border-radius: 50%;
  content: "";
}

.vp-hero__image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--vp-cream-200);
  box-shadow: var(--vp-shadow-lg);
}

.vp-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-hero__image--main {
  z-index: 2;
  top: 5%;
  right: 7%;
  width: 70%;
  aspect-ratio: 0.86;
  border: 12px solid rgba(255, 255, 255, 0.86);
  border-radius: 44% 44% 18% 18% / 36% 36% 16% 16%;
}

.vp-hero__image--small {
  z-index: 3;
  bottom: 0;
  left: 1%;
  width: 34%;
  aspect-ratio: 1;
  border: 9px solid var(--vp-cream-50);
  border-radius: 50%;
}

.vp-hero__floating-card {
  position: absolute;
  z-index: 4;
  right: -1%;
  bottom: 11%;
  display: flex;
  width: min(260px, 42%);
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(24, 48, 40, 0.08);
  border-radius: 16px;
  background: rgba(255, 253, 250, 0.94);
  box-shadow: var(--vp-shadow-md);
  backdrop-filter: blur(12px);
}

.vp-hero__floating-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  color: var(--vp-white);
  background: var(--vp-clay-500);
}

.vp-hero__floating-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.vp-hero__floating-card strong {
  color: var(--vp-forest-950);
  font-size: 0.84rem;
}

.vp-hero__floating-card small {
  margin-top: 2px;
  color: var(--vp-muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.vp-hero__badge {
  position: absolute;
  z-index: 4;
  top: 12%;
  left: -1%;
  display: flex;
  min-width: 120px;
  height: 120px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--vp-white);
  background: var(--vp-forest-900);
  box-shadow: var(--vp-shadow-md);
  text-align: center;
  transform: rotate(-8deg);
}

.vp-hero__badge strong {
  font-family: var(--vp-font-display);
  font-size: 1.05rem;
}

.vp-hero__badge span {
  max-width: 80px;
  margin-top: 3px;
  opacity: 0.75;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Categories */
.vp-category-section {
  padding: clamp(78px, 9vw, 132px) 0;
  background: var(--vp-white);
}

.vp-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.vp-category-card {
  position: relative;
  display: flex;
  min-height: 490px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(24, 48, 40, 0.08);
  border-radius: 28px;
  background: var(--vp-cream-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vp-category-card:hover,
.vp-category-card:focus-visible {
  box-shadow: var(--vp-shadow-md);
  transform: translateY(-7px);
}

.vp-category-card__media {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  margin: 10px 10px 0;
  border-radius: 21px;
  background: #e8e2d8;
}

.vp-category-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(10, 43, 31, 0.08));
  content: "";
}

.vp-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vp-category-card:hover .vp-category-card__media img,
.vp-category-card:focus-visible .vp-category-card__media img {
  transform: scale(1.045);
}

.vp-category-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 23px 24px;
}

.vp-category-card__count {
  color: var(--vp-clay-500);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vp-category-card h3 {
  margin-top: 7px;
  font-size: clamp(1.48rem, 2vw, 1.85rem);
}

.vp-category-card__content > p:not(.vp-category-card__count) {
  margin-top: 10px;
  color: var(--vp-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.vp-category-card__content > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  color: var(--vp-forest-900);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vp-category-card__content > span b {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  place-items: center;
  color: var(--vp-white);
  background: var(--vp-forest-900);
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.vp-category-card:hover .vp-category-card__content > span b,
.vp-category-card:focus-visible .vp-category-card__content > span b {
  transform: rotate(45deg);
}

.vp-category-card--sage { background: #eff5ed; }
.vp-category-card--sand { background: #f5efe5; }
.vp-category-card--mist { background: #edf2ef; }
.vp-category-card--clay { background: #f7eee8; }

/* Service band */
.vp-service-band {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.9);
  background: var(--vp-forest-950);
}

.vp-service-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vp-service-band article {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 16px;
  padding: 0 clamp(22px, 3vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.vp-service-band article:first-child { padding-left: 0; }
.vp-service-band article:last-child { padding-right: 0; border-right: 0; }

.vp-service-band__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  place-items: center;
  color: #bed5bd;
  background: rgba(255, 255, 255, 0.05);
}

.vp-service-band__icon svg {
  width: 22px;
  height: 22px;
}

.vp-service-band article > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.vp-service-band strong {
  color: var(--vp-white);
  font-size: 0.88rem;
}

.vp-service-band small {
  margin-top: 2px;
  opacity: 0.67;
  font-size: 0.72rem;
  line-height: 1.45;
}

/* Product section and cards */
.vp-products-section {
  padding: clamp(82px, 10vw, 142px) 0;
  background: var(--vp-cream-100);
}

.vp-product-grid,
.vp-home-products,
ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 18px;
  margin: 0;
  list-style: none;
}

.vp-product-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  border: 1px solid rgba(24, 48, 40, 0.08);
  border-radius: 22px;
  background: var(--vp-white);
  box-shadow: 0 6px 22px rgba(24, 48, 40, 0.035);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.vp-product-card:hover {
  box-shadow: var(--vp-shadow-md);
  transform: translateY(-6px);
}

.vp-product-card__media {
  position: relative;
  overflow: hidden;
  margin: 8px 8px 0;
  border-radius: 17px;
  background: #f2eee6;
}

.vp-product-card__image-link {
  display: block;
  aspect-ratio: 1 / 1.08;
}

.vp-product-card__image,
.vp-product-card__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.vp-product-card:hover .vp-product-card__image,
.vp-product-card:hover .vp-product-card__image-link img {
  transform: scale(1.045);
}

.vp-product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vp-product-card__badge,
.vp-product-card__pet {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--vp-radius-pill);
  color: var(--vp-white);
  background: var(--vp-forest-900);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.vp-product-card__badge--sale {
  background: var(--vp-clay-500);
}

.vp-product-card__badge--new {
  background: var(--vp-forest-700);
}

.vp-product-card__pet {
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: var(--vp-forest-900);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
}

.vp-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px 17px 18px;
}

.vp-product-card__care,
.vp-product-card__latin {
  display: flex;
  min-height: 20px;
  align-items: center;
  gap: 7px;
  color: var(--vp-muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.vp-product-card__latin {
  display: block;
  margin-top: 4px;
  font-style: italic;
  font-weight: 500;
}

.vp-product-card__title {
  margin-top: 7px;
  font-family: var(--vp-font-body);
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.38;
}

.vp-product-card__title a:hover,
.vp-product-card__title a:focus-visible {
  color: var(--vp-forest-700);
}

.vp-product-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.vp-product-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--vp-forest-950);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
}

.vp-product-card__price del {
  color: #8a9993;
  font-size: 0.76rem;
  font-weight: 600;
}

.vp-product-card__price ins {
  text-decoration: none;
}

.vp-product-card__cart {
  display: grid !important;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  place-items: center;
  color: var(--vp-white) !important;
  background: var(--vp-forest-900) !important;
  box-shadow: none !important;
  font-size: 0 !important;
  line-height: 1 !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.vp-product-card__cart:hover,
.vp-product-card__cart:focus-visible {
  background: var(--vp-clay-500) !important;
  transform: rotate(90deg);
}

.vp-product-card__cart-icon {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.vp-product-card__meta-icons {
  display: flex;
  gap: 8px;
  min-height: 18px;
}

.vp-meta-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--vp-leaf-100);
}

.vp-meta-icon--sun { box-shadow: inset 0 0 0 4px #e6b65f; }
.vp-meta-icon--water { border-radius: 50% 50% 50% 0; background: #7fa8aa; transform: rotate(-45deg) scale(0.72); }
.vp-meta-icon--difficulty { background: var(--vp-leaf-500); }

.vp-home-empty-state {
  padding: 56px;
  border: 1px dashed rgba(24, 48, 40, 0.2);
  border-radius: var(--vp-radius-lg);
  background: var(--vp-white);
  text-align: center;
}

.vp-home-empty-state .vp-btn {
  margin-top: 18px;
}

/* Story */
.vp-story-section {
  padding: clamp(86px, 10vw, 150px) 0;
  background: var(--vp-white);
}

.vp-story-section__grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.vp-story-section__visual {
  position: relative;
  min-height: 680px;
}

.vp-story-section__visual::before {
  position: absolute;
  top: 4%;
  left: 3%;
  width: 82%;
  height: 84%;
  border-radius: 44% 56% 48% 52% / 50% 43% 57% 50%;
  background: var(--vp-cream-200);
  content: "";
}

.vp-story-section__image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 10px solid var(--vp-white);
  box-shadow: var(--vp-shadow-md);
}

.vp-story-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-story-section__image--large {
  top: 0;
  right: 3%;
  width: 66%;
  height: 84%;
  border-radius: 180px 180px 26px 26px;
}

.vp-story-section__image--small {
  bottom: 0;
  left: 0;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.vp-story-section__stamp {
  position: absolute;
  z-index: 3;
  right: -2%;
  bottom: 6%;
  display: flex;
  width: 134px;
  height: 134px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--vp-white);
  background: var(--vp-clay-500);
  text-align: center;
  transform: rotate(8deg);
}

.vp-story-section__stamp strong {
  max-width: 95px;
  font-family: var(--vp-font-display);
  font-size: 1.05rem;
  line-height: 1.05;
}

.vp-story-section__stamp span {
  margin-top: 5px;
  opacity: 0.8;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vp-story-section__content h2 {
  margin-top: 18px;
  font-size: clamp(2.55rem, 5vw, 4.7rem);
}

.vp-story-section__content > p:not(.vp-eyebrow) {
  margin-top: 24px;
  color: var(--vp-muted);
  font-size: 1.03rem;
}

.vp-check-list {
  display: grid;
  gap: 0;
  margin: 28px 0 30px;
  list-style: none;
}

.vp-check-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--vp-border);
}

.vp-check-list li > span {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  place-items: center;
  color: var(--vp-clay-500);
  background: #f7eee8;
  font-size: 0.68rem;
  font-weight: 850;
}

.vp-check-list li div {
  display: flex;
  flex-direction: column;
}

.vp-check-list strong {
  color: var(--vp-forest-950);
  font-size: 0.9rem;
}

.vp-check-list small {
  margin-top: 3px;
  color: var(--vp-muted);
  font-size: 0.79rem;
}

/* Guides */
.vp-guides-section {
  padding: clamp(82px, 10vw, 140px) 0;
  background: #edf3ec;
}

.vp-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.vp-guide-card {
  overflow: hidden;
  border-radius: 25px;
  background: var(--vp-white);
  box-shadow: var(--vp-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vp-guide-card:hover {
  box-shadow: var(--vp-shadow-md);
  transform: translateY(-6px);
}

.vp-guide-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.35;
  background: var(--vp-cream-200);
}

.vp-guide-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.vp-guide-card:hover .vp-guide-card__media img {
  transform: scale(1.045);
}

.vp-guide-card__body {
  padding: 23px 24px 25px;
}

.vp-guide-card__body > p {
  color: var(--vp-clay-500);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vp-guide-card h3 {
  margin-top: 9px;
  font-family: var(--vp-font-body);
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.vp-guide-card__body > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--vp-forest-900);
  font-size: 0.78rem;
  font-weight: 850;
}

/* SEO / FAQ */
.vp-seo-section {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--vp-cream-50);
}

.vp-seo-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.75fr);
  gap: clamp(50px, 8vw, 110px);
}

.vp-seo-section__intro h2 {
  margin-top: 16px;
  font-size: clamp(2.35rem, 4.6vw, 4.2rem);
}

.vp-seo-section__intro > p:not(.vp-eyebrow) {
  margin-top: 20px;
  color: var(--vp-muted);
}

.vp-faq-list {
  align-self: center;
  border-top: 1px solid var(--vp-border);
}

.vp-faq-list details {
  border-bottom: 1px solid var(--vp-border);
}

.vp-faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--vp-forest-950);
  font-size: 0.94rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.vp-faq-list summary::-webkit-details-marker { display: none; }

.vp-faq-list summary span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--vp-border);
  border-radius: 50%;
  place-items: center;
  transition: transform 0.2s ease;
}

.vp-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.vp-faq-list details p {
  max-width: 580px;
  padding: 0 45px 22px 0;
  color: var(--vp-muted);
  font-size: 0.88rem;
}

/* Trust strip */
.vp-trust-strip {
  border-top: 1px solid var(--vp-border);
  border-bottom: 1px solid var(--vp-border);
  background: var(--vp-white);
}

.vp-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vp-trust-item {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 14px;
  padding: 20px 25px;
  border-right: 1px solid var(--vp-border);
}

.vp-trust-item:first-child { padding-left: 0; }
.vp-trust-item:last-child { padding-right: 0; border-right: 0; }

.vp-trust-item__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  color: var(--vp-forest-800);
  background: var(--vp-leaf-100);
}

.vp-trust-item__icon svg { width: 21px; height: 21px; }

.vp-trust-item > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.vp-trust-item strong {
  color: var(--vp-forest-950);
  font-size: 0.82rem;
}

.vp-trust-item small {
  margin-top: 2px;
  color: var(--vp-muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

/* Footer */
.vp-footer {
  margin-top: auto;
  padding: 32px 0 0;
  color: rgba(255, 255, 255, 0.75);
  background: var(--vp-forest-950);
}

.vp-footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(35px, 7vw, 90px);
  padding: 34px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(130deg, #1b4c38 0%, #143a2b 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
}

.vp-footer-newsletter__eyebrow {
  color: #bcd6bd;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vp-footer-newsletter h2 {
  margin-top: 8px;
  color: var(--vp-white);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  letter-spacing: -0.035em;
}

.vp-footer-newsletter__content > p:not(.vp-footer-newsletter__eyebrow):not(.vp-note) {
  max-width: 610px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.86rem;
}

.vp-note {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 12px;
  border-radius: var(--vp-radius-pill);
  font-size: 0.75rem;
}

.vp-note--ok { color: #d7f2dc; background: rgba(91, 158, 109, 0.2); }
.vp-note--error { color: #ffd7d0; background: rgba(180, 71, 60, 0.22); }

.vp-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vp-newsletter-form__row {
  display: flex;
  gap: 8px;
}

.vp-newsletter-form input[type="email"] {
  min-width: 0;
  height: 50px;
  flex: 1;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--vp-radius-pill);
  outline: none;
  color: var(--vp-white);
  background: rgba(255, 255, 255, 0.07);
}

.vp-newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.47);
}

.vp-newsletter-form input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.vp-newsletter-form button {
  display: inline-flex;
  height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--vp-radius-pill);
  color: var(--vp-forest-950);
  background: var(--vp-white);
  font-size: 0.78rem;
  font-weight: 850;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.vp-newsletter-form button:hover,
.vp-newsletter-form button:focus-visible {
  background: var(--vp-cream-200);
  transform: translateY(-1px);
}

.vp-newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  line-height: 1.45;
}

.vp-newsletter-consent input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--vp-leaf-500);
}

.vp-newsletter-consent a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vp-footer-main {
  padding: 54px 0 0;
}

.vp-footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) repeat(3, minmax(150px, 0.65fr));
  gap: clamp(35px, 6vw, 80px);
  padding-bottom: 44px;
}

.vp-brand--light .vp-brand__mark,
.vp-brand--light .vp-brand__text {
  color: var(--vp-white);
}

.vp-brand--light .vp-brand__copy small {
  color: rgba(255, 255, 255, 0.5);
}

.vp-footer-brand > p {
  max-width: 360px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.65;
}

.vp-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
}

.vp-footer-contact a:hover,
.vp-footer-contact a:focus-visible {
  color: var(--vp-white);
}

.vp-footer-column h3 {
  margin-bottom: 17px;
  color: var(--vp-white);
  font-family: var(--vp-font-body);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vp-footer-column ul {
  display: grid;
  gap: 9px;
  list-style: none;
}

.vp-footer-column a {
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.79rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.vp-footer-column a:hover,
.vp-footer-column a:focus-visible {
  color: var(--vp-white);
}

.vp-social-list {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.vp-social-list a {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  place-items: center;
  color: var(--vp-white);
  background: rgba(255, 255, 255, 0.04);
}

.vp-social-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
}

.vp-social-icon--instagram {
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

.vp-social-icon--instagram::before {
  position: absolute;
  inset: 3px;
  border: 1.3px solid currentColor;
  border-radius: 50%;
  content: "";
}

.vp-social-icon--instagram::after {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.vp-social-icon--facebook::before {
  display: block;
  content: "f";
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
}

.vp-social-icon--twitter::before {
  display: block;
  content: "X";
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
}

.vp-footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
}

.vp-footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.vp-footer-payments > span:first-child {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.vp-payment-chip {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Breadcrumbs and pages */
.vp-breadcrumbs,
.vp-product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--vp-muted);
  font-size: 0.73rem;
}

.vp-breadcrumbs a:hover,
.vp-product-breadcrumb a:hover {
  color: var(--vp-forest-900);
}

.vp-page-shell,
.vp-blog-shell,
.vp-article-shell,
.vp-error-shell,
.vp-woo-shell {
  background: var(--vp-cream-100);
}

.vp-page-hero,
.vp-blog-head,
.vp-article__header {
  position: relative;
  padding: 64px 0 58px;
  overflow: hidden;
  border-bottom: 1px solid var(--vp-border);
  background: linear-gradient(135deg, #eff5ec 0%, #faf7f0 64%, #f5ece5 100%);
}

.vp-page-hero::after,
.vp-blog-head::after,
.vp-article__header::after {
  position: absolute;
  top: -120px;
  right: 7%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(24, 48, 40, 0.08);
  border-radius: 50%;
  content: "";
}

.vp-page-hero__inner,
.vp-blog-head,
.vp-article__header {
  position: relative;
  z-index: 1;
}

.vp-page-kicker,
.vp-blog-head__eyebrow,
.vp-article__eyebrow {
  margin-top: 18px;
  color: var(--vp-clay-500);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vp-page-title,
.vp-blog-head__title,
.vp-article__title {
  max-width: 1000px;
  margin-top: 12px;
  font-size: clamp(2.5rem, 5.2vw, 5rem);
}

.vp-page-meta,
.vp-article__meta {
  margin-top: 16px;
  color: var(--vp-muted);
  font-size: 0.78rem;
}

.vp-page-content-wrap {
  padding: 62px 0 96px;
}

.vp-page-content-wrap--legal {
  width: min(980px, calc(100% - 56px));
}

.vp-page-card,
.vp-comments-card {
  padding: clamp(28px, 5vw, 66px);
  border: 1px solid rgba(24, 48, 40, 0.08);
  border-radius: var(--vp-radius-lg);
  background: var(--vp-white);
  box-shadow: var(--vp-shadow-sm);
}

.vp-entry-content {
  color: #354a42;
  font-size: 1rem;
}

.vp-entry-content > * {
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
}

.vp-entry-content h2,
.vp-entry-content h3,
.vp-entry-content h4 {
  margin-top: 1.7em;
  margin-bottom: 0.55em;
  color: var(--vp-forest-950);
}

.vp-entry-content h2 { font-size: clamp(1.75rem, 3vw, 2.55rem); }
.vp-entry-content h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
.vp-entry-content h4 { font-family: var(--vp-font-body); font-size: 1.05rem; letter-spacing: -0.01em; }

.vp-entry-content p,
.vp-entry-content ul,
.vp-entry-content ol,
.vp-entry-content blockquote,
.vp-entry-content table {
  margin-top: 1em;
  margin-bottom: 1em;
}

.vp-entry-content ul,
.vp-entry-content ol {
  padding-left: 1.3em;
}

.vp-entry-content li + li {
  margin-top: 0.45em;
}

.vp-entry-content a {
  color: var(--vp-forest-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.vp-entry-content strong {
  color: var(--vp-forest-950);
}

.vp-entry-content blockquote {
  padding: 20px 24px;
  border-left: 4px solid var(--vp-clay-500);
  border-radius: 0 12px 12px 0;
  background: var(--vp-cream-100);
}

.vp-entry-content table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid var(--vp-border);
  border-radius: 12px;
}

.vp-entry-content th,
.vp-entry-content td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--vp-border);
  text-align: left;
}

.vp-entry-content th {
  color: var(--vp-forest-950);
  background: var(--vp-leaf-100);
}

/* Blog */
.vp-blog-shell {
  padding-bottom: 100px;
}

.vp-blog-head {
  margin-bottom: 52px;
}

.vp-blog-head__desc {
  max-width: 700px;
  margin-top: 18px;
  color: var(--vp-muted);
}

.vp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vp-blog-card {
  overflow: hidden;
  border: 1px solid rgba(24, 48, 40, 0.08);
  border-radius: 22px;
  background: var(--vp-white);
  box-shadow: var(--vp-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vp-blog-card:hover {
  box-shadow: var(--vp-shadow-md);
  transform: translateY(-5px);
}

.vp-blog-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.45;
  background: var(--vp-cream-200);
}

.vp-blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-blog-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  border-radius: var(--vp-radius-pill);
  color: var(--vp-white);
  background: var(--vp-forest-900);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.vp-blog-card__body {
  padding: 22px;
}

.vp-blog-card__meta,
.vp-blog-card__date {
  color: var(--vp-muted);
  font-size: 0.7rem;
}

.vp-blog-card__title {
  margin-top: 9px;
  font-family: var(--vp-font-body);
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.vp-blog-card__excerpt {
  margin-top: 12px;
  color: var(--vp-muted);
  font-size: 0.84rem;
}

.vp-blog-card__link {
  display: inline-block;
  margin-top: 18px;
  color: var(--vp-forest-900);
  font-size: 0.78rem;
  font-weight: 800;
}

.vp-blog-pagination,
.vp-shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 46px;
}

.vp-blog-pagination .page-numbers,
.vp-shop-pagination .page-numbers {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid var(--vp-border);
  border-radius: 50%;
  place-items: center;
  background: var(--vp-white);
  font-size: 0.78rem;
  font-weight: 750;
}

.vp-blog-pagination .current,
.vp-shop-pagination .current {
  color: var(--vp-white);
  background: var(--vp-forest-900);
}

.vp-article-shell {
  padding-bottom: 100px;
}

.vp-article__header {
  margin-bottom: 48px;
}

.vp-article__media {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto 42px;
  border-radius: var(--vp-radius-lg);
  box-shadow: var(--vp-shadow-md);
}

.vp-entry-content--article {
  max-width: 820px;
  margin: 0 auto;
}

/* Shop archive */
.vp-shop-page,
.vp-home-featured {
  padding: 56px 0 100px;
  background: var(--vp-cream-100);
}

.vp-shop-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.vp-shop-head__title-wrap h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.vp-shop-head__title-wrap p {
  margin-top: 10px;
  color: var(--vp-muted);
  font-size: 0.82rem;
}

.vp-shop-sort select {
  min-width: 220px;
  height: 46px;
  padding: 0 42px 0 15px;
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-pill);
  outline: none;
  color: var(--vp-ink);
  background: var(--vp-white);
}

.vp-shop-description {
  max-width: 900px;
  margin-bottom: 28px;
  padding: 20px 24px;
  border-left: 3px solid var(--vp-leaf-500);
  border-radius: 0 14px 14px 0;
  color: var(--vp-muted);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.vp-home-featured__layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.vp-home-featured__aside {
  position: sticky;
  top: 132px;
}

.vp-home-filters {
  padding: 22px;
  border: 1px solid var(--vp-border);
  border-radius: 20px;
  background: var(--vp-white);
  box-shadow: var(--vp-shadow-sm);
}

.vp-home-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--vp-border);
}

.vp-home-filters__head h3 {
  font-family: var(--vp-font-body);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.vp-home-filters__clear {
  color: var(--vp-clay-500);
  font-size: 0.7rem;
  font-weight: 800;
}

.vp-filter-group {
  padding: 15px 0;
  border-bottom: 1px solid var(--vp-border);
}

.vp-filter-group summary,
.vp-filter-group__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--vp-forest-950);
  font-size: 0.78rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.vp-filter-group summary::-webkit-details-marker { display: none; }

.vp-filter-chevron {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.vp-filter-group[open] .vp-filter-chevron {
  transform: rotate(225deg);
}

.vp-filter-group__body {
  display: grid;
  gap: 9px;
  padding-top: 12px;
}

.vp-filter-check {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--vp-muted);
  font-size: 0.76rem;
  cursor: pointer;
}

.vp-filter-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--vp-forest-700);
}

.vp-filter-group--price {
  border-bottom: 0;
}

.vp-filter-price-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
  margin-top: 11px;
  color: var(--vp-muted);
  font-size: 0.7rem;
}

.vp-filter-price-row input {
  width: 100%;
  height: 38px;
  padding: 0 9px;
  border: 1px solid var(--vp-border);
  border-radius: 9px;
  outline: none;
}

.vp-filter-price-row span:last-child {
  display: none;
}

.vp-filter-submit {
  width: 100%;
  min-height: 43px;
  margin-top: 15px;
  border: 0;
  border-radius: var(--vp-radius-pill);
  color: var(--vp-white);
  background: var(--vp-forest-900);
  font-size: 0.76rem;
  font-weight: 800;
}

.vp-home-filter-trigger {
  display: none;
}

.vp-mobile-filter-drawer {
  position: fixed;
  z-index: 500;
  inset: 0;
}

.vp-mobile-filter-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 20, 0.55);
  backdrop-filter: blur(3px);
}

.vp-mobile-filter-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  overflow-y: auto;
  padding: 20px;
  background: var(--vp-cream-50);
}

.vp-mobile-filter-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.vp-mobile-filter-drawer__head h3 {
  font-family: var(--vp-font-body);
  font-size: 1.1rem;
}

.vp-mobile-filter-drawer__head button {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid var(--vp-border);
  border-radius: 50%;
  place-items: center;
  background: var(--vp-white);
  font-size: 1.3rem;
}

.vp-mobile-filter-drawer__results {
  padding: 12px 0;
  color: var(--vp-muted);
  font-size: 0.76rem;
  text-align: center;
}

/* WooCommerce product */
.vp-product-page {
  padding: 42px 0 100px;
  background: var(--vp-cream-100);
}

.vp-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: start;
  gap: clamp(38px, 6vw, 76px);
  margin-top: 24px;
}

.vp-product-gallery,
.woocommerce-product-gallery {
  min-width: 0;
}

.vp-product-gallery__main,
.woocommerce-product-gallery__wrapper {
  overflow: hidden;
  border-radius: 28px;
  background: var(--vp-white);
  box-shadow: var(--vp-shadow-sm);
}

.vp-product-gallery__main img,
.woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
}

.vp-product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.vp-product-gallery__thumbs button,
.flex-control-thumbs li {
  overflow: hidden;
  border: 1px solid var(--vp-border);
  border-radius: 12px;
  background: var(--vp-white);
}

.vp-product-summary {
  position: sticky;
  top: 132px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--vp-border);
  border-radius: 28px;
  background: var(--vp-white);
  box-shadow: var(--vp-shadow-sm);
}

.vp-product-summary__badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: var(--vp-radius-pill);
  color: var(--vp-white);
  background: var(--vp-clay-500);
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
}

.vp-product-summary h1,
.product_title {
  margin-top: 14px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
}

.vp-product-summary__latin {
  margin-top: 8px;
  color: var(--vp-muted);
  font-family: var(--vp-font-display);
  font-style: italic;
}

.vp-product-summary__price,
.summary .price {
  margin-top: 20px;
  color: var(--vp-forest-950);
  font-size: 1.55rem;
  font-weight: 850;
}

.vp-product-summary__price del,
.summary .price del {
  margin-right: 8px;
  color: #87958f;
  font-size: 0.95rem;
}

.vp-product-summary__price ins,
.summary .price ins {
  text-decoration: none;
}

.vp-product-summary__excerpt,
.woocommerce-product-details__short-description {
  margin-top: 18px;
  color: var(--vp-muted);
}

.vp-product-summary__stock,
.stock {
  margin-top: 16px;
  color: var(--vp-success);
  font-size: 0.8rem;
  font-weight: 750;
}

.vp-product-summary__meta-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.vp-product-summary__meta-cards > div {
  padding: 13px 10px;
  border-radius: 13px;
  background: var(--vp-cream-100);
  text-align: center;
}

.vp-product-summary__meta-cards strong {
  display: block;
  color: var(--vp-forest-950);
  font-size: 0.72rem;
}

.vp-product-summary__meta-cards span {
  display: block;
  margin-top: 2px;
  color: var(--vp-muted);
  font-size: 0.64rem;
}

.vp-product-add-to-cart,
.cart {
  margin-top: 24px;
}

.vp-product-summary__buy-row,
.cart:not(.variations_form) {
  display: flex;
  gap: 10px;
}

.quantity .qty,
.vp-product-summary input.qty {
  width: 74px;
  height: 52px;
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-pill);
  text-align: center;
}

.single_add_to_cart_button,
.vp-product-summary .button.alt {
  min-height: 52px !important;
  flex: 1;
  padding: 0 25px !important;
  border: 0 !important;
  border-radius: var(--vp-radius-pill) !important;
  color: var(--vp-white) !important;
  background: var(--vp-forest-900) !important;
  font-weight: 850 !important;
}

.variations {
  width: 100%;
  margin-bottom: 14px;
}

.variations td,
.variations th {
  padding: 6px 0;
  border: 0;
}

.variations select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--vp-border);
  border-radius: 10px;
  background: var(--vp-white);
}

.vp-product-summary__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.vp-product-summary__chips span {
  padding: 6px 10px;
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-pill);
  color: var(--vp-muted);
  font-size: 0.67rem;
}

.vp-product-details,
.vp-product-care,
.vp-product-related {
  margin-top: 70px;
}

.vp-product-details__block,
.vp-product-care,
.woocommerce-tabs {
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--vp-border);
  border-radius: 28px;
  background: var(--vp-white);
  box-shadow: var(--vp-shadow-sm);
}

.vp-product-details h2,
.vp-product-care h2,
.vp-product-related h2,
.related.products > h2,
.woocommerce-tabs h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.vp-product-care__grid,
.vp-product-attributes-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.vp-product-care__grid > div,
.vp-product-attributes-list li {
  padding: 18px;
  border-radius: 14px;
  background: var(--vp-cream-100);
}

/* Notices, cart, checkout and account */
.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin-bottom: 20px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 15px 18px;
  border: 1px solid var(--vp-border);
  border-left: 4px solid var(--vp-forest-700);
  border-radius: 10px;
  color: var(--vp-ink);
  background: var(--vp-white);
  list-style: none;
}

.woocommerce-error {
  border-left-color: var(--vp-danger);
}

.vp-woo-shell,
.woocommerce-cart .vp-main-content,
.woocommerce-checkout .vp-main-content,
.woocommerce-account .vp-main-content {
  padding: 52px 0 100px;
}

.woocommerce table.shop_table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--vp-border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 18px;
  background: var(--vp-white);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 14px;
  border: 0;
  border-bottom: 1px solid var(--vp-border);
}

.woocommerce table.shop_table th {
  color: var(--vp-forest-950);
  background: var(--vp-cream-100);
  font-size: 0.78rem;
}

.woocommerce .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce-MyAccount-content {
  padding: 24px;
  border: 1px solid var(--vp-border);
  border-radius: 20px;
  background: var(--vp-white);
  box-shadow: var(--vp-shadow-sm);
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.select2-container--default .select2-selection--single {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--vp-border);
  border-radius: 10px;
  outline: none;
  background: var(--vp-white);
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--vp-radius-pill);
  color: var(--vp-white);
  background: var(--vp-forest-900);
  font-weight: 800;
}

.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
  background: var(--vp-forest-900);
}

.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
  list-style: none;
}

.woocommerce-MyAccount-navigation a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-pill);
  background: var(--vp-white);
  font-size: 0.75rem;
  font-weight: 750;
}

/* Empty / 404 */
.vp-error-shell,
.vp-empty-state {
  padding: 90px 0 120px;
}

.vp-error-card,
.vp-empty-state {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px;
  border: 1px solid var(--vp-border);
  border-radius: 28px;
  background: var(--vp-white);
  box-shadow: var(--vp-shadow-sm);
  text-align: center;
}

.vp-error-card__code {
  color: var(--vp-leaf-500);
  font-family: var(--vp-font-display);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  line-height: 0.8;
}

.vp-error-card h1,
.vp-empty-state h1 {
  margin-top: 24px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.vp-error-card p,
.vp-empty-state p {
  margin-top: 16px;
  color: var(--vp-muted);
}

.vp-error-card__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

/* Responsive */
@media (max-width: 1180px) {
  .vp-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .vp-nav {
    gap: 16px;
  }

  .vp-nav__link {
    font-size: 0.82rem;
  }

  .vp-hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 42px;
  }

  .vp-category-grid,
  .vp-product-grid,
  .vp-home-products,
  ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vp-category-card:last-child {
    display: none;
  }

  .vp-footer-grid {
    grid-template-columns: 1.25fr repeat(3, 0.7fr);
    gap: 36px;
  }
}

@media (max-width: 1024px) {
  body.admin-bar .vp-header { top: 32px; }

  .vp-container {
    width: min(var(--vp-container), calc(100% - 40px));
  }

  .vp-nav,
  #desktop-search-closed,
  #desktop-search-open {
    display: none !important;
  }

  .vp-mobile-only {
    display: inline-grid;
  }

  .vp-header__inner {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .vp-header__actions {
    justify-self: end;
  }

  .vp-mobile-search {
    display: block;
    padding: 12px 0;
    border-top: 1px solid var(--vp-border);
    background: var(--vp-cream-50);
  }

  .vp-mobile-search.is-hidden {
    display: none;
  }

  .vp-mobile-search .vp-search-form input[type="search"] {
    width: 100%;
  }

  .vp-mobile-nav {
    display: block;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    border-top: 1px solid var(--vp-border);
    background: var(--vp-cream-50);
  }

  .vp-mobile-nav.is-hidden {
    display: none;
  }

  .vp-mobile-nav nav {
    padding: 16px 0 24px;
  }

  .vp-mobile-nav__list,
  .vp-mobile-nav__submenu {
    display: grid;
    list-style: none;
  }

  .vp-mobile-nav__item {
    border-bottom: 1px solid var(--vp-border);
  }

  .vp-mobile-nav__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .vp-mobile-nav__link {
    display: block;
    flex: 1;
    padding: 13px 0;
    color: var(--vp-forest-950);
    font-size: 0.92rem;
    font-weight: 750;
  }

  .vp-mobile-nav__toggle {
    display: grid;
    width: 40px;
    height: 40px;
    border: 0;
    place-items: center;
    background: transparent;
  }

  .vp-mobile-nav__toggle-icon {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
  }

  .vp-mobile-nav__toggle[aria-expanded="true"] .vp-mobile-nav__toggle-icon {
    transform: rotate(225deg);
  }

  .vp-mobile-nav__submenu {
    gap: 0;
    padding: 0 0 10px 15px;
  }

  .vp-mobile-nav__submenu a {
    display: block;
    padding: 8px 0;
    color: var(--vp-muted);
    font-size: 0.82rem;
  }

  .vp-hero {
    padding: 34px 0 64px;
  }

  .vp-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vp-hero__content {
    max-width: 820px;
    padding: 24px 0 10px;
  }

  .vp-hero__content h1 {
    max-width: 850px;
    font-size: clamp(3.5rem, 8.5vw, 6rem);
  }

  .vp-hero__visual {
    width: min(760px, 100%);
    min-height: 620px;
    margin: 0 auto;
  }

  .vp-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vp-category-card:last-child {
    display: flex;
  }

  .vp-service-band__grid {
    grid-template-columns: 1fr;
  }

  .vp-service-band article,
  .vp-service-band article:first-child,
  .vp-service-band article:last-child {
    min-height: 76px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .vp-service-band article:last-child {
    border-bottom: 0;
  }

  .vp-story-section__grid,
  .vp-seo-section__grid,
  .vp-product-hero {
    grid-template-columns: 1fr;
  }

  .vp-story-section__visual {
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .vp-story-section__content {
    max-width: 760px;
  }

  .vp-guide-grid,
  .vp-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vp-guide-card:last-child {
    display: none;
  }

  .vp-footer-newsletter {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vp-footer-grid {
    grid-template-columns: 1.3fr repeat(2, 0.7fr);
  }

  .vp-footer-column:last-child {
    grid-column: 2 / 3;
  }

  .vp-trust-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vp-trust-item:nth-child(2) {
    border-right: 0;
  }

  .vp-trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--vp-border);
  }

  .vp-home-featured__layout {
    grid-template-columns: 1fr;
  }

  .vp-home-featured__aside {
    display: none;
  }

  .vp-home-filter-trigger {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 0 16px;
    border: 1px solid var(--vp-border);
    border-radius: var(--vp-radius-pill);
    color: var(--vp-forest-900);
    background: var(--vp-white);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .vp-product-summary {
    position: static;
  }

  .vp-product-care__grid,
  .vp-product-attributes-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  body.admin-bar .vp-header { top: 46px; }
}

@media (max-width: 760px) {
  .vp-container,
  .vp-page-content-wrap--legal {
    width: min(100% - 28px, var(--vp-container));
  }

  .vp-topbar__inner {
    min-height: 31px;
    justify-content: center;
    font-size: 0.65rem;
    text-align: center;
  }

  .vp-topbar__secondary {
    display: none !important;
  }

  .vp-header__inner {
    min-height: 64px;
  }

  .vp-brand__mark {
    width: 29px;
    height: 29px;
  }

  .vp-brand__text {
    font-size: 1.28rem;
  }

  .vp-brand__copy small {
    display: none;
  }

  .vp-account-btn {
    display: none;
  }

  .vp-icon-btn {
    width: 38px;
    height: 38px;
  }

  .vp-hero {
    padding-top: 22px;
  }

  .vp-hero__content {
    padding-top: 18px;
  }

  .vp-hero__content h1 {
    margin-top: 14px;
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .vp-hero__lead {
    margin-top: 20px;
    font-size: 0.95rem;
  }

  .vp-hero__actions {
    margin-top: 26px;
  }

  .vp-hero__actions .vp-btn {
    width: 100%;
  }

  .vp-hero__proof {
    display: grid;
    gap: 10px;
    margin-top: 23px;
  }

  .vp-hero__visual {
    min-height: 460px;
  }

  .vp-hero__shape {
    top: 20px;
    right: 2%;
    width: 88%;
    height: 82%;
  }

  .vp-hero__image--main {
    top: 3%;
    right: 5%;
    width: 76%;
    border-width: 8px;
  }

  .vp-hero__image--small {
    left: 0;
    width: 34%;
    border-width: 6px;
  }

  .vp-hero__floating-card {
    right: 0;
    bottom: 7%;
    width: 48%;
    padding: 10px;
  }

  .vp-hero__floating-icon {
    width: 30px;
    height: 30px;
  }

  .vp-hero__floating-card strong {
    font-size: 0.68rem;
  }

  .vp-hero__floating-card small {
    display: none;
  }

  .vp-hero__badge {
    top: 8%;
    left: 0;
    min-width: 88px;
    width: 88px;
    height: 88px;
  }

  .vp-hero__badge strong {
    font-size: 0.8rem;
  }

  .vp-hero__badge span {
    max-width: 65px;
    font-size: 0.5rem;
  }

  .vp-section-heading--split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vp-section-heading--split > p,
  .vp-section-heading--split > .vp-text-link {
    justify-self: start;
  }

  .vp-section-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .vp-category-grid,
  .vp-product-grid,
  .vp-home-products,
  ul.products,
  .vp-guide-grid,
  .vp-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .vp-category-card {
    min-height: 370px;
    border-radius: 20px;
  }

  .vp-category-card__media {
    min-height: 190px;
    margin: 7px 7px 0;
    border-radius: 15px;
  }

  .vp-category-card__content {
    padding: 16px;
  }

  .vp-category-card h3 {
    font-size: 1.25rem;
  }

  .vp-category-card__content > p:not(.vp-category-card__count) {
    display: none;
  }

  .vp-category-card__content > span {
    font-size: 0.65rem;
  }

  .vp-category-card__content > span b {
    width: 29px;
    height: 29px;
  }

  .vp-product-card {
    border-radius: 17px;
  }

  .vp-product-card__media {
    margin: 6px 6px 0;
    border-radius: 13px;
  }

  .vp-product-card__body {
    padding: 12px 12px 13px;
  }

  .vp-product-card__care {
    display: none;
  }

  .vp-product-card__title {
    margin-top: 0;
    font-size: 0.84rem;
  }

  .vp-product-card__footer {
    padding-top: 11px;
  }

  .vp-product-card__price {
    font-size: 0.86rem;
  }

  .vp-product-card__cart {
    width: 34px;
    min-width: 34px;
    height: 34px;
  }

  .vp-product-card__badge,
  .vp-product-card__pet {
    min-height: 22px;
    padding: 0 7px;
    font-size: 0.52rem;
  }

  .vp-story-section__visual {
    min-height: 470px;
  }

  .vp-story-section__image--large {
    width: 70%;
    border-width: 7px;
  }

  .vp-story-section__image--small {
    width: 43%;
    border-width: 6px;
  }

  .vp-story-section__stamp {
    right: 0;
    width: 95px;
    height: 95px;
  }

  .vp-story-section__stamp strong {
    max-width: 75px;
    font-size: 0.78rem;
  }

  .vp-story-section__stamp span {
    font-size: 0.5rem;
  }

  .vp-guide-card:last-child {
    display: block;
    grid-column: 1 / -1;
  }

  .vp-guide-card__body {
    padding: 16px;
  }

  .vp-guide-card h3 {
    font-size: 0.9rem;
  }

  .vp-seo-section__grid {
    gap: 35px;
  }

  .vp-faq-list summary {
    min-height: 64px;
    font-size: 0.82rem;
  }

  .vp-footer {
    padding-top: 14px;
  }

  .vp-footer-newsletter {
    padding: 26px 21px;
    border-radius: 20px;
  }

  .vp-newsletter-form__row {
    flex-direction: column;
  }

  .vp-newsletter-form button {
    justify-content: center;
  }

  .vp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .vp-footer-brand {
    grid-column: 1 / -1;
  }

  .vp-footer-column:last-child {
    grid-column: auto;
  }

  .vp-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .vp-footer-payments {
    gap: 5px;
  }

  .vp-payment-chip {
    font-size: 0.52rem;
  }

  .vp-trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .vp-trust-item,
  .vp-trust-item:first-child,
  .vp-trust-item:last-child,
  .vp-trust-item:nth-child(2) {
    min-height: 78px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--vp-border);
  }

  .vp-trust-item:last-child {
    border-bottom: 0;
  }

  .vp-page-hero,
  .vp-blog-head,
  .vp-article__header {
    padding: 42px 0 38px;
  }

  .vp-page-title,
  .vp-blog-head__title,
  .vp-article__title {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }

  .vp-page-content-wrap {
    padding: 30px 0 70px;
  }

  .vp-page-card,
  .vp-comments-card {
    padding: 23px 18px;
    border-radius: 18px;
  }

  .vp-entry-content {
    font-size: 0.94rem;
  }

  .vp-shop-page,
  .vp-home-featured {
    padding: 36px 0 76px;
  }

  .vp-shop-head {
    align-items: stretch;
    flex-direction: column;
  }

  .vp-shop-sort select {
    width: 100%;
  }

  .vp-product-page {
    padding: 28px 0 70px;
  }

  .vp-product-summary {
    padding: 23px 18px;
    border-radius: 20px;
  }

  .vp-product-summary__meta-cards {
    grid-template-columns: 1fr 1fr;
  }

  .vp-product-care__grid,
  .vp-product-attributes-list {
    grid-template-columns: 1fr;
  }

  .woocommerce table.shop_table_responsive tr td::before {
    color: var(--vp-forest-950);
    font-weight: 800;
  }
}

@media (max-width: 480px) {
  .vp-container,
  .vp-page-content-wrap--legal {
    width: min(100% - 22px, var(--vp-container));
  }

  .vp-brand__text {
    font-size: 1.18rem;
  }

  .vp-header__actions {
    gap: 0;
  }

  .vp-hero__visual {
    min-height: 390px;
  }

  .vp-hero__floating-card {
    bottom: 4%;
  }

  .vp-category-grid,
  .vp-product-grid,
  .vp-home-products,
  ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vp-category-card {
    min-height: 330px;
  }

  .vp-category-card__media {
    min-height: 165px;
  }

  .vp-category-card__count {
    font-size: 0.56rem;
  }

  .vp-category-card h3 {
    font-size: 1.08rem;
  }

  .vp-story-section__visual {
    min-height: 400px;
  }

  .vp-guide-grid,
  .vp-blog-grid {
    grid-template-columns: 1fr;
  }

  .vp-guide-card:last-child {
    grid-column: auto;
  }

  .vp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vp-footer-column h3 {
    font-size: 0.67rem;
  }

  .vp-footer-column a {
    font-size: 0.73rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
