:root {
  /* Палітра — насичений синій (як на постелі) */
  --vp-brand: #0060f0;
  --vp-brand-dark: #0047ab;
  --vp-brand-deep: #002d73;
  --vp-brand-rgb: 0, 96, 240;
  --vp-blush: #b3d4ff;
  --vp-mauve: #6eb3ff;
  --vp-taupe: #4d8fd4;

  --vp-bg: #ffffff;
  --vp-white: #ffffff;
  --vp-rose: #d6ebff;
  --vp-rose-deep: #0060f0;
  --vp-mint: #f0f7ff;
  --vp-lavender: #e8f4ff;
  --vp-peach: #f5faff;
  --vp-text: #0f1f3d;
  --vp-text-muted: #4a6080;
  --vp-border: #cfe0f5;
  --vp-shadow: 0 4px 20px rgba(0, 45, 120, 0.08);
  --vp-radius: 16px;
  --vp-radius-sm: 8px;
  --vp-font: "Nunito", "Segoe UI", system-ui, sans-serif;
  --vp-heading: "Nunito", "Segoe UI", system-ui, sans-serif;
  --vp-container: 1200px;
  --vp-link: #0060f0;
  --vp-link-hover: #0047ab;
  --vp-btn-bg: #0047ab;
  --vp-btn-bg-hover: #003380;
  --vp-btn-text: #ffffff;
  --vp-price-sale: #c62828;
  --vp-price-old: #6b7f99;
  --vp-motion-duration: 0.5s;
  --vp-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--vp-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--vp-text);
  background: var(--vp-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Текстові посилання лише в контенті сторінок */
.entry-content a:not(.button):not(.wp-block-button__link):not(.added_to_cart):not(.checkout-button):not(.wc-forward):not(.remove),
.vp-rules-content a:not(.button),
.vp-faq-content a:not(.button),
.single-product .woocommerce-Tabs-panel.entry-content a:not(.button) {
  color: var(--vp-link);
  text-decoration: underline;
  text-decoration-color: rgba(var(--vp-brand-rgb), 0.35);
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.entry-content a:not(.button):not(.wp-block-button__link):not(.added_to_cart):not(.checkout-button):not(.wc-forward):not(.remove):hover,
.vp-rules-content a:not(.button):hover,
.vp-faq-content a:not(.button):hover,
.single-product .woocommerce-Tabs-panel.entry-content a:not(.button):hover {
  color: var(--vp-link-hover);
}

.vp-footer a:hover {
  color: var(--vp-brand);
}

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

/* Announcement bar */
.vp-announce {
  background: var(--vp-brand-dark);
  color: #fff;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
}

.vp-announce__track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 10px 0;
  animation: vp-marquee 28s linear infinite;
}

.vp-announce__track span {
  white-space: nowrap;
}

@keyframes vp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.vp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--vp-border);
}

.vp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.vp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vp-heading);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.vp-logo--image img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.vp-footer .vp-logo--image img {
  height: 48px;
}

.vp-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--vp-brand-dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
}

.vp-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vp-nav a {
  font-size: 15px;
  font-weight: 600;
  transition: color var(--vp-motion-duration) var(--vp-motion-ease);
}

.vp-nav a:hover {
  color: var(--vp-rose-deep);
}

.vp-nav li {
  position: relative;
  list-style: none;
}

.vp-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 220px;
  background: var(--vp-white);
  border: 1px solid var(--vp-border);
  border-radius: 12px;
  box-shadow: var(--vp-shadow);
}

