.pb-main .usp-row,
.pb-main .shop-cats,
.pb-main .shop-banner {
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto
}

/* ---- shop-hero ---- */
.pb-main .shop-hero {
	background: #f7efe8;
	border-bottom: 1px solid var(--line);
	padding-top: 32px;
	padding-right: 32px;
	padding-bottom: 24px;
	padding-left: 32px
}

.pb-main .shop-hero .eyebrow {
	margin-bottom: 6px
}

.pb-main .shop-hero h1 {
	font-family: Fraunces, serif;
	color: var(--brown);
	font-size: 38px;
	line-height: .96;
	letter-spacing: -.03em;
	margin: 0 0 10px
}

.pb-main .shop-hero p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.55;
	max-width: 60ch
}

.pb-main .shop-search {
	margin-top: 14px;
	display: flex;
	gap: 8px;
	max-width: 520px
}

.pb-main .shop-search input {
	flex: 1;
	min-width: 0;
	height: 42px;
	border: 1px solid var(--line);
	background: #fffaf5;
	border-radius: 3px;
	padding: 0 11px;
	color: var(--dark);
	font: 500 13px/1 Manrope, system-ui, sans-serif
}

.pb-main .shop-search button {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	display: grid;
	place-items: center;
	border-radius: 3px;
	background: var(--brown);
	color: #fff
}

.pb-main .shop-search button svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	stroke-width: 1.8;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round
}

/* ---- live productzoeker: resultaten-dropdown onder het zoekveld ----
   Absoluut gepositioneerd t.o.v. .shop-search zodat er GEEN pagina-scroll is;
   inhoud wordt client-side gevuld door het Code-element in de shop-hero. */
.pb-main .shop-search {
	position: relative
}

.pb-main .shop-search-drop {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 50;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden auto;
	max-height: min(66vh, 430px);
	box-shadow: 0 20px 44px -20px rgba(60, 40, 25, .42)
}

.pb-main .shop-search-drop[hidden] {
	display: none
}

.pb-main .shop-search-drop .ss-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 12px;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid #f1e7dd
}

.pb-main .shop-search-drop .ss-item:hover {
	background: #f7efe8
}

.pb-main .shop-search-drop .ss-item img {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	object-fit: contain;
	background: #f5f0eb;
	border-radius: 6px;
	padding: 3px;
	display: block
}

.pb-main .shop-search-drop .ss-name {
	flex: 1;
	min-width: 0;
	color: #201a16;
	letter-spacing: -.01em;
	font: 850 13.5px/1.25 Manrope, system-ui, sans-serif;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.pb-main .shop-search-drop .ss-price {
	flex: 0 0 auto;
	white-space: nowrap;
	color: var(--brown);
	font-family: Fraunces, serif;
	font-size: 15px;
	font-weight: 600
}

.pb-main .shop-search-drop .ss-price del {
	margin-right: 5px;
	opacity: .55;
	font-weight: 500
}

.pb-main .shop-search-drop .ss-price ins {
	text-decoration: none
}

.pb-main .shop-search-drop .ss-empty {
	padding: 14px;
	color: var(--muted);
	font: 600 13px/1.4 Manrope, system-ui, sans-serif
}

.pb-main .shop-search-drop .ss-all {
	display: block;
	width: 100%;
	text-align: left;
	cursor: pointer;
	border: 0;
	padding: 11px 14px;
	background: #faf4ee;
	color: var(--brown);
	letter-spacing: .01em;
	font: 850 12.5px/1 Manrope, system-ui, sans-serif
}

.pb-main .shop-search-drop .ss-all:hover {
	background: #f2e6da;
	color: var(--accent)
}

/* ---- usp-row (desktop = 4-koloms balk; mobiel = horizontale scroller) ---- */
.pb-main .usp-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	padding-top: 12px;
	padding-right: 32px;
	padding-bottom: 8px;
	padding-left: 32px
}

.pb-main .usp {
	min-height: 62px;
	background: #efe6de;
	border: 1px solid var(--line);
	border-radius: 6px;
	box-shadow: 0 6px 12px rgba(77, 51, 34, .06);
	display: grid;
	grid-template-columns: 26px 1fr;
	gap: 8px;
	align-items: center;
	padding: 10px;
	color: var(--brown);
	text-align: left
}

.pb-main .usp svg {
	width: 24px;
	height: 24px;
	stroke: var(--accent);
	stroke-width: 1.7;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round
}

