/* Drovokol — Figma 01_Main page (1920) */

:root {
  --orange: #f16a2d;
  --orange-h: #e05f22;
  --dark: #1e1e1e;
  --muted: #9a9a9a;
  --line: #e8e8e8;
  --white: #fff;
  --header-top: #1e1e1e;
  --header-soft: #f2f2f2;
  --hero-bg: #f2f2f2;
  --hero-accent: #ff7a30;
  --wrap: 1408px;
  --gap: 32px;
  --radius: 8px;
  --pill: 999px;
  --font-heading: "Raleway", system-ui, sans-serif;
  --font-body: "Lato", system-ui, sans-serif;
  --font: var(--font-body);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark);
  background: var(--white);
}

/* Заголовки — Raleway Bold; основной текст — Lato */
:is(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .entry-title,
  .page-title,
  [class$="__title"],
  [class$="__heading"]
) {
  font-family: var(--font-heading);
  font-weight: 700;
}

.entry-content :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-heading);
  font-weight: 700;
}

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

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

.dv-wrap {
  width: min(var(--wrap), 100% - 32px);
  margin-inline: auto;
}

/* —— Button —— */
.dv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 40px;
  border: 0;
  border-radius: 4px;
  background: var(--orange);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.dv-btn:hover {
  background: var(--orange-h);
  color: var(--white);
}

.dv-btn--lg {
  min-width: 213px;
}

.dv-btn--block {
  width: 100%;
  min-height: 48px;
  padding: 0 24px;
}

/* —— Header Figma 315:4836 — 136px desktop (40+96) / 56px mobile —— */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

body.dv-menu-open {
  overflow: hidden;
}

.dv-header {
  position: sticky;
  top: 0;
  z-index: 200;
}

/* — Top bar (dark) — */
.dv-header__bar--top {
  display: none;
  background: var(--header-top);
  color: var(--white);
  font-size: 13px;
  line-height: 1.2;
}

.dv-header__top-start {
  display: flex;
  align-items: center;
  min-width: 0;
  justify-self: start;
}

.dv-header__phones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dv-header__phone-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dv-header__phone-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.dv-header__bar--top .dv-header__phone-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}

.dv-header__phone-link {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  white-space: nowrap;
}

.dv-header__phone-link:hover {
  opacity: 0.85;
}

.dv-header__hours {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  white-space: nowrap;
  text-align: center;
  justify-self: center;
}

.dv-header__top-end {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  justify-self: end;
}

.dv-header__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  cursor: default;
}

.dv-header__lang-chevron {
  width: 10px;
  height: 6px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dv-header__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dv-header__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  opacity: 0.95;
  transition: opacity 0.2s;
}

.dv-header__social:hover {
  opacity: 0.7;
}

.dv-header__social svg {
  display: block;
  width: 24px;
  height: 24px;
}

/* — Main bar (white) — */
.dv-header__bar--main {
  background: var(--white);
}

.dv-header__bar--main .dv-header__bar-inner {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
}

.dv-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.dv-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.2s, opacity 0.2s;
}

.dv-header__logo {
  justify-self: center;
  flex-shrink: 0;
}

.dv-header__logo img {
  display: block;
  width: auto;
  height: 32px;
}

.dv-header__logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.dv-header__nav,
.dv-header__search,
.dv-header__bar--main .dv-header__cta {
  display: none;
}

.dv-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.dv-header__search {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 335px;
}

.dv-header__search-input {
  width: 100%;
  height: 48px;
  padding: 0 48px 0 24px;
  border: 0;
  border-radius: var(--pill);
  background: var(--header-soft);
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  outline: none;
  transition: box-shadow 0.2s;
}

.dv-header__search-input::placeholder {
  color: var(--muted);
}

.dv-header__search-input:focus {
  box-shadow: 0 0 0 2px rgba(241, 106, 45, 0.25);
}

.dv-header__search-btn {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: center / 22px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' stroke='%231e1e1e' stroke-width='2'%3E%3Ccircle cx='9' cy='9' r='5.5'/%3E%3Cpath d='M13.5 13.5L18 18'/%3E%3C/svg%3E");
  transform: translateY(-50%);
  cursor: pointer;
}

.dv-header__icon {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--header-soft);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px;
  transition: background-color 0.2s;
}

.dv-header__icon:hover {
  background-color: #e8e8e8;
}

.dv-header__icon--cart {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' stroke='%231e1e1e' stroke-width='2'%3E%3Cpath d='M6 6h14l-1.5 9H7.5L6 6zM6 6L5 3H2M9 20a1 1 0 100-2 1 1 0 000 2zm8 0a1 1 0 100-2 1 1 0 000 2z'/%3E%3C/svg%3E");
}

