:root {
  --vp-bg: #fdfbf7;
  --vp-surface: #ffffff;
  --vp-surface-soft: #f5f0e8;
  --vp-border: #e5dfd3;
  --vp-text: #2d4f1e;
  --vp-text-soft: #5c7a4a;
  --vp-primary: #2d4f1e;
  --vp-primary-contrast: #fdfbf7;
  --vp-accent: #8b7355;
  --vp-radius-card: 20px;
  --vp-radius-pill: 999px;
  --vp-container: 1280px;
  --vp-shadow-soft: 0 8px 24px rgba(34, 50, 21, 0.06);
  --vp-shadow-card: 0 2px 10px rgba(34, 50, 21, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body.vp-site-body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--vp-text);
  background: var(--vp-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

p,
ul,
ol {
  margin: 0;
}

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

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

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

button {
  cursor: pointer;
}

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

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

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

.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-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--vp-border);
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(8px);
}

.vp-header__inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.vp-brand__mark {
  width: 28px;
  height: 28px;
  color: var(--vp-primary);
}

.vp-brand__text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.58rem;
  line-height: 1;
  color: var(--vp-primary);
  font-weight: 600;
}

.vp-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
}

.vp-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(45, 79, 30, 0.82);
  transition: color 0.2s ease;
}

.vp-nav a:hover,
.vp-nav a:focus-visible {
  color: var(--vp-primary);
}

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

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

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

.vp-search-form input {
  width: 300px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-pill);
  background: rgba(245, 240, 232, 0.7);
  color: var(--vp-text);
  outline: none;
}

.vp-search-form input::placeholder {
  color: rgba(45, 79, 30, 0.58);
}

.vp-search-form input:focus {
  border-color: rgba(45, 79, 30, 0.35);
  box-shadow: 0 0 0 4px rgba(45, 79, 30, 0.1);
}

.vp-icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: rgba(45, 79, 30, 0.85);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.vp-icon-btn:hover,
.vp-icon-btn:focus-visible {
  background: rgba(245, 240, 232, 0.9);
  color: var(--vp-primary);
}

.vp-cart-btn {
  position: relative;
}

.header-cart__count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 600;
  color: var(--vp-primary-contrast);
  background: var(--vp-primary);
}

.vp-mobile-only {
  display: none;
}

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

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

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

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

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

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

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

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

.vp-icon--menu::before {
  transform: translateY(-4px);
  box-shadow: 0 8px 0 currentColor;
}

.vp-icon--menu::after {
  transform: translateY(4px);
}

.vp-icon--cart::before {
  width: 12px;
  height: 8px;
  border: 1.8px solid currentColor;
  border-top: 0;
  border-radius: 0 0 3px 3px;
  transform: translateY(1px);
}

.vp-icon--cart::after {
  width: 10px;
  height: 6px;
  border: 1.8px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateY(-5px);
}

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

.vp-mobile-search .vp-search-form input {
  width: 100%;
}

.vp-mobile-nav {
  border-top: 1px solid var(--vp-border);
}

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

.vp-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.vp-mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(45, 79, 30, 0.84);
}

.vp-mobile-nav a:hover,
.vp-mobile-nav a:focus-visible {
  color: var(--vp-primary);
}

.vp-footer {
  margin-top: auto;
  background: var(--vp-primary);
  color: var(--vp-primary-contrast);
}

.vp-footer-newsletter {
  border-bottom: 1px solid rgba(253, 251, 247, 0.18);
}

.vp-footer-newsletter__inner {
  padding: 56px 0;
  display: grid;
  grid-template-columns: minmax(240px, 520px) minmax(280px, 440px);
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}

.vp-footer-newsletter__content h2 {
  font-size: clamp(2rem, 2.4vw, 2.45rem);
  color: var(--vp-primary-contrast);
}

.vp-footer-newsletter__content p {
  margin-top: 10px;
  color: rgba(253, 251, 247, 0.86);
  max-width: 48ch;
}

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

.vp-note--ok {
  background: rgba(253, 251, 247, 0.12);
}