.pb-main .usp strong {
	display: block;
	font-size: 12px;
	line-height: 1.15;
	font-weight: 900
}

.pb-main .usp span {
	display: block;
	margin-top: 2px;
	color: var(--muted);
	font-size: 10px;
	line-height: 1.2;
	font-weight: 700
}

/* ---- shop-cats (categorie-tegels; desktop grid, mobiel scroller) ---- */
.pb-main .shop-cats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 13px;
	padding-top: 0;
	padding-right: 32px;
	padding-bottom: 14px;
	padding-left: 32px
}

.pb-main .shop-cat {
	position: relative;
	height: 140px;
	min-height: 140px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 15px;
	border: 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow2);
	color: #fff;
	background: #efe6de;
	background-size: cover;
	background-position: center;
	isolation: isolate
}

.pb-main .shop-cat::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(to top, rgba(38, 27, 20, .82) 0%, rgba(38, 27, 20, .34) 46%, rgba(38, 27, 20, 0) 100%)
}

.pb-main .shop-cat-title {
	position: relative;
	z-index: 2;
	font-family: Fraunces, serif;
	font-size: 21px;
	line-height: 1.1;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .28)
}

.pb-main .shop-cat-count {
	position: relative;
	z-index: 2;
	margin-top: 2px;
	color: #fff;
	opacity: .9;
	font-size: 11px;
	font-weight: 600;
	font-family: Manrope, system-ui, sans-serif;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .28)
}

/* ---- filter-pills (statisch/decoratief) ---- */
.pb-main .filter-row {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 14px;
	padding-left: 0
}

.pb-main .filter-row::-webkit-scrollbar {
	display: none
}

.pb-main .filter-pill {
	flex: 0 0 auto;
	height: 32px;
	display: inline-flex;
	align-items: center;
	padding: 0 10px;
	background: #efe6de;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 12px;
	color: var(--brown);
	font-weight: 850;
	cursor: pointer;
	user-select: none;
	transition: background .15s ease, color .15s ease, border-color .15s ease
}

.pb-main .filter-pill:hover {
	border-color: var(--accent);
	color: var(--accent)
}

.pb-main .filter-pill.active:hover {
	color: #fff
}

.pb-main .filter-pill.active {
	background: var(--brown);
	color: #fff;
	border-color: var(--brown)
}

/* ---- categorie-hero (beeld-kaart met overlay, in de stijl van .pb-upd-card) ----
   Grote fotokaart met de categorie-afbeelding (echte <img>, object-fit:cover),
   donkere overlay en linksonder een label-pill + de categorienaam als H1.
   Afbeelding komt uit de term-thumbnail (zie pb-productcat-hero.code.php);
   geen afbeelding = bruine merkkleur-kaart. */
.pb-main .cat-card {
	position: relative;
	height: 400px;
	overflow: hidden;
	border-radius: var(--r);
	background: var(--brown);
	box-shadow: var(--shadow)
}

.pb-main .cat-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.pb-main .cat-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(38, 27, 20, .08), rgba(38, 27, 20, .78))
}

.pb-main .cat-copy {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 22px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start
}

.pb-main .cat-row {
	display: flex;
	align-items: center;
	margin-bottom: 10px
}

.pb-main .cat-copy h1 {
	font-family: Fraunces, serif;
	font-size: 46px;
	line-height: .98;
	font-weight: 700;
	letter-spacing: -.02em;
	color: #fff;
	max-width: 60%;
	margin: 0;
	text-shadow: 0 2px 14px rgba(0, 0, 0, .28)
}

/* ---- productkaarten — gedeelde basis ---- */
.pb-main .product {
	position: relative;
	background: #fff;
	border: 1px solid #eee2d8;
	box-shadow: 0 8px 18px rgba(77, 51, 34, .10);
	overflow: hidden
}

.pb-main .product::after {
	content: "\2661";
	position: absolute;
	top: 10px;
	right: 10px;
	width: 31px;
	height: 31px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	color: #29211c;
	font-size: 21px;
	line-height: 1;
	box-shadow: 0 4px 12px rgba(77, 51, 34, .13);
	z-index: 4
}

/* Gestretchte kaart-link (kaart zelf is een div, niet <a>, i.v.m. de knop-<a> erin). */
.pb-main .product .card-link {
	position: absolute;
	inset: 0;
	z-index: 2
}

.pb-main .rating {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #9a6a2f;
	font-size: 11px;
	font-weight: 800
}

