.cms-page-view .main-container {
  background: var(--bg-soft);
  padding: 20px 0;
}
.cms-page-view .top {
  position: relative;
}
.cms-page-view .top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #F7F5F3;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
.cms-page-view .top {
  padding: 16px 0 40px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .cms-page-view .top {
    padding: 32px 0 64px 0;
  }
}
.cms-page-view .top .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #8C8583;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.cms-page-view .top .breadcrumbs a {
  text-decoration: none;
  color: #8C8583;
}
.cms-page-view .top .logo {
  margin-bottom: 24px;
}
.cms-page-view .top .logo img {
  height: 34px;
  -o-object-fit: contain;
  object-fit: contain;
}
.cms-page-view .top .subtitle {
  text-transform: uppercase;
  font-size: 14px;
  color: #1D8479;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}
.cms-page-view .top .main-text {
  font-size: 16px;
  line-height: 150%;
  color: #5C5351;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .cms-page-view .top .main-text {
    font-size: 22px;
  }
}
.cms-page-view .top .main-text .highlight {
  color: #27a595;
  font-weight: 500;
}
.cms-page-view .top .cards {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 8px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .cms-page-view .top .cards {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    margin-bottom: 32px;
  }
}
.cms-page-view .top .cards .card {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  color: #5C5351;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.cms-page-view .top .cards .card img {
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}
.cms-page-view .top .cards .card p {
  margin: 0;
}
.cms-page-view .top .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .cms-page-view .top .buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.cms-page-view .top .buttons .btn {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.cms-page-view .top .buttons .btn.primary {
  background: #27a595;
  color: #ffffff;
}
.cms-page-view .top .buttons .btn.primary:hover {
  background: #27a595;
}
.cms-page-view .top .buttons .btn.outline {
  border: 1px solid #27a595;
  color: #27a595;
}
.cms-page-view .top .buttons .btn.outline:hover {
  background: #27a595;
  color: #ffffff;
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 48px;
  -moz-column-gap: 48px;
  column-gap: 48px;
  padding: 40px 0px;
}
@media (min-width: 768px) {
  .info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 64px 0px;
  }
}
.info .block-left,
.info .block-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.info .block-left > img,
.info .block-right > img {
  width: 100%;
  border-radius: 8px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .info .block-left > img,
  .info .block-right > img {
    height: auto;
  }
}
.info-title {
  font-size: 24px;
  font-family: var(--font-serif);
  color: #1A5550;
  margin: 40px 0 24px 0;
  line-height: 1;
}
@media (min-width: 768px) {
  .info-title {
    font-size: 32px;
    margin: 0 0 24px 0;
  }
}
.info-text {
  font-size: 15px;
  color: #6E615E;
  line-height: 150%;
  margin: 0;
}
@media (min-width: 768px) {
  .info-text {
    font-size: 16px;
    padding-right: 10px;
  }
}
.info .mini-badge-list {
  list-style: none;
  margin-bottom: 16px;
}
.info .mini-badge-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  margin-bottom: 8px;
}
.info .mini-badge-item .mini-badge-icon {
  width: 16px;
  height: 16px;
  background: url("../../images/check.svg") no-repeat;
  background-size: contain;
}
.info .mini-badge-item .mini-badge-text {
  font-size: 16px;
  color: #6E615E;
  line-height: 150%;
}
.info .mini-badge-stars {
  margin-bottom: 8px;
}
.info .mini-badge-score {
  font-size: 14px;
  color: #6E615E;
  line-height: 150%;
  margin-bottom: 24px;
}
.info .btn {
  font-size: 16px;
}
.info ~ .info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 0 40px 0;
}
@media (min-width: 768px) {
  .info ~ .info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 64px 0px;
  }
}
.info ~ .info:last-child {
  padding: 0 0 48px 0;
}
@media (min-width: 768px) {
  .info ~ .info:last-child {
    padding: 64px 0px;
  }
}

