@charset "UTF-8";
/* ─── Section ──────────────────────────────────────────────── */
.section-products {
  width: 100%;
  padding: 3rem 0px;
  box-sizing: border-box;
}

/* ─── Wrapper ──────────────────────────────────────────────── */
.wrapper-products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ─── Header (titel + meer-link) ────────────────────────────── */
.header-products {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.title-header-products {
  font-size: 25px;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
}

.link-header-products {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 16px;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.link-header-products:hover,
.link-header-products:focus-visible {
  color: #2CAAE9;
  transition: color 0.3s ease;
}

/* ─── Productenlijst ────────────────────────────────────────── */
.list-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ─── Productkaart ──────────────────────────────────────────── */
.link-products {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.link-products h3 {
  transition: color 0.3s ease;
}

.link-products:hover h3,
.link-products:focus-visible h3 {
  color: #2CAAE9;
  transition: color 0.3s ease;
}

/* ─── Afbeelding ────────────────────────────────────────────── */
.image-wrap-products {
  position: relative;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  padding: 1rem;
  box-sizing: border-box;
}

.image-products {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

/* ─── Sale badge ────────────────────────────────────────────── */
.badge-sale-products {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #2CAAE9;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
  line-height: 1;
  z-index: 1;
}

span.stock-products.is-out-of-stock svg {
  position: relative;
  bottom: 1px;
}

/* ─── Info blok ─────────────────────────────────────────────── */
.info-products {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  flex: 1;
}

.title-products {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
  overflow: hidden;
  line-height: 1.2;
}

/* ─── Voorraad ──────────────────────────────────────────────── */
.stock-products {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 13px;
  margin: 10px 0;
}

.stock-products.is-in-stock {
  color: black;
  font-weight: 500;
}

.stock-products.is-out-of-stock {
  color: black;
}

/* ─── Prijs + pijl ──────────────────────────────────────────── */
.price-products {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.price-products .arrow-products {
  margin-left: auto;
}

.price-current-products {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.price-current-products .woocommerce-Price-amount { /* WC eigen class */
  font-weight: 700;
}

.price-regular-products {
  font-size: 0.85rem;
  color: #999;
  text-decoration: line-through;
}

.arrow-products {
  margin-left: auto;
  font-size: 1.1rem;
  color: #1a1a1a;
  transition: transform 0.2s ease;
}

/* ─── Lege state (geen sale-producten) ──────────────────────── */
.empty-products {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  padding: 2rem 0;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .list-products {
    grid-template-columns: repeat(3, 1fr);
  }
  .title-products {
    font-size: 18px;
  }
  .header-products {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .list-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .title-products {
    font-size: 16px;
  }
  .badge-sale-products {
    padding: 8px 15px;
    font-size: 12px;
  }
  .list-products {
    gap: 2rem;
  }
  .title-header-products {
    font-size: 26px;
    line-height: 32px;
  }
	
	.image-wrap-products {
		aspect-ratio: unset !important;
		
	}
	
	.item-products {
		width: 100%;
	}
}
@media (max-width: 500px) {
  .list-products {
    grid-template-columns: 1fr;
  }
  .title-products {
    font-size: 16px;
  }
  .badge-sale-products {
    padding: 6px 15px;
    font-size: 12px;
  }
  .list-products {
    gap: 1.5rem;
  }
  .title-header-products {
    font-size: 24px;
    line-height: 32px;
  }
	
	.image-wrap-products {
		aspect-ratio: unset !important;
		
	}
	
	.item-products {
		width: 100%;
	}
	
	
}/*# sourceMappingURL=four_products.css.map */