.pb-main .rating small {
	color: var(--muted);
	font-size: 10px;
	font-weight: 700
}

/* WooCommerce injecteert na "toevoegen" een "bekijk winkelmand"-link; verbergen. */
.pb-main .shop-row .added_to_cart {
	display: none !important
}

/* ---- shop-row (Patty's favorieten): brede kaart, prijs onder + ronde knop ---- */
.pb-main .shop-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 4px;
	padding-left: 0
}

.pb-main .shop-row .product {
	display: flex;
	flex-direction: column;
	flex: 0 0 170px;
	min-height: 0;
	padding: 12px;
	border-radius: 14px;
	box-shadow: var(--shadow2)
}

.pb-main .shop-row .product img {
	width: 100%;
	height: 200px;
	object-fit: contain;
	background: #f5f0eb;
	border-radius: 10px;
	margin: 0 0 11px;
	display: block
}

.pb-main .shop-row .product .rating {
	display: none
}

.pb-main .shop-row .product h3 {
	font-family: Fraunces, serif;
	color: var(--brown);
	font-size: 15.5px;
	line-height: 1.25;
	font-weight: 600;
	margin: 0 2px 10px;
	letter-spacing: -.02em
}

.pb-main .shop-row .product .price {
	margin: auto 0 0;
	padding: 0 50px 0 2px;
	display: flex;
	align-items: center;
	min-height: 40px;
	background: none;
	border: 0;
	border-radius: 0;
	font-family: Fraunces, serif;
	color: var(--brown);
	font-size: 19px;
	font-weight: 600
}

.pb-main .shop-row .product .buy {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 5;
	width: 40px;
	height: 40px;
	min-width: 0;
	padding: 0;
	gap: 0;
	margin: 0;
	border: 0;
	border-radius: 12px;
	background: var(--accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	cursor: pointer;
	box-shadow: 0 6px 14px rgba(111, 72, 49, .22)
}

.pb-main .shop-row .product .buy:hover {
	background: #b96a47
}

.pb-main .shop-row .product .buy svg {
	width: 19px;
	height: 19px;
	stroke-width: 1.7
}

/* ---- product-grid (Alle producten): compacte kaart, prijs-badge + volle knop ---- */
.pb-main .product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 16px;
	padding-left: 0
}

.pb-main .product-grid .product {
	flex: none;
	min-height: 232px;
	padding: 8px;
	border-radius: var(--r-md)
}

.pb-main .product-grid .product img {
	width: 100%;
	height: 118px;
	object-fit: contain;
	background: #f5f0eb;
	border-radius: var(--r);
	padding: 8px;
	margin: 0 0 9px;
	display: block
}

.pb-main .product-grid .product h3 {
	font-family: Manrope, system-ui, sans-serif;
	font-size: 14px;
	line-height: 1.14;
	font-weight: 850;
	color: #201a16;
	margin: 0 0 8px;
	min-height: 34px;
	letter-spacing: -.02em
}

.pb-main .product-grid .product .rating {
	display: flex;
	margin: 0 0 7px
}

.pb-main .product-grid .product .price {
	position: static;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: max-content;
	background: var(--accent);
	color: #fff;
	box-shadow: none;
	border-radius: 4px;
	padding: 5px 8px;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	margin: 0 0 8px
}

.pb-main .product-grid .product .buy {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	height: 34px;
	margin-top: 4px;
	padding: 10px 12px;
	background: #6c4d38;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 3px;
	font: 850 12px/1 Manrope, system-ui, sans-serif;
	cursor: pointer;
	box-shadow: none
}

.pb-main .product-grid .product .buy:hover {
	background: #7e5a43
}

.pb-main .product-grid .product .buy svg {
	width: 14px;
	height: 14px;
	stroke-width: 1.7
}

/* ---- shop-banner (Patty tip) ---- */
.pb-main .shop-banner {
	margin-top: 4px;
	margin-bottom: 18px;
	background: linear-gradient(135deg, #6c4d38, #8d644b);
	color: #fff;
	border-radius: 6px;
	padding: 20px 24px;
	box-shadow: var(--shadow)
}

.pb-main .shop-banner .label {
	background: #fff;
	color: var(--brown);
	border-color: #fff
}

.pb-main .shop-banner h3 {
	font-family: Fraunces, serif;
	font-size: 26px;
	line-height: 1;
	margin: 10px 0 8px
}

.pb-main .shop-banner p {
	color: #f3e3d8;
	font-size: 13px;
	line-height: 1.45;
	margin: 0 0 12px;
	max-width: 60ch
}

.pb-main .shop-banner .cta {
	background: #fff !important;
	color: var(--brown) !important;
	box-shadow: none !important
}

/* ---- Updates ---- */
.pb-main .update-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px
}

