.product-zone .be-container {
    width: min(calc(100% - 160px), var(--be-container));
	padding-inline: 0 !important;
}

@media (max-width: 1500px) and (min-width: 1201px) {
.product-zone .be-container {
    width: min(calc(100% - 160px), var(--be-container));
	padding-inline: 0 !important;
}
}
 
@media (max-width: 1200px) and (min-width: 1025px) {
.product-zone .be-container {
    width: min(calc(100% - 120px), var(--be-container));
	padding-inline: 0 !important;
}
}
 
@media (max-width: 1024px) and (min-width: 768px) {
.product-zone .be-container {
    width: min(calc(100% - 80px), var(--be-container));
	padding-inline: 0 !important;
}
}
 
@media (max-width: 767px) { 
.product-zone .be-container {
    width: min(calc(100% - 40px), var(--be-container));
	padding-inline: 0 !important;
}
}



/* Product zone final merge */
.product-zone .product-card, .product-zone .activity-card {
    box-shadow: 0 5px 10px rgb(80 31 58 / 11%) !important;
}

.product-zone .product-card:hover, 
.product-zone .activity-card:hover {
    box-shadow: 0 3px 10px rgba(80, 31, 58, 0.15) !important;
}

.product-zone {
  padding: 60px 0 80px;
  background: var(--be-blush);
  overflow: hidden;
}

.product-zone .be-container {
  padding-inline: var(--be-gutter);
}

.product-zone .section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 13px;
}

.product-zone > .section-head:first-of-type {
  margin-bottom: 35px;
}

.product-zone .section-head--activities {
    margin-top: 80px;
    margin-bottom: 40px;
}

.product-zone .section-head__title {
    font-size: 44px;
    letter-spacing: 0;
    line-height: 1.1;
}

.product-zone .section-head__title span {
  color: var(--be-plum);
}

.product-zone > .section-head:first-of-type .section-head__title em,
.product-zone > .section-head--activities .section-head__title em {
  background: linear-gradient(90deg, #ff965e 0%, #ff5b62 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.product-zone .section-head h2 {
  margin: 5px 0 0;
  color: var(--be-plum);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
}

.product-zone .section-link {
  margin-bottom: 10px;
  color: var(--be-plum-soft);
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-zone .section-link--arrangements-actions,
.product-zone .section-link--activities-actions {
  display: none;
  margin-bottom: 0;
}

.product-zone .carousel-shell {
  --product-zone-stage-width: calc(
    100% + var(--be-gutter) + max(0px, calc((100dvw - var(--be-container)) / 2))
  );

  position: relative;
  min-width: 0;
  overflow: visible;
}

.product-zone .card-row {
  display: grid;
  grid-auto-flow: column;
  width: var(--product-zone-stage-width);
  gap: 29px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 0 32px;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-x;
}

.product-zone .card-row.is-drag-ready {
  cursor: grab;
  scroll-snap-type: x mandatory;
  touch-action: pan-y pinch-zoom;
}

.product-zone .card-row.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.product-zone .card-row img {
  -webkit-user-drag: none;
  user-select: none;
}

.product-zone .card-row::-webkit-scrollbar {
  display: none;
}

.product-zone .card-row--arrangements {
  --arrangement-card-shadow-gutter: 12px;
  align-items: stretch;
  width: calc(var(--product-zone-stage-width) + var(--arrangement-card-shadow-gutter));
  grid-auto-columns: 330px;
  margin-left: calc(var(--arrangement-card-shadow-gutter) * -1);
  padding-left: var(--arrangement-card-shadow-gutter);
  scroll-padding-left: var(--arrangement-card-shadow-gutter);
}

.product-zone .card-row--activities {
  --activity-card-shadow-gutter: 12px;
  align-items: stretch;
  width: calc(var(--product-zone-stage-width) + var(--activity-card-shadow-gutter));
  grid-auto-columns: 260px;
  gap: 22px;
  margin-left: calc(var(--activity-card-shadow-gutter) * -1);
  padding-left: var(--activity-card-shadow-gutter);
  scroll-padding-left: var(--activity-card-shadow-gutter);
}

.product-zone .product-card,
.product-zone .activity-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--be-white);
  box-shadow: 0 14px 30px rgba(80, 31, 58, 0.08);
  scroll-snap-align: start;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-zone .product-card:hover,
.product-zone .activity-card:hover {
  box-shadow: 0 18px 38px rgba(80, 31, 58, 0.12);
}

.product-zone .product-card__link,
.product-zone .activity-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-zone .activity-card__title-link {
  color: inherit;
  text-decoration: none;
}

.product-zone .activity-card__title-link:focus-visible {
  outline: 3px solid var(--be-plum-soft);
  outline-offset: 3px;
}

.product-zone .product-card__link:focus-visible,
.product-zone .activity-card__link:focus-visible {
  outline: 3px solid var(--be-plum-soft);
  outline-offset: -3px;
}

.product-zone .product-card__media,
.product-zone .activity-card__media {
  position: relative;
  overflow: visible;
}

.product-zone .product-card img {
  width: 100%;
  aspect-ratio: 1.69;
  object-fit: cover;
  object-position: top center;
}

.product-zone .product-card__price {
  position: absolute;
  right: 12px;
  bottom: -27px;
  width: 76px;
  height: 70px;
  display: grid;
  place-content: center;
  color: var(--be-white);
  background: url("../assets/product-zone/price-badge-shape.webp") center center / contain no-repeat;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.05;
  text-align: center;
  z-index: 1;
}

.product-zone .product-card__price strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.product-zone .product-card__price-note {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
}

.product-zone .product-card__price--range {
  right: 15px;
  bottom: -34px;
  width: 104px;
  height: 98px;
  row-gap: 4px;
  padding: 9px 6px;
}

.product-zone .product-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  white-space: nowrap;
  line-height: 1;
}

