/** Shopify CDN: Minification failed

Line 525:10 Expected ":"
Line 525:16 Expected ":"
Line 612:0 Expected "}" to go with "{"

**/
@media screen and (max-width: 767px) {
    .smellish-product-grid.container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-inline-end: 0 !important;
    margin-inline-start: 0 !important;   
  }
  .grid--2-col-mobile {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .grid--2-col-mobile .grid__item {
min-width: 0 !important; /* ✅ voorkomt oprekking door inhoud */
  }

  .product-card {
    max-width: 100% !important;
    width: 100% !important;      /* kaart vult zijn kolom */
    height: 226px !important;
    background: #F8F6F2;
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch !important;
    padding: 18px 10px;
    box-sizing: border-box;
  }




  .product-card:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }

  .product-image {
    width: 100%;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-image img {
    height: 125px;
    width: 124px;
    object-fit: contain;
    display: block;
    margin-top: 31.2px;
  }
.product-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Playfair Display', serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #000000;
  margin-top: -12px;
  transform: translateY(2px); /* iets naar beneden */
  text-align: center;
  width: 100%;             /* ✅ laat het meeschalen */
  max-width: 130px;        /* ✅ zorgt voor afkapping */
  margin-left: auto;
  margin-right: auto;
}




  .product-vendor {
    font-stretch: 100%;
    color: #666666;
    font-size: 10.2px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 15px;
    margin-bottom: 0px;
    transform: translateY(-3px); /* iets naar boven */
  }

  .jdgm-widget.jdgm-preview-badge {
    height: auto !important;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-8px);
  }

  .jdgm-star {
    font-size: 10.2px !important;
    width: 10.2px !important;
    height: 10.2px !important;
    line-height: 10.2px !important;
    display: inline-block !important;
    color: #d4af37 !important;
  }

  .jdgm-prev-badge__stars {
    font-size: 10.2px !important;
    display: inline-flex;
    gap: 1.5px;
  }
  /* Nieuw toegevoegd: Plusknop rechtsboven */
.product-card-add {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 10;
}

.add-to-calendar {
  background-color: #d4af37; /* goudkleur */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 16px;
  font-weight: 4000;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.add-to-calendar:hover {
  background-color: #1a1a1a;
  transform: scale(1.1);
}
  .product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
  gap: 2px;
}

/* === Alleen mobiel (max 767px) === */
@media screen and (max-width: 767px) {
  .prod-toolbar-v2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-areas:
      "gender gender"
      "tags tags"
      "search filter";
    row-gap: 14px !important;
    column-gap: 12px !important;
    margin-top: 0 !important;
    margin-bottom: 0px !important;
    padding: 0 15px 0px 15px !important;
    max-width: 100% !important;
    position: relative !important;
  }

  .prod-title {
    font-size: 32px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin: 0 0 0px 0 !important;
    padding-top: 15px !important;
  }

  .toolbar-center {
  grid-area: gender !important;
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  order: 1 !important;
}

.prod-gender-labels {
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-bottom: 14px !important;
}

.gender-label {
  padding: 6px 16px !important; /* minder hoog + minder breed */
  font-size: 11.5px !important;
  font-family: Inter, sans-serif !important;
  font-weight: 500 !important;
  border-radius: 10px !important;
  border: 1px solid #ccc !important;
  background-color: #fff !important;
  color: #1a1a1a !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04) !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  min-width: 120px !important; /* vaste minimale breedte */
  text-align: center !important;
}



  .gender-label:hover {
    border-color: #999;
  }

  .gender-label.active {
    background-color: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
  }

  .active-filters-wrapper {
    grid-area: tags !important;
    position: relative !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    background-color: white !important;
    z-index: 10 !important;
    color: #1A1A1A !important;
  padding: 0 10px 2px 10px !important; /* ruimte links en rechts */
  margin-bottom: 4px !important;     /* extra ruimte naar de producten toe */
      justify-content: space-between !important;
  align-items: center !important;
    margin-top: 4px !important; 
  }
.active-filters-above-grid {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

  .active-filters-wrapper .clear-filters {
    margin-top: 1px !important;
    margin-left: auto !important;
    font-size: 11px !important;
    color: #1A1A1A !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
  }

  .filter-tag {
    font-size: 11px !important;
    background: #f2f2f2;
    border-radius: 12px;
    padding: 3px 8px;
  }
button.filter-tag.full-tag-remove {
  font-size: 12px;
  padding: 4px 10px !important;
  border-radius: 10px;
  background-color: #f6f6f6;
  border: 1px solid #e0e0e0;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
button#clear-filters-toolbar {
  margin-left: 12px;
  font-size: 13px;
  background: none;
  border: none;
  color: #1a1a1a;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 6px;
}
#clear-filters-toolbar {
  font-size: 10px !important;
  margin-top: 2px !important;
  margin-left: 10px !important;
  align-self: center;
}