.dv-header__badge {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.dv-header__cta {
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--pill);
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}

.dv-header__cta:hover {
  background: var(--orange-h);
  color: var(--white);
}

/* Figma nav link «Головна»: 16px / 400, gap 40px, active & hover #f26522 */
.dv-header__menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dv-header__menu > li {
  flex-shrink: 0;
}

.dv-header__menu a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  color: var(--dark);
  white-space: nowrap;
  transition: color 0.2s;
}

.dv-header__menu a:hover {
  color: var(--orange);
}

.dv-header__menu .current-menu-item > a,
.dv-header__menu .current_page_item > a,
.dv-header__menu .current-menu-ancestor > a {
  font-weight: 400;
  color: var(--orange);
}

.dv-header__menu .sub-menu {
  display: none;
}

/* Mobile menu — Figma 01.1_menu */
.dv-mobile {
  position: fixed;
  inset: 0;
  z-index: 300;
}

.dv-mobile__panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 12px 16px 24px;
  background: var(--header-top);
  overflow-y: auto;
}

.dv-mobile__head {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.dv-mobile__close {
  justify-self: start;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: center / 20px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M4 4l12 12M16 4L4 16'/%3E%3C/svg%3E");
  cursor: pointer;
}

.dv-mobile__logo {
  justify-self: center;
}

.dv-mobile__logo img {
  display: block;
  height: 32px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.dv-mobile__logo .dv-header__logo-text {
  color: var(--white);
}

.dv-mobile__cart,
.dv-mobile__cart-spacer {
  justify-self: end;
  width: 48px;
  height: 48px;
}

.dv-mobile__cart {
  position: relative;
  border-radius: 50%;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' stroke='%231e1e1e' stroke-width='2'%3E%3Cpath d='M6 6h14l-1.5 9H7.5L6 6zM6 6L5 3H2M9 20a1 1 0 100-2 1 1 0 000 2zm8 0a1 1 0 100-2 1 1 0 000 2z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px;
}

.dv-mobile__cart .dv-header__badge {
  top: 4px;
  right: 4px;
}

.dv-header__search--mobile {
  display: block;
  max-width: none;
  margin-bottom: 8px;
}

.dv-header__search--mobile .dv-header__search-input {
  height: 48px;
  border: 0;
  border-radius: var(--pill);
  background: var(--header-soft);
  color: var(--dark);
}

.dv-mobile__nav {
  margin-bottom: 0;
}

.dv-mobile__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dv-mobile__menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dv-mobile__menu a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-height: 56px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white);
  text-align: right;
  transition: color 0.2s;
}

.dv-mobile__menu a::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23f16a2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 11.5L11.5 4.5M11.5 4.5H6.5M11.5 4.5v5'/%3E%3C/svg%3E");
}

.dv-mobile__menu a:hover,
.dv-mobile__menu .current-menu-item > a,
.dv-mobile__menu .current_page_item > a {
  color: var(--orange);
}

.dv-mobile__contacts {
  margin-top: 32px;
  text-align: right;
}

.dv-mobile__label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.dv-mobile__phones {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.dv-mobile__phone-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.dv-mobile__phone-item .dv-header__phone-icon {
  width: 22px;
  height: 22px;
  background: transparent;
}

.dv-mobile__phone-item .dv-header__phone-icon svg {
  width: 22px;
  height: 22px;
}

.dv-mobile__phone-item a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--white);
}

.dv-mobile__phone-item a:hover {
  color: var(--orange);
}

.dv-mobile__hours {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--white);
}

.dv-header__cta--mobile {
  display: flex;
  margin-top: auto;
  padding-top: 32px;
  width: 100%;
  min-height: 52px;
  border-radius: var(--pill);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (min-width: 1024px) {
  .dv-header__bar--top {
    display: block;
  }

  .dv-header__bar--top .dv-header__bar-inner--top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    min-height: 36px;
    padding-block: 8px;
  }

  .dv-header__bar--main .dv-header__bar-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 88px;
    padding-block: 16px;
  }

  .dv-header__burger {
    display: none;
  }

  .dv-header__logo {
    justify-self: auto;
    order: 0;
  }

  .dv-header__logo img {
    width: 152px;
    height: 36px;
  }

  .dv-header__nav {
    display: flex;
    flex: 0 1 auto;
    min-width: 0;
    order: 1;
  }

  .dv-header__search {
    display: block;
    order: 2;
    width: 300px;
    max-width: 300px;
    margin-left: auto;
  }

  .dv-header__actions {
    order: 3;
    gap: 12px;
    flex-shrink: 0;
  }

  .dv-header__bar--main .dv-header__cta {
    display: inline-flex;
  }

  .dv-mobile {
    display: none !important;
  }
}