.product-zone .product-card__price-row small {
  font-size: 12px;
  font-weight: 500;
}

.product-zone .product-card__price-row strong {
  display: inline;
  font-size: 20px;
  line-height: 1;
}

.product-zone .product-card__price--range .product-card__price-note {
  margin-top: 1px;
  font-size: 12px;
}

.product-zone .product-card__body {
  min-width: 0;
  padding: 30px 20px 20px;
}

.be-activiteiten-page .product-zone .product-card__body {
  min-width: 0;
  padding: 30px 20px 20px;
}

.product-zone .product-card h3,
.product-zone .activity-card h3 {
  margin: 0;
  color: var(--be-plum);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.16;
}

.product-zone .product-card p {
  margin: 9px 0 31px;
  color: var(--be-muted);
  font-size: 14px;
  line-height: 1.45;
}

body.page-id-139 .product-zone .product-card p,
body.page-id-723 .product-zone .product-card p,
body.page-id-105 .product-zone .product-card p,
body.page-id-728 .product-zone .product-card p,
body.page-id-9 .product-zone .product-card p,
body.page-id-217 .product-zone .product-card p,
body.page-id-721 .product-zone .product-card p,
body.page-id-719 .product-zone .product-card p,
body.page-id-717 .product-zone .product-card p,
body.page-id-730 .product-zone .product-card p {
  margin: 9px 0 12px;
}

.be-activiteiten-page .product-zone .product-card p {
  margin: 8px 0 12px !important;
}

body.single-beleef_activity.be-activiteiten-page
  .product-zone .card-row--arrangements .product-card p {
  margin: 9px 0 12px !important;
}

.product-zone .product-card:hover p {
  color: var(--be-plum);
}

.product-zone .product-card .be-button {
  min-height: 36px;
  padding-inline: 24px;
  border-radius: 999px;
  background: var(--be-coral-strong);
  font-size: 13px;
}

body.beleef-homepage
  .product-zone
  .card-row--arrangements
  .arrangements-catalogue__detail-link,
body.beleef-activities-overview-page
  .product-zone
  .card-row--arrangements
  .arrangements-catalogue__detail-link {
  background: var(--be-orange);
}

.product-zone .product-card .be-button:hover,
.product-zone .activity-card .be-button:hover,
.product-zone .activity-card .be-button:focus-visible {
  background: var(--be-plum-soft);
}

.product-card__cta-link:hover {
  background-color: #963a75 !important;
  border-color: #963a75 !important;
}

.product-zone .product-card__meta {
  display: inline-flex;
  align-self: flex-start;
  align-items: end;
  gap: 8px;
  margin-top: 17px;
  padding: 0;
  border: 0;
  appearance: none;
  color: #8f2c4b;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 300;
}