.vp-note--error {
  background: rgba(185, 28, 28, 0.24);
}

.vp-newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vp-newsletter-form input {
  flex: 1;
  height: 44px;
  border: 1px solid rgba(253, 251, 247, 0.3);
  border-radius: var(--vp-radius-pill);
  background: rgba(253, 251, 247, 0.08);
  color: var(--vp-primary-contrast);
  padding: 0 16px;
  outline: none;
}

.vp-newsletter-form input::placeholder {
  color: rgba(253, 251, 247, 0.62);
}

.vp-newsletter-form input:focus {
  border-color: rgba(253, 251, 247, 0.65);
  box-shadow: 0 0 0 4px rgba(253, 251, 247, 0.16);
}

.vp-newsletter-form button {
  height: 44px;
  border: 0;
  border-radius: var(--vp-radius-pill);
  background: var(--vp-primary-contrast);
  color: var(--vp-primary);
  font-weight: 600;
  padding: 0 22px;
}

.vp-footer-main .vp-container {
  padding: 56px 0 34px;
}

.vp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 46px;
}

.vp-footer-brand p {
  margin-top: 14px;
  max-width: 34ch;
  color: rgba(253, 251, 247, 0.8);
}

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

.vp-social-list {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vp-social-list a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(253, 251, 247, 0.24);
  background: rgba(253, 251, 247, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.vp-social-list a:hover,
.vp-social-list a:focus-visible {
  background: rgba(253, 251, 247, 0.2);
  border-color: rgba(253, 251, 247, 0.4);
}

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

.vp-social-icon::before,
.vp-social-icon::after {
  content: '';
  position: absolute;
  border-color: currentColor;
}

.vp-social-icon--instagram::before {
  inset: 0;
  border: 1.6px solid currentColor;
  border-radius: 4px;
}

.vp-social-icon--instagram::after {
  width: 5px;
  height: 5px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1.6px solid currentColor;
  border-radius: 50%;
}

.vp-social-icon--facebook::before {
  content: 'f';
  position: static;
  font-size: 13px;
  font-weight: 700;
  line-height: 15px;
}

.vp-social-icon--twitter::before {
  width: 13px;
  height: 10px;
  top: 2px;
  left: 1px;
  border: 1.6px solid currentColor;
  border-left: 0;
  border-top: 0;
  transform: skewX(-18deg);
}

.vp-footer-grid h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--vp-primary-contrast);
}

.vp-footer-grid ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.vp-footer-grid a {
  font-size: 0.95rem;
  color: rgba(253, 251, 247, 0.78);
}

.vp-footer-grid a:hover,
.vp-footer-grid a:focus-visible {
  color: var(--vp-primary-contrast);
}

.vp-footer-legal {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(253, 251, 247, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.vp-footer-legal p {
  color: rgba(253, 251, 247, 0.72);
  font-size: 0.9rem;
}

.vp-footer-legal nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vp-footer-legal a {
  font-size: 0.9rem;
  color: rgba(253, 251, 247, 0.72);
}

.vp-footer-legal a:hover,
.vp-footer-legal a:focus-visible {
  color: var(--vp-primary-contrast);
}

main {
  flex: 1;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-result-count,
.woocommerce-page .woocommerce-ordering,
.woocommerce span.onsale {
  display: none !important;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.vp-home-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-bottom: 1px solid var(--vp-border);
}

.vp-home-hero__media {
  position: absolute;
  inset: 0;
}

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

.vp-home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(253, 251, 247, 0.93) 0%,
    rgba(253, 251, 247, 0.78) 35%,
    rgba(253, 251, 247, 0.18) 68%,
    rgba(253, 251, 247, 0) 100%
  );
}

.vp-home-hero__inner {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
}

.vp-home-hero__content {
  max-width: 640px;
}

.vp-home-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--vp-accent);
}

.vp-home-hero__content h1 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
  line-height: 1.02;
  color: var(--vp-primary);
}

.vp-home-hero__content p {
  margin-top: 18px;
  max-width: 52ch;
  color: rgba(45, 79, 30, 0.88);
  font-size: 1.16rem;
  line-height: 1.6;
}