@media (min-width: 769px) {
  .vp-nav > li.menu-item-has-children {
    position: relative;
  }

  .vp-nav > li.menu-item-has-children::before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 100%;
    height: 14px;
    z-index: 42;
  }

  .vp-nav > li > .sub-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition:
      opacity var(--vp-motion-duration) var(--vp-motion-ease),
      transform var(--vp-motion-duration) var(--vp-motion-ease),
      visibility 0s linear var(--vp-motion-duration);
  }

  .vp-nav > li:hover > .sub-menu,
  .vp-nav > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity var(--vp-motion-duration) var(--vp-motion-ease),
      transform var(--vp-motion-duration) var(--vp-motion-ease),
      visibility 0s;
  }

  .vp-nav .sub-menu li.menu-item-has-children {
    position: relative;
  }

  .vp-nav .sub-menu li.menu-item-has-children::before {
    content: '';
    position: absolute;
    top: -4px;
    bottom: -4px;
    left: 100%;
    width: 14px;
    z-index: 42;
  }

  .vp-nav .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    left: calc(100% + 4px);
    z-index: 41;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(6px);
    transition:
      opacity var(--vp-motion-duration) var(--vp-motion-ease),
      transform var(--vp-motion-duration) var(--vp-motion-ease),
      visibility 0s linear var(--vp-motion-duration);
  }

  .vp-nav .sub-menu li:hover > .sub-menu,
  .vp-nav .sub-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition:
      opacity var(--vp-motion-duration) var(--vp-motion-ease),
      transform var(--vp-motion-duration) var(--vp-motion-ease),
      visibility 0s;
  }

  .vp-nav .sub-menu li {
    position: relative;
  }

  .vp-nav .menu-item-has-children > a::after {
    content: '▾';
    margin-left: 6px;
    font-size: 0.75em;
    opacity: 0.7;
  }

  .vp-nav .sub-menu .menu-item-has-children > a::after {
    content: '▸';
    float: right;
    margin-left: 12px;
  }
}

.vp-nav .sub-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

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

.vp-icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--vp-border);
  background: var(--vp-white);
  display: grid;
  place-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--vp-text);
  -webkit-text-fill-color: currentColor;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}

a.vp-icon-btn:link,
a.vp-icon-btn:visited,
a.vp-icon-btn:hover,
a.vp-icon-btn:active,
a.vp-icon-btn:focus,
a.vp-icon-btn:focus-visible {
  color: var(--vp-text);
  -webkit-text-fill-color: currentColor;
  text-decoration: none;
}

.vp-icon-btn svg {
  display: block;
  stroke: var(--vp-text);
  color: var(--vp-text);
  fill: none;
  pointer-events: none;
}

.vp-icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--vp-shadow);
}

.vp-icon-btn:hover svg {
  stroke: var(--vp-brand-dark);
  color: var(--vp-brand-dark);
}

.vp-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--vp-rose-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.vp-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--vp-text);
  -webkit-text-fill-color: currentColor;
  padding: 8px;
  margin: 0;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.vp-menu-toggle svg {
  display: block;
  stroke: var(--vp-text);
  color: var(--vp-text);
  fill: none;
  pointer-events: none;
}

.vp-menu-toggle:hover svg,
.vp-menu-toggle:focus-visible svg {
  stroke: var(--vp-brand-dark);
  color: var(--vp-brand-dark);
}

.vp-nav__toggle {
  display: none;
}

/* Hero */
.vp-hero {
  padding: 48px 0 32px;
}

.vp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.vp-hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--vp-mint);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.vp-hero h1 {
  font-family: var(--vp-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 600;
}

.vp-hero__subtitle {
  font-size: 1.15rem;
  color: var(--vp-text-muted);
  margin-bottom: 28px;
}

.vp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vp-btn--primary {
  background: linear-gradient(135deg, var(--vp-brand-dark), var(--vp-mauve));
  color: var(--vp-btn-text);
  box-shadow: 0 8px 24px rgba(var(--vp-brand-rgb), 0.35);
}

.vp-btn--ghost {
  background: var(--vp-white);
  border: 1px solid var(--vp-border);
  color: var(--vp-text);
}

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

.vp-hero__visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--vp-radius);
  box-shadow: var(--vp-shadow);
}

.vp-hero__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Trust badges */
.vp-trust {
  padding: 24px 0 48px;
}

.vp-trust__title {
  font-family: var(--vp-heading);
  font-size: 1.75rem;
  text-align: center;
  margin: 0 0 24px;
}

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

.vp-trust__item {
  background: var(--vp-white);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius);
  padding: 24px;
  text-align: center;
}

.vp-trust__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: var(--vp-peach);
}

.vp-trust__item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.vp-trust__item p {
  margin: 0;
  font-size: 14px;
  color: var(--vp-text-muted);
}

/* Section */
.vp-section {
  padding: 56px 0;
}

.vp-section--soft {
  background: linear-gradient(180deg, var(--vp-white) 0%, var(--vp-peach) 100%);
}

.vp-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.vp-section__head h2 {
  font-family: var(--vp-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 10px;
  font-weight: 600;
}

.vp-section__head p {
  margin: 0;
  color: var(--vp-text-muted);
}

.vp-section__cta {
  text-align: center;
  margin-top: 32px;
}

/* Brand values — без порівняння з конкурентами */
.vp-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.vp-value {
  background: var(--vp-white);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vp-value:hover {
  border-color: var(--vp-blush);
  box-shadow: var(--vp-shadow);
}

.vp-value__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--vp-peach);
  font-size: 1.5rem;
  line-height: 1;
}

