body.page .entry-content,
body.single-product .entry-content,
body.tax-product_cat .site-main,
body.single-product .summary,
body.single-product .woocommerce-tabs {
  color: var(--vs-text-soft);
}

body.page .entry-content p,
body.page .entry-content h1,
body.page .entry-content h2,
body.page .entry-content h3,
body.page .entry-content h4,
body.page .entry-content h5,
body.page .entry-content h6,
body.page .entry-content li,
body.page .entry-content a,
body.single-product .summary p,
body.single-product .summary h1,
body.single-product .summary h2,
body.single-product .summary h3,
body.single-product .summary a {
  color: inherit;
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product a {
  color: var(--vs-text);
}

.vs21-floating-cart-bar *,
.vs21-floating-cart-bar a {
  color: var(--vs-text);
}
/* ============================================
   VS Print Studio — Best Sellers
   ============================================ */

.vsps-best-sellers-app {
  width: 100%;
  margin: 0 auto;
  padding: 20px 16px 10px;
  box-sizing: border-box;
}

.vsps-section-head {
  max-width: 1200px;
  margin: 0 auto 18px;
  text-align: center;
}

.vsps-section-title {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--vs-text);
}

.vsps-section-subtitle {
  margin: 0;
  color: var(--vs-text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.vsps-best-sellers-grid {
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile: 2 columnas */
.vsps-best-sellers-grid .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Tablet: 2 columnas */
@media (min-width: 768px) {
  .vsps-best-sellers-grid .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}

/* Desktop: 4 columnas */
@media (min-width: 1024px) {
  .vsps-best-sellers-grid .woocommerce ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}