/** Shopify CDN: Minification failed

Line 475:0 Unexpected "}"

**/
/* ============================
   TABLET 768–1024px (iPad e.d.)
   ============================ */
@media (min-width:768px) and (max-width:1024px) {

  /* Container */
  .smellish-product-grid.container{
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* Titel + toolbar */
  .prod-overzicht .prod-title{
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    margin: 14px 0 6px;
    color:#1a1a1a;
  }

  .prod-overzicht .prod-toolbar-v2{
    display: grid;
    grid-template-columns: 1fr auto 1fr;  /* zoek | gender | filters */
    align-items: center;
    column-gap: 16px;
    padding: 0 16px;
    margin: 10px 0 0;
  }
  .prod-overzicht .toolbar-left{  justify-self: start; }
  .prod-overzicht .toolbar-center{justify-self: center;}
  .prod-overzicht .toolbar-right{ justify-self: end;  }

  .prod-overzicht .prod-searchbox{ max-width: 320px; width: 100%; }
  .prod-overzicht .prod-filter-toggle{ padding: 10px 16px; border-radius: 10px; }

  .prod-overzicht .prod-gender-labels{ gap: 12px; }
  .prod-overzicht .prod-gender-labels .gender-label{
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
  }

  .active-filters-wrapper,
  .active-filters-above-grid{
    justify-content: center;
    padding: 8px 16px;
  }

  /* -------- GRID (BELANGRIJK) --------
     Gebruik Shopify .grid i.p.v. .product-grid
  ------------------------------------- */
  .smellish-product-grid .grid{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 24px;
    padding: 0 24px;
  }
  .smellish-product-grid .grid .grid__item{ min-width: 0 !important; }

  /* Onder ~880px: val terug naar 2 kolommen */
  @media (max-width: 880px){
    .smellish-product-grid .grid{
      grid-template-columns: repeat(2, minmax(0,1fr));
    }
  }

  /* Productkaart – laat de kolom de breedte bepalen */
  .product-card{
    width: 100%;
    height: 360px;                 /* rustiger dan 160px */
    background: #F8F6F2;
    border-radius: 12px;
    padding: 22px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: box-shadow .25s;
    box-sizing: border-box;
    margin: 0;                     /* geen extra centrering nodig */
  }
  .product-card:hover{ box-shadow: 0 4px 14px rgba(0,0,0,.08); }

  .product-image{
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
  }
  .product-image img{
    max-height: 190px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .product-title{
    margin: 2px 0 0;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    color:#000;
  }
  .product-vendor{
    margin: 0 0 2px;
    font: 400 12.5px/18px 'Inter', sans-serif;
    color:#666;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .jdgm-widget.jdgm-preview-badge{ display:flex; justify-content:center; margin-top:2px; }
  .jdgm-prev-badge__stars{ font-size: 12px !important; gap: 1.5px; }
  .jdgm-star{ font-size: 12px !important; color:#d4af37 !important; }

  /* Plusknop */
  .product-card-add{ position:absolute; top:10px; right:10px; z-index:10; }
  .add-to-calendar{
    width: 32px; height: 32px; border-radius: 50%;
    background:#d4af37; color:#fff; border:0; font-size:18px; font-weight:600;
    box-shadow:0 2px 6px rgba(0,0,0,.15);
    transition: transform .2s ease, background .2s ease;
  }
  .add-to-calendar:hover{ background:#1a1a1a; transform:scale(1.06); }
}
/* === Actieve filters (chips/tags) === */
.active-filters-wrapper,
.active-filters-above-grid,
.active-filters,
.active-filters-inline-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.active-filters-wrapper,
.active-filters-above-grid {
  justify-content: center;
  margin: 10px 0;
}
.active-filters-inline-row {
  justify-content: flex-start;
  padding: 12px 16px;
  max-width: 1120px;
  margin: 0 auto;
}
.active-filter-tags {
  margin-top: 6px;
}
#active-filters-above .filter-tag,
.filter-tag,
.prod-overzicht .active-filters > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  background: #f5f5f5;
  color: #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  gap: 8px;
  border: none;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
  line-height: 1;
}
.filter-tag:hover,
#active-filters-above .filter-tag:hover {
  background: #e0e0e0;
  color: #cc0066;
}
.filter-tag .tag-remove,
#active-filters-above .filter-tag .tag-remove {
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  margin-left: 6px;
  transition: color 0.2s;
}
.filter-tag:hover .tag-remove,
#active-filters-above .filter-tag:hover .tag-remove {
  color: #cc0066;
}
.filter-tag:focus {
   outline: 2px solid #cc0066;
   outline-offset: 2px;
}
/* Wis alle filters knop */
.clear-filters,
.clear-filters-button,
.clear-filters-toolbar {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 12px;
  margin: 12px 0 18px 0;
  transition: background 0.2s, color 0.2s;
}
.clear-filters:hover,
.clear-filters-button:hover,
.clear-filters-toolbar:hover {
  background: #f0f0f0;
  color: #cc0066;
}
.clear-filters .filter-x,
.clear-filters-button .filter-x,
.clear-filters-toolbar .filter-x {
  font-size: 16px;
  font-weight: bold;
  margin-right: 6px;
  color: inherit;
  line-height: 1;
}

/* === Filter Panel === */
.filter-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 660px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 6px rgba(0,0,0,0.1);
  transition: right 0.3s;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  padding-top: 74px;
  overflow: hidden;
  box-sizing: border-box;
}
.filter-panel.open {
  right: 0;
}
.filter-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 70px;
  font-size: 32px;
  align-items: center;
}
.filter-title {
  font-size: 22px;
  font-weight: 700;
}
#close-filter-panel {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 0 70px 0 0;
  line-height: 1;
}
.filter-content {
  flex: 1;
  overflow-y: auto;
}
.filter-inner {
  padding: 0 20px 100px 20px;
  max-width: 560px;
  margin: 0 auto;
  align-items: center;
}
.filter-content label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.6;
  margin: 16px 0 14px 26px;
  cursor: pointer;
}
.filter-content input[type="checkbox"] {
  transform: scale(1.15);
  accent-color: #1a1a1a;
  cursor: pointer;
}
#apply-filters {
  position: sticky;
  bottom: 0;
  width: calc(100% - 48px);
  margin: 24px auto 16px;
  padding: 14px;
  font-weight: bold;
  font-size: 15px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}
