:root {
  --dx-gold: #dcae3b;
  --dx-gold-dark: #c49a2f;
  --dx-taupe: #59504b;
  --dx-ink: #242424;
  --dx-muted: #6b6560;
  --dx-blush: #fcf0f0;
  --dx-soft: #f7f4f1;
  --dx-cream: #f3ebe3;
  --dx-line: #e8e2dc;
  --dx-white: #fff;
  --dx-max: 1180px;
  --dx-font: "Montserrat", sans-serif;
}

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

html { scroll-behavior: smooth; }

body.diva-theme {
  margin: 0;
  background: var(--dx-soft);
  color: var(--dx-ink);
  font-family: var(--dx-font);
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }

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

.dx-skip:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  width: auto;
  height: auto;
  margin: 0;
  padding: 8px 12px;
  clip: auto;
  background: var(--dx-ink);
  color: #fff;
}

.dx-wrap {
  width: min(100% - 40px, var(--dx-max));
  margin: 0 auto;
}

.dx-kicker {
  margin: 0 0 8px;
  color: var(--dx-gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dx-title {
  margin: 0 0 12px;
  color: var(--dx-ink);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.dx-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--dx-gold), rgba(220, 174, 59, 0));
}

.dx-lead {
  margin: 0 0 18px;
  color: var(--dx-muted);
  font-size: 1rem;
}

.dx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.dx-btn--gold {
  background: var(--dx-gold);
  color: var(--dx-ink);
  box-shadow: 0 10px 24px rgba(220, 174, 59, 0.35);
}

.dx-btn--gold:hover {
  background: var(--dx-gold-dark);
  color: #fff;
  transform: translateY(-1px);
}

.dx-btn--ghost {
  background: transparent;
  color: var(--dx-ink);
  border-color: rgba(36, 36, 36, 0.22);
}

.dx-btn--ghost:hover {
  background: var(--dx-taupe);
  border-color: var(--dx-taupe);
  color: #fff;
}

.dx-header { background: var(--dx-white); position: relative; z-index: 20; }

.dx-topbar {
  background: var(--dx-taupe);
  color: #fff;
  text-align: center;
}

.dx-topbar p {
  margin: 0;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
}

.dx-topbar a { color: #fff; text-decoration: none; }

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

.dx-logo img { width: 92px; height: auto; }

.dx-nav { display: flex; justify-content: center; }

.dx-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 5px;
  list-style: none;
  border: 1px solid rgba(89, 80, 75, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.dx-nav__list > li { position: relative; }

.dx-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--dx-taupe);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.dx-nav__list > .current-menu-item > a,
.dx-nav__list > .current-menu-ancestor > a,
.dx-nav__list > li > a[aria-current="page"] {
  background: var(--dx-ink);
  color: #fff;
}

.dx-nav__list > li > a:hover { color: var(--dx-gold-dark); }
.dx-nav__list > .current-menu-item > a:hover,
.dx-nav__list > .current-menu-ancestor > a:hover { color: #fff; }

.dx-nav__list > .menu-item-has-children > a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.dx-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 30;
  min-width: 210px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(36, 36, 36, 0.14);
}

.dx-nav__list > li:hover > .sub-menu,
.dx-nav__list > li:focus-within > .sub-menu { display: block; }

.dx-nav__list .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--dx-ink);
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
}

.dx-nav__list .sub-menu a:hover { background: var(--dx-soft); color: var(--dx-gold-dark); }

.dx-header__tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dx-header__cart,
.dx-header__account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(89, 80, 75, 0.22);
  border-radius: 50%;
  color: var(--dx-taupe);
  text-decoration: none;
  position: relative;
  background: rgba(255, 255, 255, 0.7);
}

.dx-header__cart-total { display: none; }

.dx-header__cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--dx-gold);
  color: var(--dx-ink);
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.dx-header--overlay {
  position: sticky;
  top: 0;
  z-index: 40;
  background: transparent;
}

.dx-header--overlay .dx-topbar {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
}

