/** Shopify CDN: Minification failed

Line 276:29 Expected ")" to end URL token
Line 284:31 Expected ")" to end URL token
Line 287:31 Expected ")" to end URL token

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collections (INDEX:6) */
.fcvd-collections-header { margin-top: 2.5rem; }
  .fcvd-collections-list { padding: 1.5rem 0 5rem; }
  @media (max-width: 768px) {
    .fcvd-collections-header { margin-top: 1.5rem; }
  }
  .collection-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
    gap: 2rem;
  }
  .collection-grid.columns-3 { --cols: 3; }
  .collection-grid.columns-4 { --cols: 4; }
  .collection-card { margin: 0; }
  .collection-card__link {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #EDEDED;
    text-decoration: none;
    color: #1F1F1F;
    transition: border-color 0.15s, transform 0.15s;
    height: 100%;
  }
  .collection-card__link:hover {
    border-color: #F17200;
    color: #1F1F1F;
  }
  .collection-card__link:visited { color: #1F1F1F; }
  .collection-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    background: #F3F3F3;
    overflow: hidden;
    position: relative;
  }
  .collection-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .collection-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F3F3F3 0%, #EDEDED 100%);
  }
  .collection-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.25rem;
  }
  .collection-card__title {
    font: 700 1.125rem/1.25rem Rajdhani, sans-serif;
    text-transform: uppercase;
    color: #1F1F1F;
  }
  .collection-card__count {
    font: 500 0.875rem/1.25rem Rajdhani, sans-serif;
    color: #A1A1A1;
  }

  @media (max-width: 1024px) {
    .collection-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
  }
  @media (max-width: 768px) {
    .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
    .fcvd-collections-list { padding: 1rem 0 2.5rem; }
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:7) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:hello-world (INDEX:12) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero-slideshow (INDEX:13) */
.hero-slideshow {
    position: relative;
    height: var(--slide-height, 200px);
    overflow: hidden;
  }

  .hero-slideshow__track {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-slideshow__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
  }

  .hero-slideshow__slide--active {
    opacity: 1;
    z-index: 2;
  }

  .hero-slideshow .hero-img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .hero-slideshow .slide-inner {
    width: 100%;
    height: 100%;
  }

  .hero-slideshow .slide-link {
    position: absolute;
    inset: 0;
    text-indent: -9999px;
    z-index: 3;
  }

  .hero-slideshow__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-slideshow__placeholder {
    width: 100%;
    height: 100%;
  }

  .hero-slideshow__link {
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  @media (min-width: 768px) {
    .hero-slideshow {
      height: var(--slide-height-desktop, 500px);
    }
  }
/* END_SECTION:hero-slideshow */

/* START_SECTION:newsletter (INDEX:15) */
/* === Section background === */
  .section-newsletter { padding: 0; position: relative; }
  .section-newsletter .row {
    color: #fff;
    background-color: #1F1F1F;
    padding: 2rem;
    text-align: center;
    background-image: url({{ 'Newsletter_BG_Mobile.png.webp' | asset_url }});
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  @media (min-width: 1180px) {
    .section-newsletter .row {
      padding: 3rem;
      background-image: url({{ 'Newsletter_BG_Desktop.png.webp' | asset_url }});
    }
    .section-newsletter .row .col .s-content {
      background-image: url({{ 'Wei_Binne_Volledam.png.webp' | asset_url }});
      background-size: 16.5rem 8.25rem;
      background-position: right 3rem bottom 3rem;
      background-repeat: no-repeat;
    }
  }

  /* === Text === */
  .section-newsletter h2.section-title {
    color: #fff;
    text-align: center;
    line-height: 2.25rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: Rajdhani, sans-serif;
    margin: 0 0 1rem;
  }
  .section-newsletter .s-content { width: 100%; }
  .section-newsletter .s-content > p:first-child {
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25rem;
    margin: 0 0 1rem;
  }

  /* === Form wrapper === */
  .section-newsletter .fcvd-form {
    text-align: left;
    color: #fff;
    width: 100%;
    max-width: 28.5rem;
    margin: 0 auto;
  }
  .section-newsletter .fcvd-newsletter-form { margin: 0; }

  /* === Grid fields === */
  .section-newsletter .gform_fields {
    display: grid;
    gap: 16px 2%;
    grid-template-columns: repeat(12, 1fr);
    width: 100%;
    align-items: start;
  }
  .section-newsletter .gfield { grid-column: 1 / -1; min-width: 0; margin: 0; padding: 0; border: 0; }
  .section-newsletter .gfield--width-full { grid-column: span 12; }

  /* === Labels === */
  .section-newsletter .gfield_label {
    display: inline-block;
    font-family: Rajdhani, sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px;
    padding: 0;
    color: #fff;
  }
  .section-newsletter .hidden_label .gfield_label {
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    width: 1px;
    overflow: hidden;
    position: absolute !important;
  }
  .section-newsletter .gfield_required_text { display: none; }

  /* === Name split === */
  .section-newsletter .ginput_complex {
    display: flex;
    flex-flow: wrap;
    width: 100%;
  }
  .section-newsletter .ginput_complex > span { flex: 1 1 0%; }
  @media (min-width: 641px) {
    .section-newsletter .ginput_complex > span.name_first { padding-right: 1%; }
    .section-newsletter .ginput_complex > span.name_last  { padding-left: 1%; }
  }
  @media (max-width: 640px) {
    .section-newsletter .ginput_complex > span { flex: 0 0 100%; margin-bottom: 8px; padding: 0; }
  }

  /* === Inputs === */
  .section-newsletter input[type="text"],
  .section-newsletter input[type="email"] {
    font-family: Rajdhani, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 0;
    background-color: #494949;
    border: 1px solid #494949;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    line-height: 1.5rem;
  }
  .section-newsletter input[type="text"]::placeholder,
  .section-newsletter input[type="email"]::placeholder { color: rgba(255,255,255,0.7); }
  .section-newsletter input[type="text"]:focus,
  .section-newsletter input[type="email"]:focus { outline: none; border-color: #F17200; }

  /* === Consent checkbox === */
  .section-newsletter .ginput_container_consent {
    font-size: 0.75rem;
    color: #fff;
    margin-top: 0.5rem;
  }
  .section-newsletter .ginput_container_consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 0.9375rem;
    height: 0.9375rem;
    border: 1px solid #BFBFBF;
    border-radius: 0;
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: top;
    background: transparent;
    cursor: pointer;
    position: relative;
  }
  .section-newsletter .ginput_container_consent input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    top: 1px; left: 1px;
    width: 11px; height: 11px;
    background-color: #fff;
  }
  .section-newsletter .gfield_consent_label {
    display: inline-block;
    max-width: calc(100% - 1.75rem);
    transform: translateY(-0.25rem);
    font-size: 0.875rem;
    color: #fff;
    line-height: 1.25rem;
    cursor: pointer;
  }
  .section-newsletter .gfield_consent_label a {
    color: #fff;
    text-decoration: underline;
  }

  /* === Submit button === */
  .section-newsletter .gform_footer {
    display: flex;
    margin: 6px 0 0;
    padding: 16px 0 0;
  }
  .section-newsletter .gform_button.button {
    font-family: Rajdhani, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    text-transform: uppercase;
    color: #fff;
    background-color: #F17200;
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 0;
    width: 100%;
    max-width: 13.75rem;
    margin: 0 auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.2s;
  }
  .section-newsletter .gform_button.button:hover { background-color: #CF6200; }

  /* === Confirmation + errors === */
  .section-newsletter .gform_confirmation_message {
    color: #fff;
    font-weight: 600;
    text-align: center;
  }
  .section-newsletter .gform_validation_errors {
    color: #fff;
    background-color: rgba(240,16,16,0.3);
    padding: 0.75rem;
    margin-bottom: 0.75rem;
  }

  @media (max-width: 1023px) {
    .section-newsletter h2.section-title { font-size: 2rem; line-height: 1.75rem; }
  }
/* END_SECTION:newsletter */

/* START_SECTION:search (INDEX:19) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:20) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:21) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:fcvd-addons (INDEX:23) */
.fcvd-addons { margin: 1.5rem 0; padding: 1.25rem; background: #F3F3F3; border: 1px solid #EDEDED; }
  .fcvd-addons__title { font-size: 1rem; font-weight: 700; text-transform: uppercase; margin: 0 0 0.75rem; letter-spacing: 0.05em; }
  .fcvd-addon { margin-bottom: 0.5rem; }
  .fcvd-addon:last-child { margin-bottom: 0; }
  .fcvd-addon__row { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; user-select: none; }
  .fcvd-addon__check { position: absolute; opacity: 0; pointer-events: none; }
  .fcvd-addon__custom { display: inline-block; width: 1.125rem; height: 1.125rem; background: #fff; border: 1px solid #A1A1A1; flex-shrink: 0; position: relative; }
  .fcvd-addon__check:checked + .fcvd-addon__custom { background: #F17200; border-color: #F17200; }
  .fcvd-addon__check:checked + .fcvd-addon__custom::after { content: ''; position: absolute; left: 0.3125rem; top: 0.0625rem; width: 0.375rem; height: 0.6875rem; border: solid #fff; border-width: 0 0.125rem 0.125rem 0; transform: rotate(45deg); }
  .fcvd-addon__check:focus-visible + .fcvd-addon__custom { outline: 2px solid #F17200; outline-offset: 2px; }
  .fcvd-addon__name { font-weight: 500; }
  .fcvd-addon__price { color: #1F1F1F; font-weight: 500; margin-left: auto; }
  .fcvd-addon__input { display: block; margin-top: 0.5rem; margin-left: 1.625rem; padding: 0.5rem 0.75rem; border: 1px solid #A1A1A1; background: #fff; font-size: 1rem; width: calc(100% - 1.625rem); max-width: 18rem; }
  .fcvd-addon__input[hidden] { display: none !important; }
  .fcvd-addon__input:focus { outline: none; border-color: #F17200; }
/* END_SNIPPET:fcvd-addons */

/* START_SNIPPET:image (INDEX:25) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:not-found (INDEX:27) */
.fcvd-notfound__header {
    background: transparent;
    padding: 5rem 0 0;
  }
  .fcvd-notfound__title {
    color: #1F1F1F;
    font: 600 3rem/2.375rem Rajdhani, sans-serif;
    text-transform: uppercase;
    margin: 0;
  }
  .fcvd-notfound__body {
    padding: 1.5rem 0 5rem;
  }
  .fcvd-notfound__content {
    max-width: 40rem;
  }
  .fcvd-notfound__content p {
    font: 500 1rem/1.5rem Rajdhani, sans-serif;
    color: #1F1F1F;
    margin: 0 0 1rem;
  }
  .fcvd-notfound__actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  a.fcvd-notfound__btn,
  a.fcvd-notfound__btn:link,
  a.fcvd-notfound__btn:visited,
  a.fcvd-notfound__btn:hover,
  a.fcvd-notfound__btn:focus,
  a.fcvd-notfound__btn:active {
    color: #fff;
  }
  .fcvd-notfound__btn {
    display: inline-block;
    background: #F17200;
    padding: 0.75rem 1.25rem;
    font: 600 1rem/1.5rem Rajdhani, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.15s;
  }
  a.fcvd-notfound__btn:hover { background: #CF6200; }
  .fcvd-notfound__btn--secondary { background: #1F1F1F; }
  a.fcvd-notfound__btn--secondary:hover { background: #F17200; }

  @media (max-width: 768px) {
    .fcvd-notfound__header { padding: 2.5rem 0 0; }
    .fcvd-notfound__title { font-size: 2.5rem; line-height: 2.75rem; }
    .fcvd-notfound__body { padding: 1.25rem 0 2.5rem; }
  }
/* END_SNIPPET:not-found */