.vp-home-hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.vp-btn {
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--vp-radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0 30px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.vp-btn--primary {
  background: var(--vp-primary);
  color: var(--vp-primary-contrast);
}

.vp-btn--primary:hover,
.vp-btn--primary:focus-visible {
  background: #234116;
  color: var(--vp-primary-contrast);
}

.vp-btn--ghost {
  border-color: rgba(45, 79, 30, 0.25);
  background: rgba(253, 251, 247, 0.94);
  color: var(--vp-primary);
}

.vp-btn--ghost:hover,
.vp-btn--ghost:focus-visible {
  background: #f5f0e8;
}

.vp-home-featured {
  padding: 92px 0 78px;
}

.vp-home-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.vp-home-section-head p {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.84rem;
  color: var(--vp-accent);
  font-weight: 600;
}

.vp-home-section-head h2 {
  margin-top: 10px;
  color: var(--vp-primary);
  font-size: clamp(2.05rem, 4vw, 3.35rem);
}

.vp-home-section-head span {
  margin-top: 12px;
  display: block;
  color: rgba(45, 79, 30, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.vp-home-filter-trigger {
  display: none;
  margin-bottom: 18px;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border-radius: var(--vp-radius-pill);
  border: 1px solid var(--vp-border);
  background: var(--vp-surface);
  color: var(--vp-primary);
  font-weight: 600;
}

.vp-home-filter-trigger strong {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vp-primary);
  color: var(--vp-primary-contrast);
  font-size: 0.75rem;
  font-weight: 700;
}

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

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

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

.vp-home-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.vp-home-filters__head h3 {
  font-size: 2.1rem;
  color: var(--vp-primary);
}

.vp-home-filters__clear {
  font-size: 0.8rem;
  color: var(--vp-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.vp-filter-group summary {
  list-style: none;
  cursor: pointer;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  color: var(--vp-primary);
}

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

.vp-filter-chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-right: 4px;
}

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

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

.vp-filter-check {
  display: flex;
  align-items: center;
  gap: 9px;
}

.vp-filter-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1px solid var(--vp-border);
  accent-color: var(--vp-primary);
}

.vp-filter-check span {
  font-size: 0.94rem;
  color: rgba(45, 79, 30, 0.84);
}

.vp-filter-group--price {
  border-bottom: 0;
  padding-top: 10px;
}

.vp-filter-group__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vp-primary);
}