.dx-header--overlay .dx-topbar a { color: #fff; }

.dx-header--overlay .dx-header__bar {
  position: relative;
}

.dx-header--overlay:not(.is-solid) .dx-logo img {
  filter: brightness(0) invert(1);
}

.diva-front .dx-hero {
  margin-top: calc(-1 * var(--dx-header-h, 150px));
}

.diva-front .dx-hero__slide {
  padding-top: calc(var(--dx-header-h, 150px) + 48px);
}

.dx-header--overlay.is-solid {
  background: var(--dx-white);
  box-shadow: 0 8px 24px rgba(89, 80, 75, 0.08);
}

.dx-header--overlay.is-solid .dx-topbar {
  background: var(--dx-taupe);
  color: #fff;
}

.dx-header--overlay.is-solid .dx-nav__list {
  border-color: rgba(89, 80, 75, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: none;
}

.dx-header--overlay.is-solid .dx-nav__list > li > a { color: var(--dx-taupe); }

.dx-header--overlay.is-solid .dx-nav__list > .current-menu-item > a,
.dx-header--overlay.is-solid .dx-nav__list > .current-menu-ancestor > a,
.dx-header--overlay.is-solid .dx-nav__list > li > a[aria-current="page"] {
  background: var(--dx-ink);
  color: #fff;
}

.dx-header--overlay.is-solid .dx-nav__list > li > a:hover { color: var(--dx-gold-dark); }
.dx-header--overlay.is-solid .dx-nav__list > .current-menu-item > a:hover,
.dx-header--overlay.is-solid .dx-nav__list > .current-menu-ancestor > a:hover { color: #fff; }

.dx-header--overlay.is-solid .dx-header__cart,
.dx-header--overlay.is-solid .dx-header__account {
  border-color: rgba(89, 80, 75, 0.22);
  background: rgba(255, 255, 255, 0.7);
  color: var(--dx-taupe);
}

.dx-header--overlay.is-solid .dx-nav-toggle span { background: var(--dx-taupe); }

.dx-header--overlay .dx-nav__list {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.dx-header--overlay .dx-nav__list > li > a { color: #fff; }

.dx-header--overlay .dx-nav__list > .current-menu-item > a,
.dx-header--overlay .dx-nav__list > .current-menu-ancestor > a,
.dx-header--overlay .dx-nav__list > li > a[aria-current="page"] {
  background: #fff;
  color: #2a2a2a;
}

.dx-header--overlay .dx-nav__list > li > a:hover { color: #fff; }
.dx-header--overlay .dx-nav__list > .current-menu-item > a:hover { color: #2a2a2a; }

.dx-header--overlay .dx-header__cart,
.dx-header--overlay .dx-header__account {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.dx-header--overlay .dx-nav-toggle span { background: #fff; }

.dx-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dx-nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--dx-taupe);
}

.dx-hero {
  position: relative;
  overflow: hidden;
  background: #2a2422;
  margin-top: -1px;
}

.dx-hero__viewport { position: relative; min-height: 680px; }

.dx-hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding: 120px 0 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.dx-hero__media,
.dx-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dx-hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 14, 12, 0.55) 0%, rgba(18, 14, 12, 0.28) 46%, rgba(18, 14, 12, 0.12) 100%);
}

.dx-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.dx-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 28px;
  text-align: left;
}

.dx-hero__title {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.dx-hero__title::after { display: none; }

.dx-hero__sub {
  margin: 0 0 22px;
  color: var(--dx-gold);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
}

.dx-hero__desc {
  max-width: 460px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
}

.dx-hero__arrow {
  position: absolute;
  top: 54%;
  z-index: 2;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dx-ink);
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(36, 36, 36, 0.16);
  cursor: pointer;
}

.dx-hero__arrow--prev { left: 18px; }
.dx-hero__arrow--next { right: 18px; }

.dx-hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dx-hero__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(36, 36, 36, 0.18);
  cursor: pointer;
}

.dx-hero__dots button.is-active { background: var(--dx-gold); width: 9px; height: 9px; }

.dx-section { padding: 72px 0; }
.dx-cats, .dx-products { background: #fff; }

.dx-brands {
  background: var(--dx-cream);
}

.dx-catalogs {
  background: #fff;
}

.dx-cats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.dx-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 12px 22px;
  border: 1px solid var(--dx-line);
  border-radius: 18px;
  background: #fff;
  color: var(--dx-ink);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(89, 80, 75, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.dx-cat:hover {
  transform: translateY(-3px);
  border-color: rgba(220, 174, 59, 0.45);
}

.dx-cat__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f6f1ec;
  color: var(--dx-taupe);
}

.dx-cat__icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.dx-cat__name { font-weight: 700; font-size: 0.92rem; line-height: 1.35; }

.dx-reseller {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(220, 174, 59, 0.22), transparent 55%),
    linear-gradient(160deg, #2a2a2a 0%, #242424 55%, #1a1a1a 100%);
  color: #fff;
}

.dx-reseller .dx-kicker { color: var(--dx-gold); }
.dx-reseller .dx-title,
.dx-reseller .dx-lead { color: #fff; }
.dx-reseller .dx-lead { color: rgba(255, 255, 255, 0.82); }

.dx-reseller__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.dx-reseller__media img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.dx-checks {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.dx-checks li {
  position: relative;
  margin: 8px 0;
  padding-left: 26px;
}

.dx-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--dx-gold);
  font-weight: 700;
}

.dx-brands__viewport {
  overflow: hidden;
  margin-top: 28px;
}

.dx-brands__track {
  display: flex;
  width: max-content;
  animation: dx-brands-loop 32s linear infinite;
}

.dx-brands__viewport:hover .dx-brands__track {
  animation-play-state: paused;
}

.dx-brands__group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.dx-brand {
  display: grid;
  width: 180px;
  height: 110px;
  flex: 0 0 180px;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--dx-line);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
}

.dx-brand img {
  max-width: 100%;
  max-height: 54px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

@keyframes dx-brands-loop {
  to { transform: translateX(-50%); }
}

.dx-catalogs__grid,
.dx-trust__grid,
.dx-testimonials__grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.dx-catalogs__grid { grid-template-columns: repeat(3, 1fr); }
.dx-trust__grid { grid-template-columns: repeat(4, 1fr); }
.dx-testimonials__grid { grid-template-columns: repeat(3, 1fr); }

.dx-catalog {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--dx-line);
  border-radius: 20px;
  background: #fff;
}

.dx-catalog__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dx-blush);
}

