/* ================================
   Base (sin reset agresivo)
   ================================ */

body{
  background: var(--dp-bg);
  color: var(--dp-text);
}

a{
  text-decoration: none;
  font-weight: 700;
  color: #636363;
}
a:hover{ text-decoration: underline; }

/* Fondo consistente en single product */
body.single-product,
body.single-product #content,
body.single-product #primary,
body.single-product .site-main,
body.single-product .content-area{
  background: var(--dp-bg);
}

/* Lista con ticks */
.dp-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.dp-list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 24px;
}
.dp-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--dp-primary);
  font-weight: 700;
  font-size: 16px;
}