/* —— Hero + promo (Figma banner/cards) —— */
.dv-hero-block {
  position: relative;
  margin-bottom: 48px;
  background: var(--white);
}

.dv-hero {
  position: relative;
  background: var(--hero-bg);
  overflow: hidden;
}

.dv-hero::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 8%;
  width: min(72%, 900px);
  height: 85%;
  pointer-events: none;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none'%3E%3Cellipse cx='320' cy='300' rx='280' ry='260' stroke='%23fff' stroke-width='1.5' opacity='0.55'/%3E%3Cellipse cx='360' cy='280' rx='220' ry='200' stroke='%23fff' stroke-width='1' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.9;
}

.dv-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  padding: 48px 0 120px;
  align-items: center;
}

.dv-hero__label {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #666;
}

.dv-hero__title {
  margin: 0;
  max-width: 720px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark);
}

.dv-hero__accent {
  color: var(--hero-accent);
}

.dv-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 24px;
  margin-top: 36px;
}

.dv-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: var(--pill);
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
}

.dv-hero__btn:hover {
  background: #000;
  color: var(--white);
  opacity: 0.92;
}

.dv-hero__cta-divider {
  display: none;
  flex-shrink: 0;
  width: 1px;
  height: 48px;
  background: #d4d4d4;
}

.dv-hero__note {
  margin: 0;
  max-width: 380px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: #666;
}

.dv-hero__media {
  position: relative;
  z-index: 3;
  text-align: center;
}

.dv-hero__media img {
  width: 100%;
  max-width: 520px;
  max-height: 480px;
  margin-inline: auto;
  object-fit: contain;
}

.dv-promo {
  position: relative;
  z-index: 2;
  margin-top: -72px;
  padding-bottom: 8px;
}

.dv-promo__grid {
  display: grid;
  gap: 16px;
}

.dv-promo__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
  padding: 28px 28px 32px;
  border-radius: 16px;
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}

.dv-promo__card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.dv-promo__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.dv-promo__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.dv-promo__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

.dv-promo__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
}

@media (min-width: 768px) {
  .dv-hero__title {
    font-size: 42px;
  }

  .dv-hero__cta-divider {
    display: block;
  }

  .dv-promo__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
  }
}

@media (min-width: 1024px) {
  .dv-hero-block {
    margin-bottom: 64px;
  }

  .dv-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    min-height: 620px;
    padding: 80px 0 180px;
  }

  .dv-hero__title {
    font-size: 56px;
    line-height: 1.08;
  }

  .dv-hero__media {
    align-self: end;
  }

  .dv-hero__media img {
    max-width: 606px;
    max-height: min(72vh, 720px);
    margin-right: -60px;
    margin-left: auto;
  }

  .dv-promo {
    margin-top: -100px;
  }

  .dv-promo__card {
    min-height: 220px;
    padding: 32px 32px 36px;
  }

  .dv-promo__title {
    font-size: 20px;
  }

  .dv-promo__text {
    font-size: 14px;
  }
}

/* —— Catalog (Figma: white cards, 3-col grid) —— */
.dv-catalog {
  padding: 48px 0 64px;
}

.dv-catalog__grid {
  display: grid;
  gap: 16px;
}

.dv-catalog__small {
  display: grid;
  gap: 16px;
}

.dv-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 24px;
  border-radius: 16px;
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}

.dv-cat:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.dv-cat__head {
  flex-shrink: 0;
  padding-right: 40px;
}

.dv-cat__head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

.dv-cat--big .dv-cat__head h3 {
  font-size: 22px;
}

.dv-cat__media {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 12px 0 36px;
}

.dv-cat__media img {
  width: auto;
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.35s;
}

.dv-cat--big .dv-cat__media {
  min-height: 280px;
  padding-bottom: 48px;
}

.dv-cat--big .dv-cat__media img {
  max-height: min(420px, 52vh);
}

.dv-cat:hover .dv-cat__media img {
  transform: scale(1.03);
}

.dv-cat__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 24px;
  height: 24px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23f16a2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7M17 7H10M17 7v7'/%3E%3C/svg%3E");
}

@media (min-width: 768px) {
  .dv-catalog__grid {
    gap: var(--gap);
  }

  .dv-catalog__small {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
  }

  .dv-cat--small {
    min-height: 280px;
  }
}