.vp-filter-price-row {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vp-filter-price-row input {
  width: 100%;
  height: 34px;
  border-radius: var(--vp-radius-pill);
  border: 1px solid var(--vp-border);
  background: var(--vp-surface-soft);
  color: var(--vp-primary);
  padding: 0 10px;
  font-size: 0.88rem;
}

.vp-filter-price-row span {
  font-size: 0.8rem;
  color: rgba(45, 79, 30, 0.72);
}

.vp-filter-submit {
  margin-top: 16px;
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: var(--vp-radius-pill);
  background: var(--vp-primary);
  color: var(--vp-primary-contrast);
  font-size: 0.94rem;
  font-weight: 600;
}

.vp-filter-submit:hover,
.vp-filter-submit:focus-visible {
  background: #234116;
}

.vp-home-products {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.vp-product-card {
  min-height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(45, 79, 30, 0.12);
  background: var(--vp-surface);
  overflow: hidden;
  box-shadow: var(--vp-shadow-card);
}

.vp-product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ece3d3;
}

.vp-product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

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

.vp-product-card:hover .vp-product-card__image {
  transform: scale(1.04);
}

.vp-product-card__badge {
  position: absolute;
  left: 10px;
  top: 10px;
  min-height: 26px;
  border-radius: var(--vp-radius-pill);
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.vp-product-card__badge--sale {
  background: #8b7355;
  color: #fff;
}

.vp-product-card__badge--new {
  background: #2d4f1e;
  color: #fff;
}

.vp-product-card__fav {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(45, 79, 30, 0.15);
  background: rgba(253, 251, 247, 0.9);
  color: rgba(45, 79, 30, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vp-product-card__fav svg {
  width: 16px;
  height: 16px;
}

.vp-product-card__fav:hover,
.vp-product-card__fav:focus-visible {
  color: var(--vp-primary);
}

.vp-product-card__pet {
  position: absolute;
  left: 10px;
  bottom: 10px;
  min-height: 24px;
  border-radius: var(--vp-radius-pill);
  padding: 0 11px;
  font-size: 0.74rem;
  display: inline-flex;
  align-items: center;
  color: #17674b;
  background: #c8f4dd;
  font-weight: 600;
}

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

.vp-product-card__meta-icons {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.vp-meta-icon {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
  border: 1.4px solid transparent;
}

.vp-meta-icon--sun {
  border-color: #f3a321;
}

.vp-meta-icon--sun.is-low {
  border-color: #afbaaa;
}

.vp-meta-icon--water {
  border-color: #19a5ff;
}

.vp-meta-icon--water.is-low {
  border-color: #afbaaa;
}

.vp-meta-icon--difficulty.is-easy {
  border-color: #159d61;
}

.vp-meta-icon--difficulty.is-medium {
  border-color: #f39d1f;
}

.vp-meta-icon--difficulty.is-hard {
  border-color: #f23963;
}

.vp-product-card__title {
  font-size: 1.95rem;
  line-height: 1.2;
  color: var(--vp-primary);
}

.vp-product-card__title a:hover,
.vp-product-card__title a:focus-visible {
  color: #234116;
}

.vp-product-card__latin {
  margin-top: 2px;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(45, 79, 30, 0.75);
}

.vp-product-card__price {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.vp-product-card__price strong {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--vp-primary);
}

.vp-product-card__price del {
  font-size: 0.95rem;
  color: rgba(45, 79, 30, 0.64);
}

.vp-product-card__price .amount {
  color: inherit;
}

.vp-product-card__cart {
  margin-top: 12px;
  width: 100%;
  min-height: 42px;
  border-radius: var(--vp-radius-pill);
  border: 0;
  background: var(--vp-primary);
  color: var(--vp-primary-contrast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  text-align: center;
}

.vp-product-card__cart:hover,
.vp-product-card__cart:focus-visible {
  background: #234116;
}

.vp-product-card .added_to_cart {
  display: none;
}

.vp-home-featured__products-wrap {
  min-width: 0;
}

.vp-home-empty-state {
  border-radius: 18px;
  border: 1px solid var(--vp-border);
  padding: 30px;
  text-align: center;
  background: var(--vp-surface);
}

.vp-home-empty-state p {
  color: rgba(45, 79, 30, 0.78);
}

.vp-home-empty-state a {
  margin-top: 10px;
  display: inline-block;
  color: var(--vp-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vp-home-more {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.vp-home-more a {
  min-height: 50px;
  border-radius: var(--vp-radius-pill);
  border: 1px solid var(--vp-primary);
  color: var(--vp-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  font-weight: 600;
  background: transparent;
}

.vp-home-more a:hover,
.vp-home-more a:focus-visible {
  background: rgba(45, 79, 30, 0.08);
}

.vp-home-care {
  margin-top: 34px;
  border-top: 1px solid var(--vp-border);
  background: #f8f4ee;
  padding: 92px 0 84px;
}

.vp-home-care__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.vp-home-care__image {
  margin: 0;
  position: relative;
}

.vp-home-care__image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.vp-home-care__image figcaption {
  position: absolute;
  right: -24px;
  bottom: -24px;
  border-radius: 18px;
  background: var(--vp-surface);
  box-shadow: var(--vp-shadow-soft);
  padding: 16px 18px 14px;
  min-width: 150px;
}

.vp-home-care__image figcaption strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--vp-primary);
  display: block;
}

.vp-home-care__image figcaption span {
  margin-top: 4px;
  display: block;
  color: rgba(45, 79, 30, 0.7);
}

.vp-home-care__content > p {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.84rem;
  color: var(--vp-accent);
  font-weight: 600;
}

.vp-home-care__content > h2 {
  margin-top: 10px;
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  color: var(--vp-primary);
  line-height: 1.12;
}

.vp-home-care__content > span {
  margin-top: 12px;
  display: block;
  color: rgba(45, 79, 30, 0.84);
  line-height: 1.6;
  max-width: 60ch;
}

.vp-home-care__tips {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vp-home-care__tips article {
  border-radius: 16px;
  background: var(--vp-surface);
  border: 1px solid rgba(45, 79, 30, 0.1);
  padding: 14px;
}

.vp-home-care__tips article > div {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 79, 30, 0.08);
  color: var(--vp-primary);
}

.vp-home-care__tips article > div svg {
  width: 18px;
  height: 18px;
}

.vp-home-care__tips h3 {
  margin-top: 8px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--vp-primary);
}

.vp-home-care__tips p {
  margin-top: 4px;
  color: rgba(45, 79, 30, 0.78);
  font-size: 0.95rem;
  line-height: 1.45;
}

.vp-home-care__content > a {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vp-primary);
  font-weight: 600;
}

.vp-home-care__content > a:hover,
.vp-home-care__content > a:focus-visible {
  text-decoration: underline;
}

.vp-home-guides {
  margin-top: 88px;
}

.vp-home-guides h3 {
  text-align: center;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  color: var(--vp-primary);
}

.vp-home-guides__grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.vp-home-guide-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(45, 79, 30, 0.12);
  background: var(--vp-surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vp-home-guide-card:hover,
.vp-home-guide-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--vp-shadow-soft);
}

.vp-home-guide-card > div {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.vp-home-guide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-home-guide-card span {
  display: block;
  padding: 12px 14px 2px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--vp-primary);
}

.vp-home-guide-card small {
  display: block;
  padding: 0 14px 14px;
  color: rgba(45, 79, 30, 0.75);
  font-size: 0.94rem;
}

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

.vp-mobile-filter-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 38, 17, 0.35);
  backdrop-filter: blur(3px);
}

.vp-mobile-filter-drawer__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 86vh;
  overflow: auto;
  border-radius: 24px 24px 0 0;
  background: var(--vp-bg);
  padding: 18px 14px 20px;
}

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

.vp-mobile-filter-drawer__head h3 {
  font-size: 2.2rem;
  color: var(--vp-primary);
}

.vp-mobile-filter-drawer__head button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--vp-border);
  background: var(--vp-surface);
  color: var(--vp-primary);
  font-size: 1.3rem;
  line-height: 1;
}

