:root {
  --dvp-teal: #0facc5;
  --dvp-ink: #1d3c39;
  --dvp-ink-2: #15302d;
  --dvp-mint: #dff8f5;
  --dvp-sky: #e8f9fc;
  --dvp-paper: #ffffff;
  --dvp-soft: #f4f7f7;
  --dvp-line: #dce8e7;
  --dvp-text: #253735;
  --dvp-muted: #647472;
  --dvp-shadow: 0 18px 50px rgba(29, 60, 57, .12);
  --dvp-radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.dvp-theme {
  margin: 0;
  color: var(--dvp-text);
  background: var(--dvp-paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  direction: ltr;
  text-align: left;
}

body.dvp-lang-ar {
  font-family: "IBM Plex Sans Arabic", Arial, sans-serif;
  direction: rtl;
  text-align: right;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.dvp-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

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

.dvp-topbar {
  background: var(--dvp-ink);
  color: rgba(255,255,255,.88);
  font-size: 13px;
}

.dvp-topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dvp-topbar__inner span:last-child,
.dvp-footer a[href^="tel"],
.dvp-price,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price,
.dvp-metrics strong,
.dvp-stat strong {
  direction: ltr;
  unicode-bidi: isolate;
}

.dvp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--dvp-line);
  backdrop-filter: blur(16px);
}

.dvp-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.dvp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.dvp-brand__mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  background: #fff;
  border: 1px solid var(--dvp-line);
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 8px 22px rgba(29,60,57,.08);
}

.dvp-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.dvp-brand strong,
.dvp-footer__brand > span:not(.dvp-brand__mark) {
  display: block;
  color: var(--dvp-ink);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
}

.dvp-brand small {
  display: block;
  color: var(--dvp-muted);
  font-size: 12px;
  margin-top: 3px;
}

.dvp-primary-menu {
  margin-left: auto;
}

body.dvp-lang-ar .dvp-primary-menu {
  margin-left: 0;
  margin-right: auto;
}

.dvp-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.dvp-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: var(--dvp-radius);
  color: var(--dvp-ink);
  font-weight: 700;
  font-size: 13px;
}

.dvp-menu a:hover {
  color: var(--dvp-teal);
  background: var(--dvp-sky);
}

.dvp-nav-cta,
.dvp-button,
.dvp-link-button,
.dvp-product-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: var(--dvp-radius);
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.dvp-nav-cta {
  padding: 0 16px;
  color: #fff;
  background: var(--dvp-teal);
  white-space: nowrap;
}

.dvp-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline-start: 4px;
}

.dvp-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--dvp-line);
  border-radius: 8px;
  background: #fff;
}

.dvp-lang-switcher a {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 32px;
  border-radius: 6px;
  color: var(--dvp-muted);
  font-size: 12px;
  font-weight: 800;
}

.dvp-lang-switcher a.is-active {
  color: #fff;
  background: var(--dvp-ink);
}

.dvp-nav-cta:hover,
.dvp-button:hover,
.dvp-link-button:hover,
.dvp-product-card__link:hover {
  transform: translateY(-1px);
}

.dvp-command-hero h1,
.dvp-choice-band h2,
.dvp-section--ink h2,
.dvp-news-hero h1,
.dvp-cta h2 {
  color: #fff;
}

.dvp-command-hero p,
.dvp-choice-band p,
.dvp-section--ink p,
.dvp-news-hero p,
.dvp-cta p {
  color: rgba(255,255,255,.84);
}

.dvp-card h3,
.dvp-product-card h3,
.dvp-news-card h3,
.dvp-page-hero h1,
.woocommerce-loop-product__title {
  color: var(--dvp-ink);
}

.dvp-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--dvp-line);
  border-radius: var(--dvp-radius);
  background: #fff;
}

body.dvp-lang-ar .dvp-menu-toggle {
  margin-left: 0;
  margin-right: auto;
}

.dvp-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--dvp-ink);
}