.pb-main .update-card {
	display: grid;
	grid-template-columns: 108px 1fr;
	gap: 12px;
	align-items: center;
	padding: 8px;
	background: #fff;
	border: 2px solid var(--accent);
	border-radius: var(--r-lg);
	box-shadow: inset 0 0 0 1px var(--accent), var(--shadow2)
}

.pb-main .update-card img {
	width: 108px;
	height: 92px;
	object-fit: cover;
	border-radius: var(--r);
	display: block
}

.pb-main .update-text h3 {
	font-family: Manrope, system-ui, sans-serif;
	font-size: 17px;
	line-height: 1.13;
	margin: 5px 0 0;
	font-weight: 850;
	color: var(--brown);
	letter-spacing: -.02em
}

.pb-main .update-text p {
	font-size: 12px;
	line-height: 1.35;
	color: var(--muted);
	margin: 4px 0 0
}

/* =========================================================
   TABLET (768–1024px): productraster 3-koloms.
   ========================================================= */
@media (min-width:768px) and (max-width:1024px) {
	.pb-main .shop-row {
		grid-template-columns: repeat(3, 1fr)
	}

	.pb-main .product-grid {
		grid-template-columns: repeat(3, 1fr)
	}
}

/* =========================================================
   MOBIEL (<=767px): rijen worden horizontale scrollers / smallere grids,
   secties vullen de volle breedte met 18px binnenmarge (net als pb-common).
   ========================================================= */
@media (max-width:767px) {

	.pb-main .usp-row,
	.pb-main .shop-cats {
		max-width: none;
		margin-left: 0;
		margin-right: 0
	}

	.pb-main .shop-banner {
		max-width: none;
		margin-left: 18px;
		margin-right: 18px
	}

	.pb-main .shop-hero {
		padding-top: 24px;
		padding-right: 18px;
		padding-bottom: 18px;
		padding-left: 18px
	}

	.pb-main .usp-row {
		display: flex;
		grid-template-columns: none;
		overflow-x: auto;
		scrollbar-width: none;
		padding-left: 18px;
		padding-right: 18px
	}

	.pb-main .usp-row::-webkit-scrollbar {
		display: none
	}

	.pb-main .usp {
		flex: 0 0 150px
	}

	.pb-main .shop-cats {
		display: flex;
		grid-template-columns: none;
		gap: 10px;
		overflow-x: auto;
		scrollbar-width: none;
		padding-left: 18px;
		padding-right: 18px
	}

	.pb-main .shop-cats::-webkit-scrollbar {
		display: none
	}

	.pb-main .shop-cat {
		flex: 0 0 188px
	}

	.pb-main .filter-row {
		padding-left: 18px;
		padding-right: 18px
	}

	.pb-main .shop-row,
	.pb-main .product-grid {
		padding-left: 18px;
		padding-right: 18px
	}

	.pb-main .shop-row {
		display: flex;
		grid-template-columns: none;
		gap: 14px;
		overflow-x: auto;
		scrollbar-width: none
	}

	.pb-main .shop-row::-webkit-scrollbar {
		display: none
	}

	.pb-main .shop-row .product {
		flex: 0 0 170px
	}

	.pb-main .product-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px
	}

	.pb-main .product-grid .product {
		min-height: 260px
	}

	.pb-main .cat-card {
		height: 230px
	}

	.pb-main .cat-copy {
		left: 16px;
		right: 16px;
		bottom: 16px
	}

	.pb-main .cat-copy h1 {
		font-size: 27px;
		max-width: 88%
	}

	.pb-main .update-row {
		grid-template-columns: 1fr
	}

	.pb-main .update-card {
		border-radius: var(--r)
	}
}

/* ==========================================================================
   Productcategorie-template
   Zelfde producttegels als "Patty's favorieten".
   ========================================================================== */