.vp-mobile-filter-drawer__results {
  margin-top: 10px;
  color: rgba(45, 79, 30, 0.78);
  font-size: 0.9rem;
}

.vp-shop-page .vp-home-featured {
  padding-top: 58px;
}

.vp-shop-page .vp-home-featured__layout {
  grid-template-columns: 250px minmax(0, 1fr);
}

.vp-shop-page .vp-home-featured__aside {
  display: block;
}

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

.vp-shop-head__title-wrap h1 {
  font-size: clamp(2.1rem, 3.3vw, 3.2rem);
  color: var(--vp-primary);
  line-height: 1.1;
}

.vp-shop-head__title-wrap p {
  margin-top: 6px;
  color: rgba(45, 79, 30, 0.76);
  font-size: 0.98rem;
}

.vp-shop-sort {
  position: relative;
}

.vp-shop-sort::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(45, 79, 30, 0.85);
  border-bottom: 1.5px solid rgba(45, 79, 30, 0.85);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.vp-shop-sort select {
  width: 244px;
  max-width: 100%;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--vp-border);
  background: var(--vp-surface);
  color: var(--vp-primary);
  font-size: 0.95rem;
  padding: 0 40px 0 14px;
  appearance: none;
}

.vp-shop-sort select:focus {
  outline: none;
  border-color: rgba(45, 79, 30, 0.45);
  box-shadow: 0 0 0 3px rgba(45, 79, 30, 0.12);
}

.vp-shop-description {
  margin-bottom: 22px;
  color: rgba(45, 79, 30, 0.82);
  line-height: 1.58;
  max-width: 84ch;
}