.dvp-main { min-height: 60vh; }

.dvp-command-hero {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(130deg, rgba(21,48,45,.98), rgba(29,60,57,.92) 48%, rgba(15,172,197,.86)),
    radial-gradient(circle at 14% 18%, rgba(255,255,255,.18), transparent 26%);
}

.dvp-command-hero__grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .82fr);
  gap: 54px;
  align-items: center;
  padding: 82px 0;
}

.dvp-command-hero__copy h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: 0;
}

.dvp-finder {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 18px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
}

.dvp-finder__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
}

.dvp-finder__head > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--dvp-ink);
  background: #fff;
}

.dvp-finder__head svg {
  width: 28px;
  height: 28px;
}

.dvp-finder__head strong,
.dvp-finder__head small {
  display: block;
}

.dvp-finder__head strong {
  color: #fff;
  font-size: 18px;
}

.dvp-finder__head small {
  color: rgba(255,255,255,.72);
}

.dvp-finder__rows {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.dvp-finder__rows a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 14px 16px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.13);
}

.dvp-finder__rows a:hover {
  background: rgba(255,255,255,.18);
}

.dvp-finder__rows span {
  font-weight: 800;
}

.dvp-finder__rows b {
  color: #bdf7ff;
  font-size: 13px;
}

.dvp-metrics {
  background: var(--dvp-soft);
  border-bottom: 1px solid var(--dvp-line);
}

.dvp-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.dvp-metrics__grid div {
  min-height: 134px;
  padding: 26px;
  border-inline-start: 1px solid var(--dvp-line);
  background: #fff;
}

.dvp-metrics__grid div:last-child {
  border-inline-end: 1px solid var(--dvp-line);
}

.dvp-metrics strong {
  display: block;
  color: var(--dvp-teal);
  font-size: 36px;
  line-height: 1;
}

.dvp-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--dvp-ink);
  font-weight: 800;
}

.dvp-sector-section {
  background: #fff;
}

.dvp-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dvp-sector-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--dvp-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, var(--dvp-soft));
}

.dvp-sector-grid svg {
  width: 34px;
  height: 34px;
  color: var(--dvp-teal);
}

.dvp-sector-grid h3,
.dvp-choice-list strong,
.dvp-process h3 {
  color: var(--dvp-ink);
}

.dvp-sector-grid p {
  color: var(--dvp-muted);
}

.dvp-choice-band {
  color: #fff;
  background: var(--dvp-ink);
}

.dvp-choice-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.dvp-choice-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.dvp-choice-copy p:not(.dvp-kicker) {
  color: rgba(255,255,255,.76);
}

.dvp-choice-list {
  display: grid;
  gap: 12px;
}

.dvp-choice-list a {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 4px 16px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}

.dvp-choice-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: var(--dvp-ink);
  background: #fff;
}

.dvp-choice-list strong {
  color: #fff;
  font-size: 19px;
}

.dvp-choice-list small {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.dvp-product-grid--featured {
  grid-template-columns: repeat(3, 1fr);
}

.dvp-process-section {
  background: var(--dvp-soft);
}

.dvp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: process;
}

.dvp-process div {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--dvp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(29,60,57,.06);
}

.dvp-process span {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--dvp-teal);
  font-weight: 800;
}

.dvp-process p {
  color: var(--dvp-muted);
}

.dvp-faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
}

.dvp-faq-list {
  display: grid;
  gap: 12px;
}

.dvp-faq-list details {
  border: 1px solid var(--dvp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(29,60,57,.05);
}

.dvp-faq-list summary {
  cursor: pointer;
  padding: 20px;
  color: var(--dvp-ink);
  font-weight: 800;
}

.dvp-faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--dvp-muted);
}

.dvp-hero {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(29,60,57,.96), rgba(15,172,197,.86)),
    radial-gradient(circle at 82% 20%, rgba(255,255,255,.24), transparent 28%);
}