.dx-catalog__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.dx-catalog__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--dx-gold);
  color: var(--dx-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dx-catalog__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 20px 22px;
  text-align: center;
}

.dx-catalog h3 {
  margin: 0;
  font-size: 1.15rem;
}

.dx-catalog p { margin: 0; color: var(--dx-muted); }
.dx-catalog .dx-btn { margin-top: auto; }

.dx-products__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.dx-products__nav { display: flex; gap: 8px; }

.dx-products__nav button,
.dx-hero__arrow { font-family: inherit; }

.dx-products__nav button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--dx-line);
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}

.dx-products__viewport { overflow: hidden; margin-top: 24px; }

.dx-products__track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
}

.dx-product {
  display: flex;
  flex: 0 0 calc(25% - 12px);
  flex-direction: column;
  border: 1px solid var(--dx-line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(89, 80, 75, 0.06);
}

.dx-product__media { display: block; background: var(--dx-soft); }
.dx-product__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.dx-product__body { display: flex; flex: 1; flex-direction: column; padding: 14px 14px 18px; }
.dx-product__body h3 { margin: 0 0 6px; font-size: 1rem; }
.dx-product__body h3 a { text-decoration: none; }
.dx-product__price { margin: 0 0 12px; color: var(--dx-taupe); font-weight: 700; }
.dx-product .dx-btn { width: 100%; margin-top: auto; }
.dx-product .dx-btn.loading { pointer-events: none; opacity: 0.65; }
.dx-product a.added_to_cart,
.woocommerce a.added_to_cart { display: none !important; }

.dx-products__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.dx-products__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(89, 80, 75, 0.28);
  cursor: pointer;
}

.dx-products__dots button.is-active {
  width: 22px;
  background: var(--dx-gold);
}

.dx-promotora {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--dx-taupe);
  color: #fff;
}

.dx-promotora__media { min-height: 420px; }
.dx-promotora__media img { width: 100%; height: 100%; object-fit: cover; }

.dx-promotora__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}

.dx-promotora__copy .dx-kicker,
.dx-promotora__copy .dx-lead { color: rgba(255, 255, 255, 0.78); }
.dx-promotora__copy .dx-title { color: #fff; }

.dx-promotora__pct {
  width: fit-content;
  margin: 8px 0 18px;
  padding: 18px 22px;
  border: 1px solid rgba(220, 174, 59, 0.45);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
}

.dx-promotora__pct span {
  color: var(--dx-gold);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.dx-ig { background: #fff; }
.dx-ig .dx-title { text-align: center; }
.dx-ig .dx-title::after { margin-inline: auto; }
.dx-ig .dx-lead { text-align: center; }

.dx-cta {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--dx-taupe);
  color: #fff;
}

.dx-cta__media,
.dx-cta__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dx-cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 100% 50%, rgba(220, 174, 59, 0.28), transparent 60%),
    linear-gradient(135deg, rgba(89, 80, 75, 0.88), rgba(36, 36, 36, 0.72));
}