button#clear-filters-toolbar .filter-x {
  font-size: 14px;
  opacity: 0.6;
}
.active-filters-inline-row {
  flex-direction: column;
  align-items: flex-start; /* of center */
  gap: 8px;
}
  .active-filters-above.active-filters {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

  .active-filters-wrapper .tag-remove {
    font-size: 10px !important;
    margin-left: 0px !important;
    line-height: 1 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    color: #1A1A1A !important;
    opacity: 0.6 !important;
  }
.filter-tag-wrapper button {
  padding: 4px 8px !important;
  font-size: 11px !important;
  border-radius: 8px !important;
}

  .active-filters-wrapper button .tag-remove {
    color: #1A1A1A !important;
    opacity: 1 !important;
  }
.tag-remove {
  color: #666 !important;
  font-size: 12px !important;
  opacity: 0.7 !important;
  font-weight: normal !important;  /* normal i.p.v. bold */
  margin-left: 6px;
  cursor: pointer;
  transition: color 0.2s ease;
}
  .active-filters-wrapper .tag-remove:hover {
    opacity: 1 !important;
    color: #000 !important;
  }
.prod-overzicht .active-filters > * {
  padding: 2px 6px !important;
  font-size: 12px !important;
}
  .toolbar-left {
    grid-area: search !important;
    width: 180px !important;
    height: 46.75px !important;
    order: 3 !important;
  }

  .prod-searchbox {
    width: 100% !important;
    position: relative !important;
    height: 46.75px !important;
  }

  .prod-searchbox input {
    width: 100% !important;
    padding: 10px 38px 10px 12px !important;
    font-size: 12px !important;
    border-radius: 12px !important;
    border: 1px solid #ddd !important;
    background-color: #f9f9f9 !important;
    color: #1a1a1a !important;
    font-family: Inter, sans-serif !important;
    height: 46.75px !important;
  }

.search-icon-right {
  position: absolute !important;
  right: 12px !important; /* ruimte voor het kruisje */
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 18px !important;
  height: 18px !important;
  stroke: #666 !important;
}
.clear-icon {
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 16px !important;
  color: #888 !important;
  cursor: pointer !important;
  z-index: 2 !important;
  background: transparent !important;
  border: none !important;
  display: none; /* wordt via JS getoond */
}
  .prod-searchbox input,
input.prod-product-search,
input#product-search {
  padding-right: 38px !important; /* ruimte voor beide iconen */
}
  .toolbar-right {
    grid-area: filter !important;
    order: 4 !important;
  }

  .prod-filter-toggle {
    width: 100% !important;
    padding: 10px !important;
    font-size: 15px !important;
    text-align: center !important;
    border-radius: 12px !important;
    background-color: #333333 !important;
    border: 1px solid #ddd !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .prod-filter-toggle svg {
    width: 22px !important;
    height: 22px !important;
  }
}
@media screen and (max-width: 767px) {
  .filter-panel {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #fff;
    display: flex;
    flex-direction: column;
  }

  .filter-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .filter-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 2px;
    padding-left: 12px;
  }

  #close-filter-panel {
    font-size: 24px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    line-height: 1;
    padding-top: 2px;
  }

  .filter-inner {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 8px 20px 20px;
    -webkit-overflow-scrolling: touch;
  }

details {
  border: none;
  margin-bottom: 0;
  padding: 0;
  border-bottom: 1px solid #eee;
}

  details summary {
    font-size: 16px;
    padding: 14px 0;
    padding-right: 8px;
    padding-left: 8px;
    cursor: pointer;
    list-style: none;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    
  }
details:first-of-type {
  border-top: 1px solid #eee; /* Boven "Merk" */
}

details:last-of-type {
  border-bottom: 1px solid #eee; /* Onder "Gelegenheid" (blijft staan) */
}
  .filter-search {
    font-size: 14px;
    padding: 10px;
    background-size: 16px;
    margin-top: 0;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 0;
    width: 100%;
    border-top: 1px solid #ddd;
    padding-left: 40px;
    border-radius: 10px;
  }

  .filter-apply-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 !important;
    margin: 0 !important;
    height; auto;
    z-index: 10001;
    background: #fff;
    border-top: 1px solid #eee;
    
  }

  .apply-filters-sticky {
    display: block;
    width: 100% !important;
    padding: 18px 0;
    margin: 0 !important;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    background-color: #111;
    color: white;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer;
  }

  .clear-filters-container {
    text-align: right;
    margin-bottom: 12px;
  }

  .clear-filters-button {
    background: none;
    border: none;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
  }

  .filter-badge {
    background-color: #111;
    color: #fff;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    margin-left: 6px;
  }
}

#filter-panel:not(.open) {
  display: none;
}

.filter-inner .clear-filters-container {
  display: none !important;
}
.filter-clear-icon {
  color: #888 !important;          /* zachtere kleur (neutraal grijs) */
  font-size: 14px !important;      /* iets kleiner dan huidige 16px */
  font-weight: normal !important;  /* verwijder eventueel bold */
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  position: absolute;
  cursor: pointer;
  transition: color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .filter-panel.open {
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    margin-top: -50px; /* of -64px afhankelijk van jouw mobiele headerhoogte */
  }

  .filter-inner {
    flex-grow: 1;
    padding-bottom: 100px; /* ruimte onderin voor sticky knop */
  }
  #close-filter-panel {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding-right: 12px;
    line-height: 1;
    margin-left: auto;
  }
}