.pb-main.pb-product-category {
  width: 100%;
  max-width: none;
  overflow: hidden;
  background: var(--paper, #fffaf5);
}

.pb-product-category .pb-pc-hero-section,
.pb-product-category .pb-pc-products-section {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: var(--pb-edge, clamp(24px, 5vw, 80px)) !important;
  padding-right: var(--pb-edge, clamp(24px, 5vw, 80px)) !important;
}

.pb-product-category .pb-pc-hero-section {
  padding-top: clamp(36px, 5vw, 64px) !important;
  padding-bottom: clamp(30px, 4vw, 48px) !important;
}

.pb-product-category .pb-pc-products-section {
  padding-top: 0 !important;
  padding-bottom: clamp(70px, 8vw, 110px) !important;
}

.pb-product-category .pb-pc-hero-section > *,
.pb-product-category .pb-pc-products-section > * {
  width: min(1240px, 100%);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

/* Extra ruimte tussen de categorieafbeelding en de filterknoppen. */
.pb-product-category .pb-cat-filter {
  width: min(1240px, 100%);
  max-width: 1240px;
  margin: 0 auto;
}

.pb-product-category .filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.pb-product-category .filter-row::-webkit-scrollbar {
  display: none;
}

.pb-product-category .filter-pill {
  flex: 0 0 auto;
  min-height: 38px;
  height: auto;
  padding: 0 15px;
  border: 1px solid var(--line, #dfcfc1);
  border-radius: 999px;
  background: #efe6de;
  color: var(--brown, #75543f);
  font-size: 12px;
  font-weight: 850;
}

.pb-product-category .filter-pill:hover {
  border-color: var(--accent, #cf7b53);
  color: var(--accent, #cf7b53);
}

.pb-product-category .filter-pill.active,
.pb-product-category .filter-pill.active:hover {
  border-color: var(--brown, #75543f);
  background: var(--brown, #75543f);
  color: #ffffff;
}

/* Vier kolommen op groot scherm, aflopend naar één kolom op mobiel. */
.pb-product-category .product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  padding: 0;
}

/* Kaartopmaak gelijk aan .shop-row .product op de Must Haves-pagina. */
.pb-product-category .product-grid .product {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 326px;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid #eee2d8;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow2, 0 8px 18px rgba(77, 51, 34, 0.10));
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pb-product-category .product-grid .product:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(77, 51, 34, 0.14);
}

/* De favorietenplugin plaatst zelf een knop; het oude CSS-hart is niet nodig. */
.pb-product-category .product-grid .product::after {
  display: none;
}

.pb-product-category .product-grid .product > img {
  display: block;
  width: 100%;
  height: 200px;
  margin: 0 0 11px;
  padding: 0;
  border-radius: 10px;
  background: #f5f0eb;
  object-fit: contain;
}

/* Naam als rustige producttekst, zoals bij Patty's favorieten. */
.pb-product-category .product-grid .product h3 {
  min-height: 0;
  margin: 0 2px 10px;
  color: var(--brown, #75543f);
  font-family: Fraunces, Georgia, serif;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* Beoordelingssterren niet tonen op categoriekaarten. */
.pb-product-category .product-grid .product .rating {
  display: none !important;
}

/* Prijs als gewone tekst, zonder oranje badge. */
.pb-product-category .product-grid .product .price {
  position: static;
  display: flex;
  align-items: center;
  min-height: 40px;
  width: auto;
  max-width: none;
  margin: auto 0 0;
  padding: 0 50px 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brown, #75543f);
  font-family: Fraunces, Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: none;
}

/* Alleen het winkelmandicoon rechtsonder, net als op Must Haves. */
.pb-product-category .product-grid .product .buy {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--accent, #cf7b53);
  color: #ffffff;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(111, 72, 49, 0.22);
}

.pb-product-category .product-grid .product .buy:hover {
  background: #b96a47;
}

.pb-product-category .product-grid .product .buy svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.7;
}

/* Echte favorietenknop van de plugin. */
.pb-product-category .product-grid .product .pb-fav-card {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #29211c;
  box-shadow: 0 4px 12px rgba(77, 51, 34, 0.13);
}

.pb-product-category .product-grid .added_to_cart {
  display: none !important;
}

@media (max-width: 1120px) {
  .pb-product-category .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .pb-product-category .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .pb-product-category .pb-pc-hero-section {
    padding-top: 24px !important;
    padding-bottom: 26px !important;
  }

  .pb-product-category .filter-row {
    flex-wrap: nowrap;
    margin-right: calc(var(--pb-edge, 24px) * -1);
    padding-right: var(--pb-edge, 24px);
  }

  .pb-product-category .product-grid {
    grid-template-columns: 1fr;
  }

  .pb-product-category .product-grid .product > img {
    height: 230px;
  }
}

