/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 33:0 Unexpected "{"
Line 33:1 Expected identifier but found "%"

**/
{% style %}
  body {
    font-family: var(--font-body-family) !important;
    font-size: 16px; /* Pas aan naar wens */
  }

  h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading-family) !important;
    font-weight: 400 !important; /* Bronova is van zichzelf al krachtig */
    line-height: 1.2;
    letter-spacing: 0.02em;
  }

  /* Specifieke elementen die vaak hun eigen font-family pakken in dit thema */
  p, li, a, span, button, input, label {
       font-family: var(--bs-body-font-family) !important;
    font-weight: var(--bs-body-font-weight) !important;
    font-size: var(--bs-body-font-size);
  }

  /* De font-size fix voor body tekst die je eerder had (12px is erg klein, 14px of 16px is gangbaarder) */
  p, li, a {
    font-size: 14px; 
  }
{% endstyle %}

/* Aangepaste media gallery stijlen */
.product-gallery-items {
  display: grid;
  gap: 1rem;
}

.product-gallery__item {
  position: relative;
}

.product-gallery__item-button {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.product-gallery__item-image img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

.product-gallery__item-button:hover .product-gallery__item-image img {
  transform: scale(1.05);
}

/* Pas de thumbnails aan */
.media-gallery-thumbs .swiper-slide {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.media-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.fs-xxxl{
  font-size: 30px;
}

@media (max-width: 768px){
.container{

  padding: 0 10px !important;
}
}