.dvp-hero__grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 58px;
  align-items: center;
  padding: 78px 0;
}

.dvp-kicker {
  margin: 0 0 12px;
  color: var(--dvp-teal);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}

.dvp-hero .dvp-kicker { color: #bdf7ff; }

.dvp-hero h1,
.dvp-section h2,
.dvp-page-hero h1,
.dvp-cta h2 {
  margin: 0;
  color: inherit;
  line-height: 1.06;
  letter-spacing: 0;
}

.dvp-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 76px);
}

.dvp-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 18px;
}

.dvp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.dvp-button {
  min-height: 52px;
  padding: 0 22px;
}

.dvp-button--primary {
  color: #fff;
  background: var(--dvp-teal);
  box-shadow: 0 14px 28px rgba(15,172,197,.26);
}

.dvp-button--ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.12);
}

.dvp-hero__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.dvp-machine {
  width: min(360px, 90%);
  aspect-ratio: 9 / 14;
  border: 10px solid rgba(255,255,255,.24);
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(180deg, #f9ffff, #d7f5f7);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
}

.dvp-machine__screen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.dvp-machine__screen span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 6px;
  color: var(--dvp-ink);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.dvp-machine__window {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dvp-machine__window span {
  min-height: 72px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--dvp-teal), var(--dvp-ink));
  opacity: .9;
}

.dvp-machine__panel {
  margin-top: 22px;
  min-height: 96px;
  border-radius: 12px;
  background: var(--dvp-ink);
  padding: 18px;
}

.dvp-machine__panel i {
  display: block;
  width: 46px;
  height: 8px;
  border-radius: 999px;
  margin-bottom: 11px;
  background: var(--dvp-teal);
}

.dvp-stat {
  position: absolute;
  width: 156px;
  min-height: 112px;
  padding: 18px;
  border-radius: 8px;
  color: var(--dvp-ink);
  background: #fff;
  box-shadow: var(--dvp-shadow);
}

.dvp-stat strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.dvp-stat span {
  display: block;
  color: var(--dvp-muted);
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
}

.dvp-stat--one { right: 0; top: 78px; }
.dvp-stat--two { left: 0; bottom: 82px; }

.dvp-trust {
  background: var(--dvp-soft);
  border-bottom: 1px solid var(--dvp-line);
}

.dvp-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
}

.dvp-trust__grid div {
  min-height: 142px;
  padding: 26px;
  background: #fff;
}

.dvp-trust svg,
.dvp-card svg {
  width: 34px;
  height: 34px;
  color: var(--dvp-teal);
}

.dvp-trust strong,
.dvp-trust span {
  display: block;
}

.dvp-trust strong {
  margin-top: 16px;
  color: var(--dvp-ink);
  font-size: 17px;
}

.dvp-trust span {
  color: var(--dvp-muted);
  font-size: 14px;
}

.dvp-section,
.dvp-content-section,
.dvp-shop-section,
.dvp-product-shell {
  padding: 84px 0;
}

.dvp-section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.dvp-section__head--row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.dvp-section h2,
.dvp-page-hero h1,
.dvp-cta h2 {
  color: var(--dvp-ink);
  font-size: clamp(30px, 4vw, 48px);
}

.dvp-section__head p:not(.dvp-kicker) {
  color: var(--dvp-muted);
  font-size: 17px;
}

.dvp-cards,
.dvp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dvp-card,
.dvp-product-card {
  border: 1px solid var(--dvp-line);
  border-radius: var(--dvp-radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(29,60,57,.06);
}

.dvp-card {
  padding: 28px;
}

.dvp-card h3 {
  margin: 18px 0 10px;
  color: var(--dvp-ink);
  font-size: 22px;
}

.dvp-card p {
  color: var(--dvp-muted);
}

.dvp-card a,
.dvp-link-button {
  color: var(--dvp-teal);
  font-weight: 800;
}

.dvp-section--ink {
  color: #fff;
  background: var(--dvp-ink);
}

.dvp-section--ink h2,
.dvp-section--ink .dvp-kicker {
  color: #fff;
}

.dvp-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
}