@media (min-width: 1024px) {
  .dv-catalog {
    padding: 64px 0 80px;
  }

  .dv-catalog__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(300px, auto));
    gap: var(--gap);
    align-items: stretch;
  }

  .dv-cat--big {
    grid-row: 1 / span 2;
    grid-column: 1;
    min-height: 632px;
    padding: 32px;
  }

  .dv-cat--big .dv-cat__head h3 {
    font-size: 24px;
  }

  .dv-cat--big .dv-cat__arrow {
    right: 32px;
    bottom: 32px;
  }

  .dv-catalog__small {
    display: contents;
  }

  .dv-cat--small {
    min-height: 300px;
    padding: 28px 28px 32px;
  }

  .dv-cat--small .dv-cat__media img {
    max-height: 200px;
  }
}

/* —— Popular products (Figma + slider) —— */
.dv-popular {
  padding: 48px 0 64px;
  overflow: visible;
}

.dv-popular__heading {
  margin: 0 0 32px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.dv-popular__heading span {
  color: var(--orange);
}

.dv-popular__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.dv-popular__tab {
  position: relative;
  margin: 0 0 -1px;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.dv-popular__tab:hover {
  color: var(--orange);
}

.dv-popular__tab.is-on {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.dv-popular__slider {
  overflow: visible;
}

.dv-popular__slider.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

/* Padding inside viewport so card shadows are not clipped */
.dv-popular__viewport {
  overflow: hidden;
  box-sizing: border-box;
  width: calc(100% + 24px);
  margin-inline: -12px;
  padding: 20px 12px 28px;
}

.dv-popular__track {
  display: flex;
  align-items: stretch;
  transition: transform 0.45s ease;
  will-change: transform;
}

.dv-popular__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 20px 16px;
  box-sizing: border-box;
}

.dv-product {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px;
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dv-product__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  min-height: 28px;
}

.dv-product__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dv-product__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dv-product__badge--popular {
  background: #e8e8e8;
  color: var(--dark);
}

.dv-product__badge--sale {
  background: #fde8dc;
  color: var(--orange);
}

.dv-product__badge--new {
  background: #e3f5e8;
  color: #2d7a46;
}

.dv-product__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.dv-product__rating-star {
  width: 16px;
  height: 16px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e1e1e' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.dv-product__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 180px;
  margin-bottom: 16px;
}

.dv-product__img {
  width: auto;
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
}

.dv-product__img--empty {
  display: block;
  width: 100%;
  height: 180px;
  border-radius: 8px;
  background: var(--header-soft);
}

.dv-product__body {
  margin-bottom: 16px;
}

.dv-product__name {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.dv-product__name a:hover {
  color: var(--orange);
}

.dv-product__price {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.dv-product__price ins {
  color: var(--dark);
  text-decoration: none;
}

.dv-product__price del {
  margin-right: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: line-through;
}

.dv-product__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.dv-product__buy-one {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--dark);
  border-radius: var(--pill);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  color: var(--dark);
  transition: background 0.2s, color 0.2s;
}

.dv-product__buy-one:hover {
  background: var(--dark);
  color: var(--white);
}

.dv-product__cart {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark) center / 20px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M6 6h14l-1.5 9H7.5L6 6zM6 6L5 3H2M9 20a1 1 0 100-2 1 1 0 000 2zm8 0a1 1 0 100-2 1 1 0 000 2z'/%3E%3C/svg%3E");
  transition: opacity 0.2s;
  background-position-x: 43%;
}

.dv-product__cart:hover {
  opacity: 0.85;
}

.dv-popular__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
}

.dv-popular__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.dv-popular__dot {
  width: 32px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: var(--line);
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}

.dv-popular__dot.is-on {
  width: 64px;
  background: var(--dark);
}

.dv-popular__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.dv-popular__arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  background: var(--white) center / 18px no-repeat;
  cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s;
}

.dv-popular__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.dv-popular__arrow#dv-pop-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M11 14l-5-6 5-6'/%3E%3C/svg%3E");
}

.dv-popular__arrow#dv-pop-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M7 4l5 6-5 6'/%3E%3C/svg%3E");
}