.vp-value h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--vp-text);
}

.vp-value p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--vp-text-muted);
}

/* Categories */
.vp-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vp-category-card {
  position: relative;
  border-radius: var(--vp-radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--vp-lavender);
  transition: transform 0.25s;
}

.vp-category-card:hover {
  transform: translateY(-6px);
}

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

.vp-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 61, 61, 0.55), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
}

.vp-category-card__overlay h3 {
  margin: 0;
  font-family: var(--vp-heading);
  font-size: 1.4rem;
}

/* Products — grid у woocommerce.css */

/* Benefits */
.vp-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vp-benefit {
  background: var(--vp-white);
  border-radius: var(--vp-radius);
  padding: 32px 24px;
  border: 1px solid var(--vp-border);
}

.vp-benefit__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vp-mint);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
}

.vp-benefit h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.vp-benefit p {
  margin: 0;
  font-size: 14px;
  color: var(--vp-text-muted);
}

/* Reviews slider */
.vp-reviews-section {
  background: linear-gradient(180deg, var(--vp-peach) 0%, var(--vp-white) 100%);
}

.vp-reviews {
  position: relative;
}

.vp-reviews__viewport {
  overflow: hidden;
  margin: 0 -4px;
  padding: 4px;
}

.vp-reviews__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.vp-review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: calc((100% - 40px) / 3);
  box-sizing: border-box;
  background: var(--vp-white);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.vp-review-card__stars {
  display: inline-flex;
  gap: 2px;
  color: #e0d5cf;
  font-size: 1.1rem;
  line-height: 1;
}

.vp-review-card__star.is-filled {
  color: #e8a838;
}

.vp-review-card__quote {
  margin: 0;
  flex: 1;
}

.vp-review-card__quote p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--vp-text);
}

.vp-review-card__quote p::before {
  content: '\201C';
  color: var(--vp-brand);
  font-size: 1.4rem;
  line-height: 0;
  margin-right: 2px;
}

.vp-review-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 13px;
  color: var(--vp-text-muted);
  border-top: 1px solid var(--vp-border);
  padding-top: 12px;
}

.vp-review-card__author {
  font-style: normal;
  font-weight: 800;
  color: var(--vp-text);
}

.vp-review-card__city::before {
  content: '·';
  margin-right: 10px;
  color: var(--vp-border);
}

.vp-review-card__product {
  flex: 0 0 100%;
  font-size: 12px;
  color: var(--vp-brand);
  font-weight: 600;
}

.vp-reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.vp-reviews__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--vp-border);
  background: var(--vp-white);
  color: var(--vp-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.vp-reviews__btn:hover:not(:disabled) {
  border-color: var(--vp-brand);
  background: var(--vp-peach);
}

.vp-reviews__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.vp-reviews__dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 280px;
}

.vp-reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--vp-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.vp-reviews__dot.is-active {
  background: var(--vp-brand);
  transform: scale(1.15);
}

/* Footer */
.vp-footer {
  background: var(--vp-white);
  border-top: 1px solid var(--vp-border);
  padding: 48px 0 24px;
  margin-top: 48px;
}

.vp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.vp-footer h4 {
  font-family: var(--vp-heading);
  font-size: 1.2rem;
  margin: 0 0 16px;
}

.vp-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vp-footer li {
  margin-bottom: 8px;
}

.vp-footer__bottom {
  border-top: 1px solid var(--vp-border);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--vp-text-muted);
}

/* WooCommerce pages */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--vp-white);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius);
  padding: 16px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin-bottom: 4px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--vp-radius-sm);
  font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: var(--vp-peach);
}

.woocommerce-account .woocommerce-MyAccount-content {
  background: var(--vp-white);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius);
  padding: 24px;
}

.vp-shop-hero {
  padding: 40px 0 24px;
  text-align: center;
}

.vp-shop-hero h1 {
  font-family: var(--vp-heading);
  font-size: 2.4rem;
  margin: 0;
}

.vp-shop-hero__lead {
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--vp-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Rules page */
.vp-rules-page {
  padding-bottom: 64px;
}

.vp-rules-hero {
  text-align: center;
  padding: 48px 0 40px;
  max-width: 720px;
  margin-inline: auto;
}

.vp-rules-hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vp-rose-deep);
  margin: 0 0 12px;
}