.list-wrapper {
  padding: 0 0 40px 0;
}
@media (min-width: 768px) {
  .list-wrapper {
    padding: 64px 0;
  }
}
.list-wrapper .list-title {
  font-size: 24px;
  font-family: var(--font-serif);
  color: #1A5550;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .list-wrapper .list-title {
    font-size: 32px;
    margin-bottom: 48px;
  }
}
.list-wrapper .slick-list {
  margin: 0 -8px 0 0;
  padding: 0 80px 0 0 !important;
}
@media (min-width: 768px) {
  .list-wrapper .slick-list {
    padding: 0 !important;
  }
}
.list-wrapper .list {
  list-style: none;
}
.list-wrapper .list .item {
  margin: 0 8px 0 0;
}
.list-wrapper .list .item .image {
  margin-bottom: 8px;
}
.list-wrapper .list .item .image img {
  width: 100%;
  border-radius: 8px;
}
.list-wrapper .list .item .item-title,
.list-wrapper .list .item .item-text {
  display: block;
  font-size: 15px;
  line-height: 150%;
  color: #6E615E;
}
@media (min-width: 768px) {
  .list-wrapper .list .item .item-title,
  .list-wrapper .list .item .item-text {
    font-size: 16px;
  }
}
.list-wrapper .list .item .item-title {
  color: #1B6A63;
}

/* ---- Categories ---- */
.categories-wrapper {
  padding: 40px 0;
  background: #F7F5F3;
  position: relative;
}
.categories-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #F7F5F3;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
@media (min-width: 768px) {
  .categories-wrapper {
    padding: 64px 0;
  }
}
.categories-wrapper .categories-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #1A5550;
  margin-bottom: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .categories-wrapper .categories-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.categories-wrapper .categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 991px) {
  .categories-wrapper .categories {
    gap: 2px;
  }
}
.categories-wrapper .categories .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(33.333% - 8px);
  flex: 1 1 calc(33.333% - 8px);
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 28px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.categories-wrapper .categories .category:before, .categories-wrapper .categories .category:after {
  display: none;
}
@media (max-width: 991px) {
  .categories-wrapper .categories .category {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 2px);
    flex: 1 1 calc(50% - 2px);
    padding: 9px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.categories-wrapper .categories .category span {
  font-size: 18px;
  font-weight: 500;
  color: #4a4a4a;
}
@media (max-width: 991px) {
  .categories-wrapper .categories .category span {
    font-size: 16px;
    text-overflow: ellipsis;
    width: 50%;
    max-width: 60%;
    overflow: hidden;
  }
}
.categories-wrapper .categories .category img {
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}
.categories-wrapper .categories .category:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.categories-wrapper .categories .category:hover span {
  color: #000;
}

/* ---- Brands ---- */
.brands-section {
  padding: 64px 0 94px 0;
}
.brands-section .brands-container {
  width: 100%;
}
@media (max-width: 1199px) {
  .brands-section .brands-container {
    padding: 0 32px;
  }
}
@media (max-width: 1023px) {
  .brands-section .brands-container {
    padding: 0;
  }
}
.brands-section .brands-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.brands-section .brands-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: #1A5550;
  margin: 0;
}
.brands-section .brands-all {
  border: 1px solid #27a595;
  color: #27a595;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.brands-section .brands-all:hover {
  background-color: #18a999;
  color: #fff;
}
.brands-section .brands-subtitle {
  font-size: 16px;
  color: #847671;
  margin-bottom: 24px;
}
.brands-section .carousel {
  background: none;
}
.brands-section {
  /* ---- slider ---- */
}
.brands-section .brands-list .slick-slide {
  margin: 0 4px;
}
.brands-section .brands-list .slick-list {
  margin: 0 -4px;
}
.brands-section .brand-item {
  background: #ffffff;
  border: 1px solid #F7F5F3;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 0;
}
.brands-section .brand-item img {
  -o-object-fit: contain;
  object-fit: contain;
}
.brands-section {
  /* ---- responsive ---- */
}
@media (max-width: 991px) {
  .brands-section {
    padding: 40px 0 54px 0;
  }
  .brands-section .brands-header {
    gap: 16px;
    text-align: center;
  }
  .brands-section .brands-title {
    font-size: 24px;
  }
  .brands-section .brands-all {
    font-size: 14px;
    padding: 8px 16px;
  }
  .brands-section .brands-subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .brands-section .brand-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 140px;
    flex: 0 0 140px;
    height: 138px;
  }
  .brands-section .brand-item img {
    max-width: 80px;
  }
}