.product-zone .product-card__meta::after {
  width: 13px;
  height: 13px;
  display: inline-block;
  background: url("../assets/product-zone/planning-down-icon.svg") center / contain no-repeat;
  content: "";
}

/* Align card actions to the bottom across every carousel. */
.product-zone .card-row--arrangements .product-card,
.product-zone .card-row--activities .activity-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-zone .card-row--arrangements .product-card__link,
.product-zone .card-row--activities .activity-card__link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.product-zone .card-row--arrangements .product-card__body,
.product-zone .card-row--activities .activity-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.product-zone .card-row--arrangements .product-card__participants {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--be-muted);
  font-size: 12px;
  font-weight: 300;
  position: relative;
  top: -8px;
}

.product-zone .card-row--arrangements .product-card__participants span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.product-zone .card-row--arrangements .product-card__participants span::before {
  width: 13px;
  height: 13px;
  display: inline-block;
  flex: 0 0 auto;
  background: url("../assets/product-zone/profile-user.svg") center / contain no-repeat;
  content: "";
}

.product-zone .card-row--arrangements .product-card__body > .be-button,
.product-zone .card-row--activities .activity-card__body > .be-button {
  align-self: flex-start;
  margin-top: auto !important;
}

.product-zone .card-row--arrangements .product-card__body > .product-card__meta {
  flex: 0 0 auto;
}

.product-zone .card-row--arrangements .product-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto !important;
  padding-top: 20px;
}

.product-zone .card-row--arrangements .product-card__actions > .be-button {
  order: 2;
  margin-top: 14px !important;
}

.product-zone .card-row--arrangements .product-card__actions > .product-card__meta {
	order: 2;
	margin-top: 12px !important;
}

.product-zone .card-row--arrangements .arrangements-catalogue__button-row {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.product-zone .card-row--arrangements .arrangements-catalogue__button-row .be-button {
	flex: 0 0 auto;
	min-width: 0;
	min-height: 36px;
	margin: 0 !important;
	padding-inline: 10px;
	font-size: 12px;
	white-space: nowrap;
}

body.be-activiteiten-page .product-zone .card-row--arrangements .product-card__actions {
  margin-inline: 0px;
}

body.beleef-homepage .product-zone .card-row--arrangements {
  align-items: stretch;
}

body.beleef-homepage .product-zone .card-row--arrangements .product-card {
  height: 100%;
}

body.beleef-homepage .product-zone .card-row--arrangements .product-card__link,
body.beleef-homepage .product-zone .card-row--arrangements .product-card__body {
  display: flex;
  flex-direction: column;
}

body.beleef-homepage .product-zone .card-row--arrangements .product-card__body {
  flex: 1 1 auto;
}

body.beleef-homepage .product-zone .card-row--arrangements .product-card .be-button {
  align-self: flex-start;
  margin-top: auto;
}

body.beleef-homepage .product-zone .card-row--arrangements .product-card__meta {
  align-self: flex-start;
}

body.beleef-homepage #arrangementen .card-row--arrangements {
  align-items: stretch;
}

body.beleef-homepage #arrangementen .card-row--arrangements .product-card {
  height: 100%;
}

body.beleef-homepage #arrangementen .card-row--arrangements .product-card__link,
body.beleef-homepage #arrangementen .card-row--arrangements .product-card__body {
  display: flex;
  flex-direction: column;
}

body.beleef-homepage #arrangementen .card-row--arrangements .product-card__body {
  flex: 1 1 auto;
}

body.beleef-homepage #arrangementen .card-row--arrangements .product-card .be-button {
  align-self: flex-start;
  margin-top: auto;
}

body.beleef-homepage #arrangementen .card-row--arrangements .product-card__meta {
  align-self: flex-start;
}

/* Keep the Home arrangement actions aligned to the bottom of every card. */
body.beleef-homepage #arrangementen .card-row--arrangements .product-card {
  display: flex;
  flex-direction: column;
}

body.beleef-homepage #arrangementen .card-row--arrangements .product-card__link {
  flex: 1 1 auto;
}

body.beleef-homepage #arrangementen .card-row--arrangements .product-card__body {
  min-height: 0;
}