.dvp-service-list {
  display: grid;
  gap: 16px;
}

.dvp-service-list div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 6px 18px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--dvp-radius);
  background: rgba(255,255,255,.06);
}

.dvp-service-list span {
  grid-row: span 2;
  color: #bdf7ff;
  font-size: 22px;
  font-weight: 800;
}

.dvp-service-list strong {
  font-size: 19px;
}

.dvp-service-list p {
  margin: 0;
  color: rgba(255,255,255,.76);
}

.dvp-product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.dvp-product-card {
  overflow: hidden;
}

.dvp-product-card__image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, var(--dvp-sky), #fff);
}

.dvp-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.dvp-product-card__image span svg {
  width: 72px;
  height: 72px;
  color: var(--dvp-teal);
}

.dvp-product-card__body {
  padding: 18px;
}

.dvp-product-card h3 {
  min-height: 54px;
  margin: 0 0 8px;
  color: var(--dvp-ink);
  font-size: 17px;
  line-height: 1.25;
}

.dvp-price,
.woocommerce ul.products li.product .price {
  color: var(--dvp-teal);
  font-weight: 800;
}

.dvp-product-card__link {
  width: 100%;
  margin-top: 12px;
  color: var(--dvp-ink);
  background: var(--dvp-soft);
}

.dvp-product-fallback {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dvp-product-fallback a {
  padding: 18px;
  border: 1px solid var(--dvp-line);
  border-radius: var(--dvp-radius);
  color: var(--dvp-ink);
  font-weight: 800;
  background: #fff;
}

.dvp-bilingual {
  background: var(--dvp-soft);
}

.dvp-bilingual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dvp-bilingual__grid > div {
  padding: 34px;
  border-radius: var(--dvp-radius);
  background: #fff;
  border: 1px solid var(--dvp-line);
}

.dvp-cta {
  padding: 58px 0;
  color: #fff;
  background: linear-gradient(120deg, var(--dvp-ink), var(--dvp-teal));
}

.dvp-cta h2,
.dvp-cta .dvp-kicker {
  color: #fff;
}

.dvp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.dvp-footer {
  color: rgba(255,255,255,.78);
  background: var(--dvp-ink-2);
}

.dvp-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 46px;
  padding: 58px 0 34px;
}

.dvp-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.dvp-footer__brand span,
.dvp-footer h2 {
  color: #fff;
}

.dvp-footer h2 {
  margin: 0 0 16px;
  font-size: 17px;
}

.dvp-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255,255,255,.86);
}

.dvp-footer a:hover { color: #bdf7ff; }

.dvp-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}

.dvp-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: #21c063;
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
}

body.dvp-lang-ar .dvp-whatsapp-float {
  right: auto;
  left: 22px;
}

.dvp-whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.dvp-page-hero {
  padding: 82px 0;
  background: linear-gradient(120deg, var(--dvp-sky), #fff);
  border-bottom: 1px solid var(--dvp-line);
}

.dvp-page-hero p {
  max-width: 700px;
  color: var(--dvp-muted);
}

.dvp-shop-filter {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(4, minmax(130px, 1fr)) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--dvp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(29,60,57,.07);
}

.dvp-shop-filter__head {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--dvp-line);
}

.dvp-shop-filter__head strong,
.dvp-shop-filter__head span {
  display: block;
}

.dvp-shop-filter__head strong {
  color: var(--dvp-ink);
  font-size: 22px;
  line-height: 1.2;
}

.dvp-shop-filter__head span {
  color: var(--dvp-muted);
  margin-top: 4px;
  font-size: 14px;
}

.dvp-shop-filter__field {
  display: grid;
  gap: 7px;
}

.dvp-shop-filter label {
  color: var(--dvp-ink);
  font-size: 13px;
  font-weight: 800;
}