.vp-rules-hero h1 {
  font-family: var(--vp-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.15;
}

.vp-rules-hero__lead {
  font-size: 1.1rem;
  color: var(--vp-text-muted);
  margin: 0 0 28px;
  line-height: 1.65;
}

.vp-rules-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.vp-rules-nav a {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--vp-border);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  background: var(--vp-white);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.vp-rules-nav a:hover {
  border-color: var(--vp-brand-dark);
  background: var(--vp-brand-dark);
  color: var(--vp-btn-text);
}

.vp-rules-section {
  margin-bottom: 48px;
}

.vp-rules-section__head {
  margin-bottom: 24px;
}

.vp-rules-section__head h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.vp-rules-section__head p {
  margin: 0;
  color: var(--vp-text-muted);
  max-width: 640px;
}

.vp-rules-section__head--plain h2 {
  font-size: 1.5rem;
}

.vp-rules-grid {
  display: grid;
  gap: 20px;
}

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

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

.vp-rules-grid--align-start {
  align-items: start;
}

.vp-rules-card {
  background: var(--vp-white);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius);
  padding: 24px;
  height: 100%;
}

.vp-rules-card--accent {
  border-color: var(--vp-blush);
  background: linear-gradient(180deg, var(--vp-white) 0%, var(--vp-peach) 100%);
}

.vp-rules-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--vp-peach);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.vp-rules-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.35;
}

.vp-rules-card p {
  margin: 0 0 10px;
  color: var(--vp-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.vp-rules-card p:last-child {
  margin-bottom: 0;
}

.vp-rules-card__note {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid var(--vp-border);
  font-size: 0.88rem !important;
}

.vp-rules-card__contact {
  margin-top: 12px !important;
}

.vp-rules-card__contact a {
  font-weight: 800;
  color: var(--vp-brand-dark);
}

.vp-rules-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vp-rules-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--vp-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.vp-rules-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vp-brand-dark);
}

.vp-rules-list li:last-child {
  margin-bottom: 0;
}

.vp-rules-list--checks li::before {
  content: "✓";
  width: auto;
  height: auto;
  background: none;
  color: var(--vp-brand-dark);
  font-weight: 800;
  font-size: 0.85rem;
  top: 0.15em;
}

.vp-rules-legal {
  background: #fafafa;
  border: 1px solid var(--vp-border);
  border-left: 4px solid var(--vp-brand-dark);
  border-radius: var(--vp-radius-sm);
  padding: 24px;
}

.vp-rules-legal h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.vp-rules-legal p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--vp-text-muted);
  line-height: 1.65;
}

.vp-rules-cta {
  margin-top: 16px;
}

.vp-rules-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: var(--vp-brand-dark);
  color: #fff;
  border-radius: var(--vp-radius);
}

.vp-rules-cta__inner strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.vp-rules-cta__inner p {
  margin: 0;
  opacity: 0.88;
  font-size: 0.95rem;
}

.vp-rules-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vp-rules-cta .vp-btn--primary {
  background: #fff;
  color: var(--vp-brand-dark);
}

.vp-rules-cta .vp-btn--primary:hover {
  background: var(--vp-peach);
}

.vp-rules-cta .vp-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.vp-rules-cta .vp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.vp-rules-page .vp-anchor-section {
  scroll-margin-top: calc(var(--vp-header-offset, 88px) + 24px);
}