@media (min-width: 768px) {
  .dv-popular__viewport {
    width: calc(100% + 32px);
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .dv-popular__slide {
    flex: 0 0 50%;
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .dv-popular {
    padding: 80px 0 64px;
  }

  .dv-popular__heading {
    margin-bottom: 40px;
    font-size: 40px;
    line-height: 1.15;
  }

  .dv-popular__tabs {
    gap: 48px;
    margin-bottom: 40px;
  }

  .dv-popular__viewport {
    width: calc(100% + 40px);
    margin-inline: -20px;
    padding: 24px 20px 32px;
  }

  .dv-popular__slide {
    flex: 0 0 25%;
    padding: 20px 16px;
  }

  .dv-product {
    min-height: 440px;
    padding: 24px;
  }

  .dv-product__img {
    max-height: 220px;
  }
}

/* —— Blog —— */
.dv-blog {
  padding: 48px 0 64px;
}

.dv-blog__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 32px;
}

.dv-blog__heading {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.dv-blog__heading span {
  color: var(--orange);
}

.dv-blog__all {
  display: none;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

.dv-blog__all:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dv-blog__view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  padding: 0 20px;
  border: 2px solid var(--dark);
  border-radius: var(--pill);
  background: var(--white);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.dv-blog__view-all:hover {
  background: var(--dark);
  color: var(--white);
}

.dv-blog__view-all-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%231e1e1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11.5 4.5L4.5 11.5M4.5 11.5h5M4.5 11.5V6.5'/%3E%3C/svg%3E");
}

.dv-blog__view-all-icon--next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%231e1e1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 11.5L11.5 4.5M11.5 4.5H6.5M11.5 4.5v5'/%3E%3C/svg%3E");
}

.dv-blog__view-all:hover .dv-blog__view-all-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11.5 4.5L4.5 11.5M4.5 11.5h5M4.5 11.5V6.5'/%3E%3C/svg%3E");
}

.dv-blog__view-all:hover .dv-blog__view-all-icon--next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 11.5L11.5 4.5M11.5 4.5H6.5M11.5 4.5v5'/%3E%3C/svg%3E");
}

.dv-blog__view-all-text {
  text-align: center;
}

.dv-blog__grid {
  display: grid;
  gap: 32px;
}

.dv-article {
  display: flex;
  flex-direction: column;
}

.dv-article__media {
  display: block;
  color: inherit;
}

.dv-article__img {
  aspect-ratio: 448 / 280;
  border-radius: 12px;
  overflow: hidden;
  background: var(--hero-bg);
}

.dv-article__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.dv-article__media:hover .dv-article__img img {
  transform: scale(1.03);
}

.dv-article__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 20px;
}

.dv-article__date {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

.dv-article__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.dv-article__title a {
  color: var(--dark);
  text-decoration: none;
}

.dv-article__title a:hover {
  color: var(--orange);
}

.dv-article__excerpt {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dv-article__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

.dv-article__more:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dv-article__more-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23f16a2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 11.5L11.5 4.5M11.5 4.5H6.5M11.5 4.5v5'/%3E%3C/svg%3E");
}

@media (max-width: 1023px) {
  .dv-blog__head {
    margin-bottom: 24px;
  }

  .dv-blog__grid {
    gap: 40px;
  }

  .dv-article__more {
    color: var(--dark);
  }

  .dv-article__more:hover {
    color: var(--orange);
  }
}

/* —— Blog archive (10_articles) —— */
.dv-articles-page {
  padding: 24px 0 0;
}

.dv-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.dv-breadcrumbs a {
  color: var(--muted);
  transition: color 0.2s;
}

.dv-breadcrumbs a:hover {
  color: var(--orange);
}

.dv-breadcrumbs__sep {
  color: var(--muted);
}

.dv-breadcrumbs__current {
  color: var(--dark);
}

.dv-page-head__title {
  margin: 0 0 32px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

.dv-articles-page__grid {
  margin-bottom: 0;
}

.dv-articles-page__load {
  display: flex;
  justify-content: center;
  padding: 40px 0 56px;
}

.dv-articles-page__load-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 40px;
  border: 2px solid var(--dark);
  border-radius: var(--pill);
  background: var(--white);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.dv-articles-page__load-btn:hover {
  background: var(--dark);
  color: var(--white);
}

.dv-articles-page__load-btn:disabled,
.dv-articles-page__load-btn.is-loading {
  opacity: 0.65;
  cursor: wait;
}

.dv-articles-page__load-btn {
  cursor: pointer;
  font-family: inherit;
}

.dv-articles-page__empty {
  margin: 0 0 64px;
  color: var(--muted);
}

.dv-articles-page .dv-popular {
  padding: 48px 0 64px;
  border-top: 1px solid var(--line);
}

/* —— Search results —— */
.dv-search-page {
  padding: 24px 0 0;
}

.dv-search-page__head {
  margin-bottom: 28px;
}

.dv-search-page__head .dv-page-head__title {
  margin-bottom: 12px;
}

.dv-search-page__summary {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.dv-search-page__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 0;
}

.dv-search-result {
  margin: 0;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.dv-search-result:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.dv-search-result__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--dark);
  transition: color 0.2s;
}

.dv-search-result__head:hover {
  color: var(--orange);
}

.dv-search-result__head:hover .dv-search-result__arrow {
  transform: translate(2px, -2px);
}

.dv-search-result__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.dv-search-result__arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath d='M5 15L15 5M15 5H7M15 5v8' stroke='%23f16a2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform 0.2s;
}