.dvp-shop-filter input,
.dvp-shop-filter select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--dvp-line);
  border-radius: 8px;
  color: var(--dvp-text);
  background: #fff;
  font: inherit;
}

.dvp-shop-filter input:focus,
.dvp-shop-filter select:focus {
  outline: 2px solid rgba(15,172,197,.22);
  border-color: var(--dvp-teal);
  background: #fff;
}

.dvp-shop-filter__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dvp-shop-filter__actions .dvp-button {
  min-height: 46px;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}

.dvp-shop-filter__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--dvp-muted);
  background: var(--dvp-soft);
  font-weight: 800;
  white-space: nowrap;
}

.dvp-shop-filter__reset:hover {
  color: var(--dvp-teal);
}

.dvp-readable {
  max-width: 860px;
}

.dvp-readable--spaced {
  margin-top: 42px;
}

.dvp-readable :is(h2, h3, h4) {
  color: var(--dvp-ink);
}

.dvp-readable a {
  color: var(--dvp-teal);
  font-weight: 800;
}

.dvp-readable .dvp-button {
  color: #fff;
}

.dvp-service-list--light div {
  color: var(--dvp-text);
  border-color: var(--dvp-line);
  background: #fff;
}

.dvp-service-list--light span {
  color: var(--dvp-teal);
}

.dvp-service-list--light p {
  color: var(--dvp-muted);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  padding: 16px !important;
  border: 1px solid var(--dvp-line);
  border-radius: var(--dvp-radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(29,60,57,.06);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 12px;
  background: var(--dvp-sky);
  border-radius: var(--dvp-radius);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--dvp-ink);
  font-size: 17px;
  line-height: 1.25;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce div.product form.cart .button {
  min-height: 44px;
  border-radius: var(--dvp-radius);
  color: #fff;
  background: var(--dvp-teal);
  font-weight: 800;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce div.product form.cart .button:hover {
  color: #fff;
  background: var(--dvp-ink);
}

.woocommerce div.product {
  padding: 34px;
  border: 1px solid var(--dvp-line);
  border-radius: var(--dvp-radius);
  background: #fff;
  box-shadow: var(--dvp-shadow);
}

.woocommerce div.product .product_title {
  color: var(--dvp-ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--dvp-teal);
  font-size: 28px;
  font-weight: 800;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: var(--dvp-radius) var(--dvp-radius) 0 0;
}

@media (max-width: 1020px) {
  .dvp-nav { gap: 14px; }
  .dvp-menu-toggle { display: block; }
  .dvp-nav-actions {
    margin-inline-start: 0;
  }
  .dvp-primary-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 20px 20px;
    background: #fff;
    border-bottom: 1px solid var(--dvp-line);
  }
  .dvp-primary-menu.is-open { display: block; }
  .dvp-menu {
    display: grid;
    gap: 4px;
  }
  .dvp-menu a { min-height: 46px; }
  .dvp-nav-cta { display: none; }
  .dvp-hero__grid,
  .dvp-command-hero__grid,
  .dvp-choice-grid,
  .dvp-faq-grid,
  .dvp-split,
  .dvp-bilingual__grid,
  .dvp-footer__grid {
    grid-template-columns: 1fr;
  }
  .dvp-shop-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dvp-shop-filter__head,
  .dvp-shop-filter__field--search,
  .dvp-shop-filter__actions {
    grid-column: 1 / -1;
  }
  .dvp-hero__grid {
    min-height: auto;
    padding: 58px 0;
  }
  .dvp-trust__grid,
  .dvp-metrics__grid,
  .dvp-sector-grid,
  .dvp-process,
  .dvp-product-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .dvp-container {
    width: min(100% - 28px, 1180px);
  }
  .dvp-topbar__inner,
  .dvp-section__head--row,
  .dvp-cta__inner,
  .dvp-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .dvp-brand { min-width: 0; }
  .dvp-brand__mark { width: 52px; height: 52px; }
  .dvp-brand strong { font-size: 16px; }
  .dvp-brand small { display: none; }
  .dvp-hero h1 { font-size: 42px; }
  .dvp-command-hero__copy h1 { font-size: 42px; }
  .dvp-command-hero__grid { min-height: auto; padding: 58px 0; }
  .dvp-finder__rows a { align-items: flex-start; flex-direction: column; }
  .dvp-shop-filter {
    grid-template-columns: 1fr;
  }
  .dvp-shop-filter__head,
  .dvp-shop-filter__field--search,
  .dvp-shop-filter__actions {
    grid-column: auto;
  }
  .dvp-shop-filter__head {
    align-items: stretch;
    flex-direction: column;
  }
  .dvp-shop-filter__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .dvp-shop-filter__actions .dvp-button,
  .dvp-shop-filter__reset {
    width: 100%;
    justify-content: center;
  }
  .dvp-hero__visual { min-height: 440px; }
  .dvp-stat { position: static; width: 100%; margin-top: 12px; }
  .dvp-trust__grid,
  .dvp-metrics__grid,
  .dvp-sector-grid,
  .dvp-process,
  .dvp-cards,
  .dvp-product-grid,
  .dvp-product-fallback,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
  .dvp-section,
  .dvp-content-section,
  .dvp-shop-section,
  .dvp-product-shell {
    padding: 58px 0;
  }
  .dvp-bilingual__grid > div,
  .woocommerce div.product {
    padding: 22px;
  }
  .dvp-whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
  body.dvp-lang-ar .dvp-whatsapp-float {
    right: auto;
    left: 16px;
  }
}

.dvp-news-hero {
  padding: 84px 0;
  color: #fff;
  background:
    linear-gradient(130deg, rgba(21,48,45,.98), rgba(15,172,197,.82)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.2), transparent 28%);
}