/* Responsive */
@media (max-width: 1024px) {
  .vp-categories {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .vp-benefits,
  .vp-trust__grid,
  .vp-values {
    grid-template-columns: 1fr;
  }

  .vp-review-card {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
  }

  .vp-rules-grid--3,
  .vp-rules-grid--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .vp-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .vp-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--vp-white);
    padding: 16px 24px;
    border-bottom: 1px solid var(--vp-border);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity var(--vp-motion-duration) var(--vp-motion-ease),
      transform var(--vp-motion-duration) var(--vp-motion-ease),
      visibility 0s linear var(--vp-motion-duration);
  }

  .vp-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity var(--vp-motion-duration) var(--vp-motion-ease),
      transform var(--vp-motion-duration) var(--vp-motion-ease),
      visibility 0s;
  }

  .vp-nav > li {
    width: 100%;
  }

  .vp-nav .sub-menu {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: 0;
    width: 100%;
    background: transparent;
    flex: 1 1 100%;
    order: 10;
    transition:
      max-height 0.38s var(--vp-motion-ease),
      opacity 0.28s var(--vp-motion-ease),
      padding 0.28s var(--vp-motion-ease);
  }

  .vp-nav .menu-item-has-children.is-open > .sub-menu {
    max-height: var(--vp-nav-sub-max, 1600px);
    opacity: 1;
    padding: 4px 0 8px;
  }

  .vp-nav .menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }

  .vp-nav .menu-item-has-children > a {
    flex: 1 1 auto;
    min-width: 0;
    order: 1;
  }

  .vp-nav .menu-item-has-children > .vp-nav__toggle {
    order: 2;
  }

  .vp-nav > li > a {
    font-size: 15px;
  }

  .vp-nav .sub-menu > li > a {
    font-size: 14px;
    padding: 8px 0 8px 20px;
    white-space: normal;
  }

  .vp-nav .sub-menu .sub-menu > li > a {
    font-size: 13px;
    padding-left: 40px;
  }

  .vp-nav .sub-menu a {
    padding: 8px 0;
    white-space: normal;
  }

  .vp-nav__toggle {
    display: grid;
    flex-shrink: 0;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--vp-text-muted);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .vp-nav__toggle:hover {
    background: var(--vp-peach);
    color: var(--vp-brand-dark);
  }

  .vp-nav__toggle[aria-expanded='true'] {
    color: var(--vp-brand-dark);
    transform: rotate(180deg);
    transition: transform 0.28s var(--vp-motion-ease), background 0.15s ease, color 0.15s ease;
  }

  .vp-nav__toggle {
    transition: transform 0.28s var(--vp-motion-ease), background 0.15s ease, color 0.15s ease;
  }

  .vp-nav .menu-item-has-children > a::after,
  .vp-nav .sub-menu .menu-item-has-children > a::after {
    content: none;
  }

  .vp-menu-toggle {
    display: block;
  }

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

  .vp-review-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

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

/* SEO content block — повний текст у HTML; згортання лише після ініціалізації JS */
.vp-section--seo,
.vp-archive-seo-wrap {
  padding-top: 0;
}

.vp-seo-content {
  margin: 24px 0 40px;
  padding: 24px 28px;
  background: var(--vp-peach, #f5faff);
  border: 1px solid var(--vp-border-card, #e8ddd8);
  border-radius: 16px;
}

.vp-seo-content__title {
  font-family: var(--vp-heading);
  color: var(--vp-text);
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.vp-seo-content__body {
  color: var(--vp-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  transition: max-height 0.45s ease;
}

.vp-seo-content.vp-seo-content--ready:not(.is-expanded) .vp-seo-content__body {
  max-height: 5.5em;
  overflow: hidden;
}

.vp-seo-content.is-expanded .vp-seo-content__body {
  max-height: none;
  overflow: visible;
}

.vp-seo-content__body h3 {
  font-family: var(--vp-heading);
  color: var(--vp-text);
  margin: 18px 0 10px;
  font-size: 1.05rem;
}

.vp-seo-content__body p {
  margin: 0 0 12px;
}

.vp-seo-content__body a {
  color: var(--vp-brand-dark, #0047ab);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vp-seo-content__body a:hover {
  color: var(--vp-brand, #0060f0);
}

.vp-seo-content__toggle {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 8px 16px;
  border: 1px solid var(--vp-brand, #0060f0);
  border-radius: 999px;
  background: #fff;
  color: var(--vp-brand, #0060f0);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.vp-seo-content__toggle:hover {
  background: var(--vp-brand, #0060f0);
  color: #fff;
}

/* FAQ — усі відповіді видимі без JS */
.vp-faq-list {
  display: grid;
  gap: 16px;
}

.vp-faq-item {
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--vp-border-card);
  border-radius: 8px;
}

.vp-faq-item__q {
  margin: 0 0 10px;
  font-family: var(--vp-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vp-text);
}

.vp-faq-item__a {
  margin: 0;
  color: var(--vp-text-muted);
  line-height: 1.65;
}

.vp-faq-more {
  margin-top: 24px;
  text-align: center;
  color: var(--vp-text-muted);
}

/* Shared motion */
@keyframes vp-motion-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vp-motion-scale-in {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --vp-motion-duration: 0.01ms;
  }

  .vp-mini-cart__overlay,
  .vp-mini-cart__panel,
  .vp-quick-order__overlay,
  .vp-quick-order__dialog,
  .vp-nav {
    transition: none !important;
    animation: none !important;
  }
}