.dv-search-result__excerpt {
  margin: 0;
  max-width: 920px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.dv-search-page__load {
  display: flex;
  justify-content: center;
  padding: 40px 0 32px;
}

.dv-search-page__load-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 36px;
  border: 2px solid var(--dark);
  border-radius: var(--pill);
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.dv-search-page__load-btn:hover {
  background: var(--dark);
  color: var(--white);
}

.dv-search-page__load-btn:disabled,
.dv-search-page__load-btn.is-loading {
  opacity: 0.65;
  cursor: wait;
}

.dv-search-page__load-icon {
  width: 22px;
  height: 22px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none'%3E%3Cpath d='M11 4v10M7 10l4 4 4-4' stroke='%231e1e1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='11' cy='11' r='10' stroke='%231e1e1e' stroke-width='2'/%3E%3C/svg%3E");
}

.dv-search-page__load-btn:hover .dv-search-page__load-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none'%3E%3Cpath d='M11 4v10M7 10l4 4 4-4' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='11' cy='11' r='10' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
}

.dv-search-pagination {
  display: flex;
  justify-content: center;
  padding: 16px 0 56px;
}

.dv-search-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-body);
  font-size: 14px;
}

.dv-search-pagination li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dv-search-pagination a,
.dv-search-pagination span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 2px;
  color: var(--dark);
}

.dv-search-pagination a:hover {
  color: var(--orange);
}

.dv-search-pagination .current {
  font-weight: 700;
  color: var(--orange);
}