.dvp-news-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

.dvp-news-hero h1 {
  max-width: 840px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}

.dvp-news-hero p:not(.dvp-kicker) {
  max-width: 720px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.dvp-news-hero__panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}

.dvp-news-hero__panel svg {
  width: 38px;
  height: 38px;
}

.dvp-news-hero__panel strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.dvp-news-hero__panel span {
  color: rgba(255,255,255,.78);
}

.dvp-news-section {
  padding: 84px 0;
  background: var(--dvp-soft);
}

.dvp-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 26px;
  align-items: start;
}

.dvp-featured-post {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--dvp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--dvp-shadow);
}

.dvp-featured-post__media,
.dvp-news-card__media {
  display: grid;
  place-items: center;
  min-height: 260px;
  background: linear-gradient(180deg, var(--dvp-sky), #fff);
}

.dvp-featured-post__media img,
.dvp-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dvp-featured-post__media span svg,
.dvp-news-card__media span svg {
  width: 78px;
  height: 78px;
  color: var(--dvp-teal);
}

.dvp-featured-post__body {
  padding: 34px;
}

.dvp-post-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--dvp-teal);
  background: var(--dvp-sky);
  font-size: 12px;
  font-weight: 800;
}

.dvp-featured-post h2,
.dvp-news-card h3 {
  margin: 14px 0 10px;
  color: var(--dvp-ink);
  line-height: 1.18;
}

.dvp-featured-post h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.dvp-featured-post p,
.dvp-news-card p,
.dvp-news-sidebar p {
  color: var(--dvp-muted);
}

.dvp-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.dvp-news-card {
  overflow: hidden;
  border: 1px solid var(--dvp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(29,60,57,.06);
}

.dvp-news-card__media {
  min-height: 190px;
}

.dvp-news-card__body {
  padding: 22px;
}

.dvp-news-card h3 {
  min-height: 58px;
  font-size: 21px;
}

.dvp-news-card__link {
  color: var(--dvp-teal);
  font-weight: 800;
}

.dvp-news-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 118px;
}