.vp-shop-description p + p {
  margin-top: 8px;
}

.vp-shop-pagination {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.vp-shop-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--vp-border);
  background: var(--vp-surface);
  color: rgba(45, 79, 30, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0 10px;
}

.vp-shop-pagination .page-numbers.current {
  border-color: var(--vp-primary);
  background: var(--vp-primary);
  color: var(--vp-primary-contrast);
}

.vp-shop-pagination .page-numbers:hover,
.vp-shop-pagination .page-numbers:focus-visible {
  border-color: var(--vp-primary);
  color: var(--vp-primary);
}

.vp-woo-shell {
  padding: 56px 0 80px;
}

.vp-woo-shell .woocommerce {
  color: var(--vp-primary);
}

.vp-woo-shell .woocommerce .woocommerce-info,
.vp-woo-shell .woocommerce .woocommerce-message,
.vp-woo-shell .woocommerce .woocommerce-error {
  border-radius: 14px;
  border: 1px solid var(--vp-border);
  background: var(--vp-surface);
  color: var(--vp-primary);
}

.vp-woo-shell .woocommerce a.button,
.vp-woo-shell .woocommerce button.button,
.vp-woo-shell .woocommerce input.button,
.vp-woo-shell .woocommerce #respond input#submit {
  border-radius: var(--vp-radius-pill);
  border: 0;
  background: var(--vp-primary);
  color: var(--vp-primary-contrast);
  font-weight: 600;
  min-height: 44px;
  padding: 0 22px;
  line-height: 1;
}

.vp-woo-shell .woocommerce a.button:hover,
.vp-woo-shell .woocommerce button.button:hover,
.vp-woo-shell .woocommerce input.button:hover,
.vp-woo-shell .woocommerce #respond input#submit:hover {
  background: #234116;
  color: var(--vp-primary-contrast);
}

.vp-woo-shell .woocommerce .quantity .qty,
.vp-woo-shell .woocommerce input.input-text,
.vp-woo-shell .woocommerce textarea,
.vp-woo-shell .woocommerce select {
  border-radius: 12px;
  border: 1px solid var(--vp-border);
  background: var(--vp-surface);
  color: var(--vp-primary);
}

.vp-woo-shell .woocommerce .shop_table,
.vp-woo-shell .woocommerce table.shop_table {
  border: 1px solid var(--vp-border);
  border-radius: 16px;
  overflow: hidden;
}

.vp-woo-shell .woocommerce table.shop_table th,
.vp-woo-shell .woocommerce table.shop_table td {
  border-color: var(--vp-border);
  color: var(--vp-primary);
}

.vp-woo-shell .woocommerce-cart .cart-collaterals .cart_totals,
.vp-woo-shell .woocommerce-checkout .woocommerce-checkout-review-order,
.vp-woo-shell .woocommerce-checkout #customer_details {
  border: 1px solid var(--vp-border);
  border-radius: 16px;
  background: var(--vp-surface);
  padding: 18px;
}

.vp-product-page {
  padding: 42px 0 90px;
}

.vp-product-breadcrumb {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(45, 79, 30, 0.72);
}

.vp-product-breadcrumb__sep {
  color: rgba(45, 79, 30, 0.45);
}

.vp-product-breadcrumb a:hover,
.vp-product-breadcrumb a:focus-visible {
  color: var(--vp-primary);
}

.vp-product-article {
  color: var(--vp-primary);
}

.vp-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.vp-product-gallery__main {
  margin: 0;
  border-radius: 24px;
  border: 1px solid rgba(45, 79, 30, 0.12);
  overflow: hidden;
  background: #ece3d3;
}

.vp-product-gallery__main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.vp-product-gallery__thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 9px;
}

.vp-product-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--vp-border);
}

.vp-product-summary {
  border: 1px solid var(--vp-border);
  border-radius: 22px;
  background: var(--vp-surface);
  padding: 22px 22px 20px;
}