#apply-filters:hover {
  background: #000;
}
.filter-toggle {
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.filter-toggle:hover {
  background: #f8f8f8;
}
.hidden {
  display: none;
}

/* <details> en <summary> styling */
details summary {
  padding: 48px 16px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  transition: background 0.2s;
  cursor: pointer;
}
details summary:hover {
  background: #f9f9f9;
}
details[open] summary {
  border-bottom: 1px solid #eee;
}
.filter-inner details:nth-of-type(4) {
  border-bottom: 1px solid #eee;
}
details[open] summary::after {
  content: "▲";
  font-size: 12px;
  margin-left: auto;
}
details summary::after {
  content: "▼";
  font-size: 12px;
  margin-left: auto;
}
details {
  margin-bottom: 0;
  padding: 0;
  border: none;
}

/* Filter zoekbalk boven filteropties */
.filter-search-wrapper {
  position: relative;
  width: 100%;
  height: 48px;
}
.filter-search {
  width: 100%;
  padding: 10px 10px 10px 38px;
  font-size: 15px;
  background: #f9f9f9;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 12px;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="11" cy="11" r="8"/%3E%3Cline x1="21" y1="21" x2="16.65" y2="16.65"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 18px;
}
.filter-clear-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
}
.filter-labels-wrapper {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 5px;
}

/* Filter badge (aantal geselecteerd) */
.filter-badge {
  background: #dd3d56;
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 600;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* Overlay */
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.3);
  z-index: 90;
  display: none;
}
.filter-panel.open + .filter-overlay {
  display: block;
}

/* Extra details */
#active-filters-above .filter-tag {
  cursor: pointer;
  transition: background 0.2s;
}
#active-filters-above .filter-tag .tag-remove {
  pointer-events: none;
}
.active-filters-inline {
  padding: 10px 0;
  gap: 6px;
  display: flex;
  flex-wrap: wrap;
}
#filter-count.prod-overzicht-result-count {
  display: none !important;
}
.filter-apply-footer {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 16px 0;
  text-align: center;
  z-index: 20;
  border-top: 1px solid #eee;
}
.apply-filters-sticky {
  display: inline-block;
  min-width: 240px;
  font-size: 16px;
}
}