body.beleef-homepage #arrangementen .card-row--arrangements .product-card__body > .be-button {
  margin-top: auto;
}

body.beleef-homepage #arrangementen .card-row--arrangements .product-card__body > .product-card__meta {
  flex: 0 0 auto;
}

/* Match selected arrangement badges to the Arrangementen reference. */
body.beleef-homepage #arrangementen
  .card-row--arrangements .product-card__price--range,
body.postid-866 #arrangementen
  .card-row--arrangements .product-card__price--range,
body.over-ons-page #arrangementen
  .card-row--arrangements .product-card__price--range,
body.postid-1035 #arrangementen
  .card-row--arrangements .product-card__price--range {
  justify-content: center;
  text-align: right;
}

body.beleef-homepage #arrangementen
  .card-row--arrangements .product-card__price--range .product-card__price-row,
body.postid-866 #arrangementen
  .card-row--arrangements .product-card__price--range .product-card__price-row,
body.over-ons-page #arrangementen
  .card-row--arrangements .product-card__price--range .product-card__price-row,
body.postid-1035 #arrangementen
  .card-row--arrangements .product-card__price--range .product-card__price-row {
  justify-content: flex-end;
}

body.beleef-homepage #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type,
body.postid-866 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type,
body.over-ons-page #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type,
body.postid-1035 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type {
  display: grid;
  grid-template-columns: 1fr;
  align-items: baseline;
  width: 100%;
  gap: 1px 3px;
  white-space: normal;
}

body.beleef-homepage #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child,
body.postid-866 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child,
body.over-ons-page #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child,
body.postid-1035 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child {
  grid-column: 1 / -1;
}

body.beleef-homepage #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child::after,
body.postid-866 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child::after,
body.over-ons-page #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child::after,
body.postid-1035 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child::after {
  content: ":";
}

body.beleef-homepage #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > strong,
body.postid-866 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > strong,
body.over-ons-page #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > strong,
body.postid-1035 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > strong {
  justify-self: end;
}

body.beleef-homepage #arrangementen
  .card-row--arrangements .product-card__price-row > small:last-child,
body.postid-866 #arrangementen
  .card-row--arrangements .product-card__price-row > small:last-child,
body.over-ons-page #arrangementen
  .card-row--arrangements .product-card__price-row > small:last-child,
body.postid-1035 #arrangementen
  .card-row--arrangements .product-card__price-row > small:last-child {
  display: none;
}

/* Match selected single-activity arrangement badges to the Arrangementen catalogue reference. */
body.postid-918 #arrangementen
  .card-row--arrangements .product-card__price--range,
body.postid-1494 #arrangementen
  .card-row--arrangements .product-card__price--range,
body.postid-1017 #arrangementen
  .card-row--arrangements .product-card__price--range,
body.postid-1001 #arrangementen
  .card-row--arrangements .product-card__price--range,
body.postid-919 #arrangementen
  .card-row--arrangements .product-card__price--range,
body.postid-845 #arrangementen
  .card-row--arrangements .product-card__price--range,
body.postid-625 #arrangementen
  .card-row--arrangements .product-card__price--range,
body.postid-780 #arrangementen
  .card-row--arrangements .product-card__price--range {
  justify-content: center;
  text-align: right;
}

body.postid-918 #arrangementen
  .card-row--arrangements .product-card__price--range .product-card__price-row,
body.postid-1494 #arrangementen
  .card-row--arrangements .product-card__price--range .product-card__price-row,
body.postid-1017 #arrangementen
  .card-row--arrangements .product-card__price--range .product-card__price-row,
body.postid-1001 #arrangementen
  .card-row--arrangements .product-card__price--range .product-card__price-row,
body.postid-919 #arrangementen
  .card-row--arrangements .product-card__price--range .product-card__price-row,
body.postid-845 #arrangementen
  .card-row--arrangements .product-card__price--range .product-card__price-row,
body.postid-625 #arrangementen
  .card-row--arrangements .product-card__price--range .product-card__price-row,
body.postid-780 #arrangementen
  .card-row--arrangements .product-card__price--range .product-card__price-row {
  justify-content: flex-end;
}