.vp-product-summary__badge {
  display: inline-flex;
  min-height: 26px;
  padding: 0 11px;
  border-radius: var(--vp-radius-pill);
  background: var(--vp-accent);
  color: #fff;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.vp-product-summary h1 {
  margin-top: 10px;
  font-size: clamp(2.2rem, 3.1vw, 3.5rem);
  line-height: 1.08;
}

.vp-product-summary__latin {
  margin-top: 4px;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(45, 79, 30, 0.74);
}

.vp-product-summary__price {
  margin-top: 14px;
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 1.1;
}

.vp-product-summary__price .price,
.vp-product-summary__price .amount {
  color: var(--vp-primary);
}

.vp-product-summary__price del {
  font-size: 1.15rem;
  color: rgba(45, 79, 30, 0.55);
}

.vp-product-summary__stock {
  margin-top: 8px;
  font-size: 0.94rem;
  font-weight: 600;
}

.vp-product-summary__stock.is-in-stock {
  color: #13724c;
}

.vp-product-summary__stock.is-out-stock {
  color: #ad2438;
}

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

.vp-product-summary__chips span {
  min-height: 30px;
  border-radius: var(--vp-radius-pill);
  border: 1px solid var(--vp-border);
  background: var(--vp-surface-soft);
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(45, 79, 30, 0.88);
  font-weight: 600;
}

.vp-product-summary__chips span.is-pet {
  background: #c8f4dd;
  border-color: #7fc6a4;
  color: #17674b;
}

.vp-product-summary__excerpt {
  margin-top: 16px;
  color: rgba(45, 79, 30, 0.84);
  line-height: 1.62;
}

.vp-product-summary__buy {
  margin-top: 18px;
}

.vp-product-summary__buy-row {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.vp-product-summary__buy .quantity {
  margin: 0 !important;
}

.vp-product-summary__buy .quantity .qty {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--vp-border);
  background: var(--vp-surface);
  color: var(--vp-primary);
  text-align: center;
  font-weight: 600;
}

.vp-product-add-to-cart {
  width: 100%;
  min-height: 46px;
  border: 0 !important;
  border-radius: var(--vp-radius-pill) !important;
  background: var(--vp-primary) !important;
  color: var(--vp-primary-contrast) !important;
  font-size: 0.98rem;
  font-weight: 700 !important;
  padding: 0 20px !important;
}

.vp-product-add-to-cart:hover,
.vp-product-add-to-cart:focus-visible {
  background: #234116 !important;
}

.vp-product-summary__alt-cart .single_add_to_cart_button,
.vp-product-summary__alt-cart .button {
  width: 100%;
  min-height: 46px;
  border-radius: var(--vp-radius-pill);
  border: 0;
  background: var(--vp-primary);
  color: var(--vp-primary-contrast);
}

.vp-product-summary__alt-cart .variations {
  margin-bottom: 14px !important;
}

.vp-product-summary__alt-cart .variations select {
  min-width: 220px;
}

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

.vp-product-summary__meta-cards article {
  border-radius: 14px;
  border: 1px solid var(--vp-border);
  background: var(--vp-surface-soft);
  padding: 10px 12px;
}

.vp-product-summary__meta-cards h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.vp-product-summary__meta-cards p {
  margin-top: 4px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(45, 79, 30, 0.78);
}

