:root {
  --vpc-accent: #087cff;
}

.vpc-product-specs {
  background: linear-gradient(145deg, #f8faff 0%, #f2f5fa 100%);
  border: 1px solid #e1e7f0;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(28, 51, 84, .06);
  display: grid;
  list-style: none;
  margin: 13px 10px 16px;
  overflow: hidden;
  padding: 3px 12px;
  text-align: left;
}

.vpc-product-specs__item {
  align-items: center;
  border-bottom: 1px solid #e6ebf2;
  display: grid;
  gap: 10px;
  grid-template-columns: 29px minmax(0, 1fr);
  line-height: 1.25;
  margin: 0;
  min-width: 0;
  padding: 8px 0;
}

.vpc-product-specs__item:last-child { border-bottom: 0; }

.vpc-product-specs__icon {
  align-items: center;
  background: rgba(8, 124, 255, .1);
  border-radius: 7px;
  color: var(--vpc-accent);
  display: flex;
  height: 27px;
  justify-content: center;
  width: 27px;
}

.vpc-product-specs__icon svg {
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 17px;
}

.vpc-product-specs__content { display: block; min-width: 0; }

.vpc-product-specs__content small {
  color: #7c8798;
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .55px;
  line-height: 1.15;
  margin: 0 0 2px;
  text-transform: uppercase;
}

.vpc-product-specs__content strong {
  color: #202938;
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

/* TARJETA DE ESPECIFICACIONES OSCURA EN CATEGORÍAS */
body#category .vpc-product-specs,
body.vpc-dark-theme .vpc-product-specs,
body[class*="dark"] .vpc-product-specs {
  background: linear-gradient(145deg, #242424 0%, #202020 100%);
  border-color: #3a3a3a;
  box-shadow: 0 5px 16px rgba(0, 0, 0, .2);
}

body#category .vpc-product-specs__item,
body.vpc-dark-theme .vpc-product-specs__item,
body[class*="dark"] .vpc-product-specs__item {
  border-bottom-color: #3a3a3a;
}

body#category .vpc-product-specs__icon,
body.vpc-dark-theme .vpc-product-specs__icon,
body[class*="dark"] .vpc-product-specs__icon {
  background: rgba(8, 124, 255, .16);
  color: #4c9dff;
}

body#category .vpc-product-specs__content small,
body.vpc-dark-theme .vpc-product-specs__content small,
body[class*="dark"] .vpc-product-specs__content small {
  color: #969da8;
}

body#category .vpc-product-specs__content strong,
body.vpc-dark-theme .vpc-product-specs__content strong,
body[class*="dark"] .vpc-product-specs__content strong {
  color: #f2f4f7;
}