.dx-cta__copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
}

.dx-cta__copy .dx-title { color: #fff; }
.dx-cta__copy .dx-title::after { margin-inline: auto; }
.dx-cta__copy .dx-lead { max-width: 38rem; color: rgba(255, 255, 255, 0.86); }

.dx-drawer[hidden] { display: none; }

.dx-drawer {
  position: fixed;
  inset: 0;
  z-index: 10050;
}

.dx-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(36, 36, 36, 0.48);
  cursor: pointer;
}

.dx-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  box-shadow: -18px 0 40px rgba(36, 36, 36, 0.14);
}

.dx-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 12px;
}

.dx-drawer__head h2 {
  margin: 0;
  font-size: 1.25rem;
}

.dx-drawer__close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--dx-line);
  border-radius: 50%;
  background: var(--dx-cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.dx-drawer__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 0 20px 20px;
}

.dx-drawer .woocommerce-mini-cart {
  flex: 1;
  margin: 0;
  padding: 0;
  overflow: auto;
  list-style: none;
}

.dx-drawer .woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 28px 72px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--dx-line);
}

.dx-drawer .woocommerce-mini-cart-item .remove {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--dx-taupe);
  font-size: 1.25rem;
  line-height: 1;
  text-decoration: none;
}

.dx-drawer .woocommerce-mini-cart-item .dx-mini-cart__thumb {
  grid-column: 2;
  grid-row: 1;
  display: block;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--dx-blush);
  text-decoration: none;
}

.dx-drawer .woocommerce-mini-cart-item .dx-mini-cart__thumb img,
.dx-drawer .woocommerce-mini-cart-item img {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--dx-blush);
}