body.postid-918 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type,
body.postid-1494 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type,
body.postid-1017 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type,
body.postid-1001 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type,
body.postid-919 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type,
body.postid-845 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type,
body.postid-625 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type,
body.postid-780 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type {
  display: grid;
  grid-template-columns: 1fr;
  align-items: baseline;
  width: 100%;
  gap: 1px 3px;
  white-space: normal;
}

body.postid-918 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child,
body.postid-1494 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child,
body.postid-1017 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child,
body.postid-1001 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child,
body.postid-919 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child,
body.postid-845 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child,
body.postid-625 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child,
body.postid-780 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child {
  grid-column: 1 / -1;
}

body.postid-918 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > strong,
body.postid-1494 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > strong,
body.postid-1017 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > strong,
body.postid-1001 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > strong,
body.postid-919 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > strong,
body.postid-845 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > strong,
body.postid-625 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > strong,
body.postid-780 #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > strong {
  justify-self: end;
}

body.postid-918 #arrangementen
  .card-row--arrangements .product-card__price-row > small:last-child,
body.postid-1494 #arrangementen
  .card-row--arrangements .product-card__price-row > small:last-child,
body.postid-1017 #arrangementen
  .card-row--arrangements .product-card__price-row > small:last-child,
body.postid-1001 #arrangementen
  .card-row--arrangements .product-card__price-row > small:last-child,
body.postid-919 #arrangementen
  .card-row--arrangements .product-card__price-row > small:last-child,
body.postid-845 #arrangementen
  .card-row--arrangements .product-card__price-row > small:last-child,
body.postid-625 #arrangementen
  .card-row--arrangements .product-card__price-row > small:last-child,
body.postid-780 #arrangementen
  .card-row--arrangements .product-card__price-row > small:last-child {
  display: none;
}

/* Use the homepage price-badge layout on every single activity page. */
body.single-beleef_activity #arrangementen
  .card-row--arrangements .product-card__price--range {
  justify-content: center;
  text-align: right;
}

body.single-beleef_activity #arrangementen
  .card-row--arrangements .product-card__price--range .product-card__price-row {
  justify-content: flex-end;
}

body.single-beleef_activity #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type {
  display: grid;
  grid-template-columns: 1fr;
  align-items: baseline;
  width: 100%;
  gap: 1px 3px;
  white-space: normal;
}

body.single-beleef_activity #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child {
  grid-column: 1 / -1;
}

body.single-beleef_activity #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > small:first-child::after {
  content: ":";
}

body.single-beleef_activity #arrangementen
  .card-row--arrangements .product-card__price--range
  .product-card__price-row:only-of-type > strong {
  justify-self: end;
}

body.single-beleef_activity #arrangementen
  .card-row--arrangements .product-card__price-row > small:last-child {
  display: none;
}

/* Match the homepage arrangement action block on Spel der Spellen only. */
body.postid-866 #arrangementen .card-row--arrangements {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

body.postid-866 #arrangementen .card-row--arrangements .product-card,
body.postid-866 #arrangementen .card-row--arrangements .product-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.postid-866 #arrangementen .card-row--arrangements .product-card__body {
  flex: 1 1 auto;
  min-height: 0;
  padding-bottom: 20px;
}

body.postid-866 #arrangementen .card-row--arrangements .product-card__actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
  margin-inline: 7px;
}

body.postid-866 #arrangementen .card-row--arrangements .product-card__meta {
  padding: 0 !important;
  font-size: 14px !important;
  line-height: normal;
}

body.postid-845 .product-zone .card-row--arrangements {
  align-items: stretch;
}

body.postid-845 .product-zone .card-row--arrangements .product-card {
  height: 100%;
}

body.postid-845 .product-zone .card-row--arrangements .product-card__link,
body.postid-845 .product-zone .card-row--arrangements .product-card__body {
  display: flex;
  flex-direction: column;
}

body.postid-845 .product-zone .card-row--arrangements .product-card__body {
  flex: 1 1 auto;
}

body.postid-845 .product-zone .card-row--arrangements .product-card .be-button {
  align-self: flex-start;
  margin-top: auto;
}

body.postid-845 .product-zone .card-row--arrangements .product-card__meta {
  align-self: flex-start;
}

.product-zone .activity-card img {
  width: 100%;
  aspect-ratio: 1.46;
  object-fit: cover;
  object-position: top center;
}