.dv-search-pagination .prev,
.dv-search-pagination .next {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.dv-search-pagination__arrow {
  width: 14px;
  height: 14px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%231e1e1e' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M9 3L4 7l5 4'/%3E%3C/svg%3E");
}

.dv-search-pagination__arrow--next {
  transform: rotate(180deg);
}

.dv-search-page__empty {
  margin: 0 0 64px;
  font-size: 16px;
  color: var(--muted);
}

.dv-search-page .dv-popular {
  padding: 48px 0 64px;
  border-top: 1px solid var(--line);
}

/* —— Single article (11_article page) —— */
.dv-article-page {
  padding: 24px 0 0;
}

.dv-article-single__title {
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

.dv-article-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.dv-article-single__pub {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.dv-article-single__pub-label {
  color: var(--muted);
}

.dv-article-single__pub time {
  font-weight: 600;
  color: var(--dark);
}

.dv-post-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.dv-post-share__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.dv-post-share__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dv-post-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}

.dv-post-share__btn:hover {
  background: var(--orange);
  color: var(--white);
}

.dv-post-share__btn svg {
  display: block;
  width: 18px;
  height: 18px;
}

.dv-article-single__share-bottom {
  display: none;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.dv-article-single__layout {
  display: grid;
  gap: 32px;
}

.dv-article-single__hero {
  margin-bottom: 28px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--hero-bg);
}

.dv-article-single__hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.dv-article-single__content {
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
}

.dv-article-single__content > *:first-child {
  margin-top: 0;
}

.dv-article-single__content p {
  margin: 0 0 1.25em;
}

.dv-article-single__content h2,
.dv-article-single__content h3,
.dv-article-single__content h4 {
  margin: 1.75em 0 0.75em;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.dv-article-single__content h2 {
  font-size: 22px;
}

.dv-article-single__content h3 {
  font-size: 18px;
}

.dv-article-single__content ul,
.dv-article-single__content ol {
  margin: 0 0 1.25em;
  padding: 0;
  list-style: none;
}

.dv-article-single__content ul li,
.dv-article-single__content ol li {
  position: relative;
  margin-bottom: 0.65em;
  padding-left: 28px;
}

.dv-article-single__content ul li::before,
.dv-article-single__content ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='%23f16a2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dv-article-single__content a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.dv-article-single__content a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dv-article-single__content p:last-child a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  vertical-align: -2px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23f16a2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 10.5L10.5 3.5M10.5 3.5H5.5M10.5 3.5v5'/%3E%3C/svg%3E");
}

.dv-article-single__content img {
  border-radius: 12px;
}

/* Sidebar compact cards */
.dv-article-single__aside {
  display: none;
}

.dv-article-side {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.dv-article-side:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.dv-article-side__thumb {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: var(--hero-bg);
}

.dv-article-side__thumb img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.dv-article-side__date {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--muted);
}

.dv-article-side__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.dv-article-side__title a {
  color: var(--dark);
  text-decoration: none;
}

.dv-article-side__title a:hover {
  color: var(--orange);
}

.dv-article-side__excerpt {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dv-article-side__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

.dv-article-side__more-arrow {
  width: 14px;
  height: 14px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23f16a2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 10.5L10.5 3.5M10.5 3.5H5.5M10.5 3.5v5'/%3E%3C/svg%3E");
}

.dv-read-also--mobile {
  display: block;
  margin-top: 40px;
  padding-bottom: 8px;
}

.dv-read-also__heading {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.dv-read-also__heading span {
  color: var(--orange);
}

.dv-read-also__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dv-article-page .dv-popular {
  padding: 48px 0 64px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1023px) {
  .dv-article-single__meta {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .dv-article-single__pub-label {
    display: none;
  }

  .dv-article-single__share-top {
    display: none;
  }

  .dv-article-single__share-bottom {
    display: block;
  }
}

@media (min-width: 1024px) {
  .dv-articles-page,
  .dv-article-page {
    padding-top: 32px;
  }

  .dv-page-head__title {
    margin-bottom: 48px;
    font-size: 40px;
  }

  .dv-articles-page__load {
    padding: 48px 0 72px;
  }

  .dv-articles-page .dv-popular,
  .dv-article-page .dv-popular,
  .dv-search-page .dv-popular {
    padding: 64px 0 96px;
  }

  .dv-search-page {
    padding-top: 32px;
  }

  .dv-search-page__head .dv-page-head__title {
    margin-bottom: 16px;
    font-size: 40px;
  }

  .dv-search-result__title {
    font-size: 24px;
  }

  .dv-search-page__load {
    padding: 48px 0 40px;
  }

  .dv-search-pagination {
    padding-bottom: 72px;
  }

  .dv-article-single__title {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .dv-article-single__meta {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .dv-article-single__share-top {
    display: block;
  }

  .dv-article-single__share-bottom {
    display: none;
  }

  .dv-article-single__layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: var(--gap);
    align-items: start;
  }

  .dv-article-single__aside {
    display: block;
  }

  .dv-read-also--mobile {
    display: none;
  }

  .dv-article-side {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dv-article-side__thumb {
    max-width: 100%;
  }

  .dv-article-side__thumb img {
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 1024px) {
  .dv-blog {
    padding: 80px 0 96px;
  }

  .dv-blog__head {
    margin-bottom: 40px;
  }

  .dv-blog__heading {
    font-size: 40px;
    line-height: 1.15;
  }

  .dv-blog__all {
    display: block;
    font-size: 16px;
  }

  .dv-blog__view-all {
    display: none;
  }

  .dv-blog__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
  }

  .dv-article__body {
    padding-top: 24px;
  }

  .dv-article__title {
    font-size: 20px;
  }
}

/* —— Footer —— */
.dv-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 0 32px;
}

.dv-footer__mobile {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.dv-footer__grid {
  display: none;
  gap: 32px;
}

.dv-footer__nav-mobile {
  display: block;
}

.dv-footer__menu-mobile {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dv-footer__menu-mobile a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.dv-footer__menu-mobile a:hover,
.dv-footer__menu-mobile .current-menu-item > a,
.dv-footer__menu-mobile .current_page_item > a {
  color: var(--orange);
}

.dv-footer__cta-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--white);
  border-radius: var(--pill);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.dv-footer__cta-mobile:hover {
  background: var(--white);
  color: var(--dark);
}

.dv-footer__contacts-mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dv-footer__phones-mobile {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dv-footer__phone-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.dv-footer__phone-icon {
  display: flex;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.dv-footer__phone-icon svg {
  width: 22px;
  height: 22px;
}

.dv-footer__phone-mobile a {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}

.dv-footer__email-mobile {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.dv-footer__address-mobile,
.dv-footer__hours-mobile {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.dv-footer__copy-mobile {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
}

.dv-footer__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.dv-footer__copy {
  margin: 16px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.dv-footer__title {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.dv-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dv-footer__menu a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.dv-footer__menu a:hover {
  color: var(--white);
}

.dv-footer__phone,
.dv-footer__email {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.dv-footer__text {
  margin: 0 0 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.dv-footer__socials {
  display: flex;
  gap: 12px;
}

.dv-footer__socials a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 1024px) {
  .dv-footer {
    min-height: 344px;
    padding: 56px 0;
  }

  .dv-footer__mobile {
    display: none;
  }

  .dv-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr auto;
    gap: 48px;
  }
}
@media (max-width: 1024px) {
.dv-hero {
  background-size: cover !important;
}
}

.dv-header__top-end, .dv-header__top-start {
  width: 420px;
}

.dv-header__top-end {
  justify-content: flex-end;
}

.dv-header__top-end svg{
  width: 24px;
}

.dv-product.product.type-product{
  background: none;
  box-shadow: none;
}

/* —— Info pages: Оплата та доставка / Контакти —— */
.dv-info-page {
  padding: 24px 0 64px;
}

.dv-info-page .dv-page-head__title {
  margin-bottom: 40px;
}

.dv-info-page__sections {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.dv-info-page__row {
  display: grid;
  gap: 16px 24px;
  align-items: start;
}

.dv-info-page__row-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
}

.dv-info-page__row-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark);
}

.dv-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dv-info-list__item {
  position: relative;
  margin: 0 0 14px;
  padding-left: 18px;
}

.dv-info-list__item:last-child {
  margin-bottom: 0;
}

.dv-info-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--orange);
  transform: rotate(-12deg);
}

.dv-info-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dv-info-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 72px;
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.dv-info-logos__item img {
  display: block;
  max-width: 120px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Contacts */
.dv-contacts-page__section,
.dv-contacts-page__feedback {
  margin-bottom: 48px;
}

.dv-contacts-page__heading {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.dv-contacts-page__cards {
  display: grid;
  gap: 24px;
}

.dv-contacts-card {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
}

.dv-contacts-card__label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--dark);
}

.dv-contacts-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dv-contacts-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.dv-contacts-card__list li:last-child {
  margin-bottom: 0;
}

.dv-contacts-card__list a {
  color: var(--dark);
  transition: color 0.2s;
}

.dv-contacts-card__list a:hover {
  color: var(--orange);
}

.dv-contacts-card__line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--dark);
}

.dv-contacts-card__line a {
  color: var(--dark);
}

.dv-contacts-card__line a:hover {
  color: var(--orange);
}

.dv-contacts-card__icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--muted);
}

.dv-contacts-page__feedback-grid {
  display: grid;
  gap: 28px;
}

.dv-contacts-page__feedback-left p,
.dv-contacts-page__feedback-intro {
  margin: 0 0 1em;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark);
}

.dv-contacts-page__feedback-intro {
  color: var(--muted);
}

/* Contact Form 7 */
.dv-cf7-form .wpcf7 {
  margin: 0;
}

.dv-cf7-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dv-cf7-form .wpcf7-form p {
  margin: 0;
}

.dv-cf7-form input[type="text"],
.dv-cf7-form input[type="email"],
.dv-cf7-form input[type="tel"],
.dv-cf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--header-soft);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
}

.dv-cf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

.dv-cf7-form .wpcf7-submit,
.dv-cf7-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 48px;
  border: 0;
  border-radius: var(--pill);
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.dv-cf7-form .wpcf7-submit:hover {
  opacity: 0.9;
}

.dv-cf7-form .wpcf7-spinner {
  display: block;
  margin: 8px 0 0;
}

.dv-cf7-form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #c0392b;
}

@media (min-width: 768px) {
  .dv-info-page__row {
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 32px 48px;
  }

  .dv-contacts-page__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .dv-contacts-page__feedback-grid {
    grid-template-columns: minmax(200px, 1fr) minmax(280px, 1.2fr);
    gap: 48px;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .dv-info-page {
    padding-top: 32px;
    padding-bottom: 96px;
  }

  .dv-info-page .dv-page-head__title {
    margin-bottom: 48px;
    font-size: 40px;
  }

  .dv-info-page__sections {
    gap: 48px;
  }

  .dv-info-page__row-title {
    font-size: 22px;
  }

  .dv-contacts-page__heading {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .dv-cf7-form .wpcf7-form p:has(.wpcf7-submit) {
    display: flex;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .dv-contacts-page__feedback-left,
  .dv-contacts-page__feedback-intro {
    text-align: center;
  }

  .dv-cf7-form .wpcf7-form p:has(.wpcf7-submit) {
    display: flex;
    justify-content: center;
  }

  .dv-cf7-form .wpcf7-submit {
    width: 100%;
    max-width: 100%;
  }
}

span.price {
  justify-content: flex-start !important;
}
th.label, th.label label {
  width: fit-content !important;
  width: 160px !important;
  text-align: left;
  font-size: 20px !important;
}

.dv-cart-qty>div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dv-cart-qty__input, .dv-cart-qty input.qty {
  margin: 0 15px !important;
}

.dv-cart-item__actions{
  position: relative;
}

.dv-cart-item__remove {
  position: absolute;
  right: -20px;
  top: -15px;
}

a.dv-cart-summary__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  border-radius: 30px;
}

.woocommerce-message,
.woocommerce-form-coupon-toggle {
  display: none;
}