.vp-product-details {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.vp-product-details__block {
  border: 1px solid var(--vp-border);
  border-radius: 18px;
  background: var(--vp-surface);
  padding: 18px;
}

.vp-product-details__block h2 {
  font-size: 2.1rem;
  color: var(--vp-primary);
}

.vp-product-details__block > div {
  margin-top: 10px;
  color: rgba(45, 79, 30, 0.82);
  line-height: 1.66;
}

.vp-product-attributes-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.vp-product-attributes-list li {
  border-radius: 12px;
  border: 1px solid var(--vp-border);
  padding: 9px 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.vp-product-attributes-list strong {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.vp-product-attributes-list span {
  text-align: right;
  color: rgba(45, 79, 30, 0.78);
}

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

.vp-product-care__grid article {
  border: 1px solid var(--vp-border);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
}

.vp-product-care__grid h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.vp-product-care__grid p {
  margin-top: 4px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(45, 79, 30, 0.78);
}

.vp-product-related {
  margin-top: 42px;
}

.vp-product-related h2 {
  text-align: center;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  margin-bottom: 18px;
}

@media (max-width: 1200px) {
  .vp-brand__text {
    font-size: 1.48rem;
  }

  .vp-nav {
    gap: 24px;
  }

  .vp-search-form input {
    width: 250px;
  }

  .vp-footer-grid {
    gap: 32px;
  }

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

  .vp-home-care__layout {
    gap: 38px;
  }

  .vp-shop-sort select {
    width: 220px;
  }

  .vp-product-hero {
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .vp-header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
  }

  .vp-nav {
    display: none;
  }

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

  .vp-header-search--closed,
  .vp-header-search--open {
    display: none;
  }

  .vp-footer-newsletter__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 46px 0;
  }

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

  .vp-home-hero {
    min-height: 580px;
  }

  .vp-home-hero__inner {
    min-height: 580px;
  }

  .vp-home-hero__content p {
    font-size: 1.04rem;
  }

  .vp-home-filter-trigger {
    display: inline-flex;
  }

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

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

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

  .vp-home-care__image figcaption {
    right: 12px;
    bottom: -18px;
  }

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

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

  .vp-woo-shell .woocommerce-cart .cart-collaterals .cart_totals,
  .vp-woo-shell .woocommerce-checkout .woocommerce-checkout-review-order,
  .vp-woo-shell .woocommerce-checkout #customer_details {
    padding: 14px;
  }

  .vp-product-page {
    padding-top: 30px;
  }

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

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

@media (max-width: 720px) {
  .vp-container {
    width: min(var(--vp-container), calc(100% - 30px));
  }

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

  .vp-brand {
    gap: 8px;
  }

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

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

  .vp-header__actions {
    gap: 6px;
  }

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

  .vp-newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .vp-newsletter-form button {
    width: 100%;
  }

  .vp-footer-main .vp-container {
    padding: 44px 0 26px;
  }

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

  .vp-footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .vp-footer-legal nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .vp-home-hero {
    min-height: 530px;
  }

  .vp-home-hero__inner {
    min-height: 530px;
    align-items: flex-start;
    padding-top: 94px;
    padding-bottom: 60px;
  }

  .vp-home-hero__content h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .vp-home-hero__content p {
    font-size: 1rem;
  }

  .vp-home-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .vp-btn {
    width: 100%;
  }

  .vp-home-featured {
    padding: 62px 0 58px;
  }

  .vp-home-section-head {
    margin-bottom: 28px;
  }

  .vp-home-products {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .vp-home-care {
    padding: 62px 0 56px;
  }

  .vp-home-care__image figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 10px;
    display: inline-block;
  }

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

  .vp-home-guides {
    margin-top: 52px;
  }

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

  .vp-shop-page .vp-home-featured {
    padding-top: 40px;
  }

  .vp-shop-head {
    margin-bottom: 14px;
  }

  .vp-shop-head__title-wrap p {
    font-size: 0.92rem;
  }

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

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

  .vp-woo-shell {
    padding: 38px 0 62px;
  }

  .vp-product-page {
    padding: 24px 0 66px;
  }

  .vp-product-breadcrumb {
    font-size: 0.84rem;
    gap: 6px;
    margin-bottom: 14px;
  }

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

  .vp-product-summary__price {
    font-size: 2.1rem;
  }

  .vp-product-summary__buy-row {
    grid-template-columns: 1fr;
  }

  .vp-product-summary__buy .quantity .qty {
    height: 42px;
  }

  .vp-product-add-to-cart {
    min-height: 42px;
  }

  .vp-product-details {
    margin-top: 22px;
  }

  .vp-product-details__block {
    padding: 14px;
  }

  .vp-product-details__block h2 {
    font-size: 1.8rem;
  }

  .vp-product-attributes-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .vp-product-attributes-list span {
    text-align: left;
  }

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

  .vp-product-related {
    margin-top: 28px;
  }

  .vp-product-related h2 {
    font-size: 2.1rem;
    margin-bottom: 12px;
  }
}