.product-zone .activity-card .product-card__price {
  right: 9px;
  bottom: -15px;
  width: 50px;
  height: 47px;
  background-image: url("../assets/product-zone/activity-price-badge-shape.svg");
  font-size: 12px;
  line-height: 1.05;
}

.product-zone .activity-card .product-card__price strong {
  font-size: 9px;
}

.product-zone .card-row--activities .product-card__price--activity-range {
  right: 10px;
  bottom: -28px;
  width: 70px;
  height: 65px;
  gap: 5px;
  padding: 14px 10px 12px 16px;
  background-image: url("../assets/product-zone/activity-price-badge-shape.svg");
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.product-zone .card-row--activities .product-card__price--activity-range strong {
  display: block;
  font-size: 12px;
  line-height: 1;
}

.product-zone .card-row--activities .product-card__price-divider {
  width: 10px;
  height: 2px;
  justify-self: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.product-zone .activity-card__body {
  min-width: 0;
  padding: 42px 15px 16px;
}

.product-zone .activity-card h3 {
  font-size: 18px;
}

.product-zone .activity-card p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 20px;
  color: var(--be-muted);
  font-size: 12px;
  font-weight: 300;
}

.product-zone .activity-card p span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.product-zone .activity-card p span::before {
  width: 13px;
  height: 13px;
  display: inline-block;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.product-zone .activity-card p span:first-child::before {
  background-image: url("../assets/product-zone/profile-user.svg");
}

.product-zone .activity-card p span:last-child::before {
  background-image: url("../assets/product-zone/clock.svg");
}

body.postid-845 .product-zone .activity-card p {
  flex-wrap: nowrap;
  gap: 15px;
}

body.postid-845 .product-zone .activity-card p span {
  flex: 0 0 auto;
  white-space: nowrap;
}

body.beleef-homepage .product-zone .activity-card p {
  flex-wrap: nowrap;
  gap: 15px;
}

body.beleef-homepage .product-zone .activity-card p span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.product-zone .activity-card .be-button {
  min-height: 36px;
  padding-inline: 15px;
  font-size: 14px;
}

.product-zone .carousel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
  padding-right: 5px;
}

.product-zone .carousel-actions__buttons {
  display: inline-flex;
  gap: 12px;
  margin-left: auto;
}

.product-zone .carousel-actions button {
  position: relative;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(143, 44, 75, 0.18);
  border-radius: 50%;
  background-color: var(--be-white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px auto;
  box-shadow: 0 7px 16px rgba(80, 31, 58, 0.12);
  color: transparent;
  cursor: pointer;
  font-size: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-zone .carousel-actions button:hover,
.product-zone .carousel-actions button:focus-visible {
  border-color: rgba(143, 44, 75, 0.32);
  box-shadow: 0 10px 22px rgba(80, 31, 58, 0.16);
  transform: translateY(-1px);
}

.product-zone .carousel-actions button[data-scroll-prev] {
  background-image: url("../assets/product-zone/carousel-arrow-left-active.svg");
  box-shadow: 0 7px 16px rgba(80, 31, 58, 0.1);
}

.product-zone .carousel-actions button[data-scroll-next] {
  background-image: url("../assets/product-zone/carousel-arrow-right-active.svg");
}

.product-zone .carousel-actions button.is-disabled,
.product-zone .carousel-actions button:disabled {
  border-color: rgba(143, 44, 75, 0.14);
  box-shadow: 0 5px 12px rgba(80, 31, 58, 0.08);
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.product-zone .carousel-actions button[data-scroll-prev].is-disabled,
.product-zone .carousel-actions button[data-scroll-prev]:disabled {
  background-image: url("../assets/product-zone/carousel-arrow-left.svg");
}

.product-zone .carousel-actions button[data-scroll-next].is-disabled,
.product-zone .carousel-actions button[data-scroll-next]:disabled {
  background-image: url("../assets/product-zone/carousel-arrow-right.svg");
}

.product-zone .carousel-actions button.is-disabled:hover,
.product-zone .carousel-actions button:disabled:hover {
  border-color: rgba(143, 44, 75, 0.14);
  box-shadow: 0 5px 12px rgba(80, 31, 58, 0.08);
  transform: none;
}


@media (max-width: 1410px) and (min-width: 768px) {
.product-zone .card-row {
    width: 108% !important;
}	
}

@media (max-width: 1200px) and (min-width: 1025px) {
.product-zone .section-head__title {
    font-size: 38px;
    letter-spacing: 0;
    line-height: 1.1;
}
}

@media (max-width: 1024px) {
.product-zone .section-head__title {
    font-size: 36px;
    letter-spacing: 0;
    line-height: 1.1;
}

  .product-zone > .section-head:first-of-type {
    align-items: start;
    flex-direction: column;
  }

  .product-zone > .section-head:first-of-type .section-link {
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 0;
  }

  .product-zone > .section-head:first-of-type .section-link--arrangements-head,
  .product-zone .section-head--activities .section-link--activities-head {
    display: none;
  }

  .product-zone .carousel-actions--arrangements,
  .product-zone .carousel-actions--activities {
    justify-content: space-between;
  }

  .product-zone .carousel-actions--arrangements .section-link--arrangements-actions,
  .product-zone .carousel-actions--activities .section-link--activities-actions {
    display: inline-flex;
    align-self: center;
    margin-right: 16px;
  }
  
  .product-zone .section-head {
    display: flex;
    align-items: start;
}
}

body #arrangementen .card-row--arrangements .product-card .product-card__actions {
  align-items: center;
}

body #arrangementen .card-row--arrangements .product-card .product-card__actions > .be-button {
  align-self: center;
}

body #arrangementen .card-row--arrangements .product-card .product-card__actions > .product-card__meta {
  align-self: flex-start;
}

@media (max-width: 767px) {

  .beleef-homepage .product-zone .activity-card__body {
    min-width: 0;
    padding: 30px 20px 20px;
  }

  .beleef-landing-page .product-zone .activity-card__body {
    min-width: 0;
    padding: 30px 20px 20px;
  }

  .beleef-homepage .product-zone .product-card__body {
    min-width: 0;
    padding: 40px 18px 20px;
  }

  .beleef-landing-page .product-zone .product-card__body {
    min-width: 0;
    padding: 42px 18px 20px;
  }

  .beleef-homepage .product-zone .card-row {
    gap: 20px;
  }

  .beleef-landing-page .product-zone .card-row {
    gap: 20px;
  }

  .product-zone .card-row {
    overflow-x: scroll;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(80, 31, 58, 0.28) transparent;
    touch-action: pan-x pan-y;
  }

  .product-zone .card-row::-webkit-scrollbar {
    display: block;
    height: 4px;
  }

  .product-zone .card-row::-webkit-scrollbar-track {
    background: transparent;
  }

  .product-zone .card-row::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(80, 31, 58, 0.28);
  }
}