.dx-drawer .woocommerce-mini-cart-item .dx-mini-cart__details {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.dx-drawer .woocommerce-mini-cart-item .dx-mini-cart__name {
  color: var(--dx-ink);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.dx-drawer .woocommerce-mini-cart-item .dx-mini-cart__name:hover {
  color: var(--dx-gold-dark, #c49a2f);
}

.dx-drawer .woocommerce-mini-cart-item .quantity {
  display: block;
  color: var(--dx-muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.dx-drawer .woocommerce-mini-cart-item dl.variation {
  margin: 0;
  font-size: 0.8rem;
  color: var(--dx-muted);
}

.dx-drawer .woocommerce-mini-cart__total {
  margin: 16px 0 12px;
  font-weight: 700;
}

.dx-drawer .woocommerce-mini-cart__buttons {
  display: grid;
  gap: 8px;
}

.dx-drawer .woocommerce-mini-cart__buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.dx-drawer .woocommerce-mini-cart__buttons a.checkout {
  background: var(--dx-gold);
  color: var(--dx-ink);
}

.dx-drawer .woocommerce-mini-cart__buttons a:not(.checkout) {
  border: 1px solid var(--dx-line);
  color: var(--dx-taupe);
}

.dx-drawer .woocommerce-mini-cart__empty-message {
  margin: 24px 0;
  color: var(--dx-muted);
}

/* Hide floating WhatsApp while the cart drawer is open. */
body.dx-drawer-open .diva-whatsapp-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.dx-trust {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(220, 174, 59, 0.12), transparent 60%),
    var(--dx-blush);
}

.dx-testimonials { background: #fff; }
.dx-testimonials blockquote { margin: 0; }
.dx-testimonials footer { display: flex; flex-direction: column; color: var(--dx-ink); }
.dx-testimonials footer span { color: var(--dx-muted); font-size: 0.9rem; }

.dx-final {
  background:
    radial-gradient(ellipse 50% 70% at 100% 50%, rgba(220, 174, 59, 0.28), transparent 60%),
    linear-gradient(135deg, #59504b 0%, #4a433f 100%);
  color: #fff;
}

.dx-final .dx-title,
.dx-final .dx-lead { color: #fff; }
.dx-final .dx-title::after { background: linear-gradient(90deg, var(--dx-gold), transparent); }

.dx-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dx-footer {
  background: #3f3936;
  color: rgba(255, 255, 255, 0.86);
  padding-top: 56px;
}

.dx-footer__grid {
  display: grid;
  grid-template-columns: 120px 1.3fr 1fr 0.8fr;
  gap: 28px;
}

.dx-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.dx-footer h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 8px;
  background: var(--dx-gold);
}

.dx-footer a { color: #fff; text-decoration: none; }
.dx-footer a:hover { color: var(--dx-gold); }
.dx-footer__logo { width: 88px; height: auto; border-radius: 50%; background: #fff; }
.dx-footer .dx-nav__list {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.dx-footer .dx-nav__list li { margin: 6px 0; }

.dx-footer .dx-nav__list > li > a,
.dx-footer .dx-nav__list > .current-menu-item > a,
.dx-footer .dx-nav__list > .current-menu-ancestor > a,
.dx-footer .dx-nav__list > li > a[aria-current="page"] {
  display: inline;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  letter-spacing: 0.04em;
}

.dx-footer .dx-nav__list > li > a:hover,
.dx-footer .dx-nav__list > .current-menu-item > a:hover,
.dx-footer .dx-nav__list > .current-menu-ancestor > a:hover {
  background: transparent;
  color: var(--dx-gold);
}
.dx-socials { display: flex; gap: 14px; margin: 14px 0 0; padding: 0; list-style: none; }

.dx-footer__bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dx-footer__bottom p {
  margin: 0;
  padding: 16px 0;
  font-size: 0.88rem;
}

.dx-entry { padding: 48px 0 72px; }
.dx-entry__content { color: var(--dx-ink); }
.dx-entry__content a { color: var(--dx-gold-dark); }
.dx-post { margin-bottom: 16px; }

/* Nosotros / Contacto: full-bleed like Elementor production layout. */
.diva-main--branded {
  padding: 0;
  margin: 0;
  max-width: none;
}

.diva-main--branded .diva-page {
  width: 100%;
}

.diva-account-page .woocommerce,
.diva-account-page .dx-entry__content form,
.diva-cart-page .woocommerce-notices-wrapper,
.diva-checkout-page .woocommerce-notices-wrapper {
  margin-top: 8px;
}

.diva-account-page .woocommerce-MyAccount-navigation ul,
.diva-account-page .woocommerce-form {
  background: #fff;
  border: 1px solid var(--dx-line);
  border-radius: 16px;
}

.diva-account-page .woocommerce-MyAccount-navigation ul { margin: 0 0 20px; padding: 8px; list-style: none; }
.diva-account-page .woocommerce-MyAccount-navigation a { display: block; padding: 10px 12px; text-decoration: none; }
.diva-account-page .woocommerce-MyAccount-navigation .is-active a { color: var(--dx-gold-dark); font-weight: 700; }

.woocommerce form .button,
.woocommerce a.button,
.woocommerce button.button,
.wc-block-components-button {
  background: var(--dx-gold) !important;
  color: var(--dx-ink) !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--dx-gold);
}

@media (max-width: 980px) {
  .dx-nav-toggle { display: block; }
  .dx-header__inner { grid-template-columns: auto auto 1fr; }
  .dx-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid var(--dx-line);
    padding: 12px 20px 20px;
  }
  .dx-header:not(.dx-header--overlay) { position: relative; }
  .dx-nav.is-open { display: block; }
  .dx-nav__list { flex-direction: column; align-items: flex-start; gap: 12px; }
  .dx-header__tools { justify-self: end; }
  .dx-hero__grid,
  .dx-reseller__grid,
  .dx-final__inner,
  .dx-footer__grid,
  .dx-cats__grid,
  .dx-catalogs__grid,
  .dx-trust__grid,
  .dx-testimonials__grid,
  .dx-promotora { grid-template-columns: 1fr 1fr; }
  .dx-promotora__copy { padding: 40px 28px; }
  .dx-footer__grid { grid-template-columns: 1fr 1fr; }
  .dx-product { flex-basis: calc(50% - 8px); }
  .dx-hero__arrow { display: none; }
  .dx-header--overlay .dx-nav__list > li > a { color: var(--dx-ink); }
}

@media (max-width: 680px) {
  .dx-hero__grid,
  .dx-reseller__grid,
  .dx-final__inner,
  .dx-cats__grid,
  .dx-catalogs__grid,
  .dx-trust__grid,
  .dx-testimonials__grid,
  .dx-footer__grid,
  .dx-promotora { grid-template-columns: 1fr; }
  .dx-hero__viewport,
  .dx-hero__slide { min-height: 520px; }
  .dx-product { flex-basis: 82%; }
  .dx-section { padding: 48px 0; }
}
