/* --- NVIT --- */
/* Mobiel: ALLE shop-achtige pagina's wit */
@media (max-width: 768px) {
  body.post-type-archive-product #ajax-content-wrap,
  body.tax-product_cat #ajax-content-wrap,
  body.tax-product_tag #ajax-content-wrap,
  body.post-type-archive-product .container-wrap,
  body.tax-product_cat .container-wrap,
  body.tax-product_tag .container-wrap {
    background-color: #ffffff !important;
    background-image: none !important;
  }
}

/* Desktop: winkel + categorieën + tags met dezelfde grijze site-achtergrond */
@media (min-width: 769px) {
  body.post-type-archive-product #ajax-content-wrap,
  body.tax-product_cat #ajax-content-wrap,
  body.tax-product_tag #ajax-content-wrap,
  body.post-type-archive-product .container-wrap,
  body.tax-product_cat .container-wrap,
  body.tax-product_tag .container-wrap {
    /* Pas desnoods de kleur aan naar exact die van je thema */
    background-color: #f5f6f7 !important;
    background-image: none !important;
  }
}

/* Laatste menu-item ("Winkel") meer naar rechts schuiven */
header#top nav > ul > li:last-child {
  margin-right: -50px; /* pas dit getal aan tot het mooi uitlijnt */
}

/* Alleen op WooCommerce productpagina's */
.single-product .wc-downloads-tab {
  margin-left: 0 !important;
}

.single-product .wc-downloads-tab p {
  margin: 0 0 12px;
  font-weight: 500;
}

.single-product .wc-downloads-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  gap: 12px;
}

.single-product .wc-downloads-list li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.single-product .wc-downloads-list li::before,
.single-product .wc-downloads-list li::marker {
  content: none !important;
  display: none !important;
}

/* Basisstijl gelijk aan Offerte-knop */
.single-product .pdf-handleiding-button {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  background: #0056ff;   /* basis = blauw */
  color: #fff !important;
  transition: background .25s ease, color .25s ease;
}

/* Hover = lichtere/blauw-wit tint zoals Offerte-knop */
.single-product .pdf-handleiding-button:hover {
  background: #4d79ff;  /* lichtere tint blauw */
  color: #fff !important;
}
@media (min-width: 561px) {
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.woocommerce-shop ul.products li.product,
  body.woocommerce-page.archive ul.products li.product {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  body.post-type-archive-product ul.products li.product:hover,
  body.tax-product_cat ul.products li.product:hover,
  body.tax-product_tag ul.products li.product:hover,
  body.woocommerce-shop ul.products li.product:hover,
  body.woocommerce-page.archive ul.products li.product:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  }

  body.post-type-archive-product ul.products li.product img,
  body.tax-product_cat ul.products li.product img,
  body.tax-product_tag ul.products li.product img,
  body.woocommerce-shop ul.products li.product img,
  body.woocommerce-page.archive ul.products li.product img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
  }

  body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_tag ul.products li.product .woocommerce-loop-product__title,
  body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
  body.woocommerce-page.archive ul.products li.product .woocommerce-loop-product__title {
    margin: 20px 20px 10px;
  }

  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price,
  body.woocommerce-shop ul.products li.product .price,
  body.woocommerce-page.archive ul.products li.product .price {
    display: block;
    margin: 0 20px 20px;
  }
}