@media (max-width: 640px) {
	.product-zone {
        padding-top: 60px;
    }
	
	.product-zone .section-head h2 {
		font-size: 16px;
		line-height: 1.4;
	}
	
  .product-zone .section-head__title {
    font-size: 32px;
  }
  
	.product-zone .product-card h3, .product-zone .activity-card h3 {
		font-size: 20px;
		line-height: 1.16;
	}

  .product-zone .card-row--arrangements {
    grid-auto-columns: minmax(280px, 82vw);
  }

  .product-zone .card-row--activities {
    grid-auto-columns: minmax(260px, 72vw);
  }

  .beleef-homepage .product-zone .card-row--activities {
    grid-auto-columns: minmax(275px, 72vw);
  }

  .beleef-landing-page .product-zone .card-row--activities {
    grid-auto-columns: minmax(275px, 72vw);
  }
}

@media (max-width: 480px) {
	.product-zone .card-row--arrangements .arrangements-catalogue__button-row {
		gap: 6px;
	}

	.product-zone .card-row--arrangements .arrangements-catalogue__button-row .be-button {
		padding-inline: 7px;
		font-size: 11px;
	}

  .product-zone .product-card__body {
    padding-inline: 18px;
  }

  .product-zone .product-card__price {
    right: 10px;
    bottom: -23px;
    width: 68px;
    height: 63px;
  }

  .product-zone .product-card__price--range {
    right: 15px;
    bottom: -30px;
    width: 94px;
    height: 88px;
  }
}


/* Arrangement catalogue planning link color */
.product-zone .arrangements-catalogue__card .product-card__meta {
  color: #8f2c4b;
}