.dvp-news-sidebar > div {
  padding: 22px;
  border: 1px solid var(--dvp-line);
  border-radius: 8px;
  background: #fff;
}

.dvp-news-sidebar h2 {
  margin: 0 0 14px;
  color: var(--dvp-ink);
  font-size: 20px;
}

.dvp-news-sidebar a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--dvp-line);
  color: var(--dvp-ink);
  font-weight: 800;
}

.dvp-news-sidebar a:hover {
  color: var(--dvp-teal);
}

@media (max-width: 1020px) {
  .dvp-news-hero__grid,
  .dvp-news-layout,
  .dvp-featured-post {
    grid-template-columns: 1fr;
  }
  .dvp-news-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .dvp-news-hero,
  .dvp-news-section {
    padding: 58px 0;
  }
  .dvp-news-grid {
    grid-template-columns: 1fr;
  }
  .dvp-featured-post__media {
    min-height: 220px;
  }
  .dvp-featured-post__body {
    padding: 24px;
  }
}

body.dvp-theme .dvp-command-hero,
body.dvp-theme .dvp-choice-band,
body.dvp-theme .dvp-section--ink,
body.dvp-theme .dvp-news-hero,
body.dvp-theme .dvp-cta {
  color: #fff;
}

body.dvp-theme .dvp-command-hero :is(h1, h2, h3, p, .dvp-kicker),
body.dvp-theme .dvp-choice-band :is(h1, h2, h3, p, strong, small, .dvp-kicker),
body.dvp-theme .dvp-section--ink :is(h1, h2, h3, p, strong, .dvp-kicker),
body.dvp-theme .dvp-news-hero :is(h1, h2, h3, p, strong, span, .dvp-kicker),
body.dvp-theme .dvp-cta :is(h1, h2, h3, p, .dvp-kicker) {
  color: #fff;
}

body.dvp-theme .dvp-command-hero p:not(.dvp-kicker),
body.dvp-theme .dvp-choice-band p:not(.dvp-kicker),
body.dvp-theme .dvp-section--ink p:not(.dvp-kicker),
body.dvp-theme .dvp-news-hero p:not(.dvp-kicker),
body.dvp-theme .dvp-cta p:not(.dvp-kicker) {
  color: rgba(255,255,255,.86);
}

body.dvp-theme .dvp-choice-list a {
  color: #fff;
}

body.dvp-theme .dvp-choice-list span {
  color: var(--dvp-ink);
}

body.dvp-theme .dvp-footer .dvp-footer__brand > span:not(.dvp-brand__mark),
body.dvp-theme .dvp-footer h2 {
  color: #fff;
}

body.dvp-theme .dvp-footer p,
body.dvp-theme .dvp-footer a {
  color: rgba(255,255,255,.86);
}

body.dvp-theme ::selection {
  color: #fff;
  background: rgba(15,172,197,.75);
}

body.dvp-theme a.dvp-button,
body.dvp-theme button.dvp-button,
body.dvp-theme .dvp-button,
body.dvp-theme .dvp-button svg,
body.dvp-theme .dvp-nav-cta,
body.dvp-theme .dvp-nav-cta svg,
body.dvp-theme .woocommerce a.button,
body.dvp-theme .woocommerce button.button,
body.dvp-theme .woocommerce input.button {
  color: #fff;
}

body.dvp-theme .dvp-button--primary {
  color: #fff;
  background: var(--dvp-teal);
}

body.dvp-theme .dvp-button--ghost {
  color: #fff;
}

body.dvp-theme .dvp-card .dvp-button,
body.dvp-theme .dvp-bilingual__grid .dvp-button,
body.dvp-theme .dvp-content-section .dvp-button {
  color: #fff;
}

body.dvp-theme .dvp-card .dvp-button *,
body.dvp-theme .dvp-bilingual__grid .dvp-button *,
body.dvp-theme .dvp-content-section .dvp-button * {
  color: inherit;
}