/* ---- Saldo-check (GivaCard API form) ---- */
.cms-saldo-check .saldocheck-wrapper {
  max-width: 560px;
  margin: 2rem auto;
  padding: 0 16px;
}
.cms-saldo-check .saldocheck-wrapper h1 {
  font-family: var(--font-serif);
  color: #1A5550;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .cms-saldo-check .saldocheck-wrapper h1 {
    font-size: 32px;
  }
}
.cms-saldo-check .saldocheck-wrapper p {
  font-size: 16px;
  line-height: 150%;
  color: #5C5351;
}
.cms-saldo-check .saldocheck-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  background: #F7F5F3;
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
}
.cms-saldo-check .saldocheck-label {
  font-size: 14px;
  color: #5C5351;
  font-weight: 500;
}
.cms-saldo-check .saldocheck-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #D8D3D1;
  border-radius: 6px;
  background: #ffffff;
  color: #1A1A1A;
}
.cms-saldo-check .saldocheck-input:focus {
  outline: none;
  border-color: #27a595;
  -webkit-box-shadow: 0 0 0 3px rgba(29, 132, 121, 0.15);
  box-shadow: 0 0 0 3px rgba(29, 132, 121, 0.15);
}
.cms-saldo-check .saldocheck-submit {
  margin-top: 8px;
  padding: 12px 20px;
  font-size: 16px;
  background: #27a595;
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.cms-saldo-check .saldocheck-submit:hover:not(:disabled) {
  background: rgb(33.15, 140.25, 126.65);
}
.cms-saldo-check .saldocheck-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cms-saldo-check .saldocheck-result {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 16px;
  display: none;
}
.cms-saldo-check .saldocheck-result--loading {
  display: block;
  background: #F7F5F3;
  color: #5C5351;
}
.cms-saldo-check .saldocheck-result--error {
  display: block;
  background: #FDECEC;
  color: #9B2C2C;
  border: 1px solid #F5B6B6;
}
.cms-saldo-check .saldocheck-result--ok {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #E4DFDC;
}
.cms-saldo-check .saldocheck-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #5C5351;
}
.cms-saldo-check .saldocheck-row strong {
  color: #1A5550;
  font-size: 20px;
}
.cms-saldo-check .saldocheck-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}
.cms-saldo-check .saldocheck-badge--ok {
  background: #E3F5E0;
  color: #1B6A63;
}
.cms-saldo-check .saldocheck-badge--error {
  background: #FDECEC;
  color: #9B2C2C;
}
.cms-saldo-check .saldocheck-badge--warn {
  background: #FFF4E0;
  color: #8A5A00;
}
.cms-saldo-check .saldocheck-badge--neutral {
  background: #F0EDEB;
  color: #5C5351;
}

/* ---- CMS-page: /winkels (winkel-overzicht) ---- */
.cms-winkels .page-title {
  text-align: left;
}
.cms-winkels .page-title h1 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: normal;
  color: #092a28;
}
.cms-winkels .winkel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 576px) {
  .cms-winkels .winkel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .cms-winkels .winkel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cms-winkels .winkel-card-header {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.cms-winkels .winkel-card-header img {
  display: block;
  width: 100%;
  height: auto;
}
.cms-winkels .winkel-card-header .winkel-title {
  margin: 0;
  background: #092a28;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: normal;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  padding: 8px;
}
.cms-winkels .winkel-card-header .winkel-title a {
  color: #ffffff;
  text-decoration: none;
}
.cms-winkels .winkel-card-header .winkel-title a:hover {
  opacity: 0.85;
}
/*# sourceMappingURL=cms.css.map */
