/** Shopify CDN: Minification failed

Line 51:6 Expected identifier but found whitespace
Line 51:10 Unexpected "#282828"

**/
/*
  FOLIO — THEMA
  Kleurstelling: diepgroen #2D6A4F · goudgeel #C8960C · grijs #6B6B50
*/

/* ══════════════════════════════
   VARIABELEN
   ══════════════════════════════ */
:root {
  --groen:  #48950B;
  --groen2: #357008;  /* hover / donkerder */
  --goud:   #FF9500;  /* oranje accent */
  --grijs:  #666666;

  /* Structuur */
  --bg:     #FAF4EB;  /* crème achtergrond */
  --wit:    #FFFFFF;
  --ink:    #000000;  /* puur zwart */
  --mid:    #666666;
  --border: #E5E5E5;
  --licht:  #F0EAD6;  /* lichte crème */

  /* Categoriebadge kleuren */
  --cat-1:  #48950B;
  --cat-2:  #1A5A8A;
  --cat-3:  #7A4A1A;
  --cat-4:  #6B1A3A;

  --fi:     "Fira Sans", sans-serif;
  --fic:    "Fira Sans Condensed", sans-serif;
  --zs:     "Zilla Slab", serif;
  --max:    1280px;
  --pad:    2rem;

  /* Aliases voor oude templates */
  --k:    #000000;
  --o:    #48950B;
  --w:    #FFFFFF;
  --warm: #FAF4EB;
  --line: #E5E5E5;
  --bb:   "Fira Sans", sans-serif;
}

  /* Aliases voor oude templates */
  --k:    #282828;
  --o:    #2D6A4F;
  --w:    #FFFFFF;
  --warm: #F9F9F9;
  --line: #E5E5E5;
  --bb:   "Fira Sans", sans-serif;
}

/* ══════════════════════════════
   RESET & BASIS
   ══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);  /* wordt nu crème #FAF4EB */
  color: var(--ink);       /* wordt nu puur zwart #000000 */
  font-family: var(--zs);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════
   CONTAINER
   ══════════════════════════════ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ══════════════════════════════
   LOGO BAR
   ══════════════════════════════ */
.logo-bar {
  background: #FAF4EB;
  border-bottom: 1px solid #e0d9c8;
}

/* ══════════════════════════════
   NAV
   ══════════════════════════════ */
.site-nav {
  background: #357008;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 46px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: stretch;
  gap: 0;
}

.nav-links a {
  font-family: var(--fic);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 1.1rem;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  border-bottom-color: #FF9500;  /* oranje accent bij hover/active */
}
.nav-links:first-of-type li:first-child a {
  background: #000000;
  color: white !important;
  padding: 0 1.1rem;
  border-bottom: none !important;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links:first-of-type li:first-child a:hover {
  background: #FF9500 !important;
  border-bottom-color: transparent !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  padding: 0.3rem;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-search-btn:hover { color: white; }

.nav-cart-btn {
  font-family: var(--fic);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--groen);
  color: white;
  border: none;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.nav-cart-btn:hover { background: var(--groen2); }

.cart-n {
  background: white;
  color: var(--groen);
  border-radius: 50%;
  width: 17px; height: 17px;
  font-size: 0.58rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════
   HERO GRID
   ══════════════════════════════ */
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 3px;
  background: #222;
  border-bottom: 4px solid var(--groen);
  align-items: stretch;
}

.hero-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-card-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.hero-card:first-child .hero-card-bg { aspect-ratio: 3/2; }
.hero-card:not(:first-child) .hero-card-bg { aspect-ratio: 1/1; }
.hero-card:hover .hero-card-bg { transform: scale(1.04); }
.hero-grid .hero-card:nth-child(n+6) { display: none !important; }

.hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
}

.cat-badge {
  display: inline-block;
  font-family: var(--fic);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: var(--cat-1);
  padding: 0.18em 0.55em 0.2em;
  margin-bottom: 0.5rem;
}
.cat-badge.c2 { background: var(--cat-2); }
.cat-badge.c3 { background: var(--cat-3); }
.cat-badge.c4 { background: var(--cat-4); }

.hero-card-title {
  font-family: var(--fi);
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 0.35rem;
}
.hero-card:first-child .hero-card-title { font-size: 1.4rem; }
.hero-card:not(:first-child) .hero-card-title { font-size: 1rem; }

.hero-card-by {
  font-family: var(--fic);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.hero-card-by strong { color: rgba(255,255,255,0.85); }

/* ══════════════════════════════
   PAGE WRAP
   ══════════════════════════════ */
.page-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

/* ══════════════════════════════
   SECTIE HEADERS
   ══════════════════════════════ */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 0.5rem;
  margin-bottom: 1.4rem;
}

.sec-title {
  font-family: 'Lobster', cursive;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.sec-meer {
  font-family: var(--fic);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--groen);
  transition: opacity 0.2s;
}
.sec-meer:hover { opacity: 0.7; }

/* ══════════════════════════════
   KNOPPEN
   ══════════════════════════════ */
.btn {
  font-family: var(--fic);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.btn-groen {
  background: var(--groen);
  color: white;
  font-size: 0.72rem;
  padding: 0.65rem 1.3rem;
}
.btn-groen:hover { background: var(--groen2); }

.btn-donker {
  background: var(--ink);
  color: white;
  font-size: 0.62rem;
  padding: 0.5rem 0.9rem;
}
.btn-donker:hover { background: var(--groen); }

.btn-outline-w {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 0.9rem 2rem;
  font-family: var(--fic);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-w:hover { background: var(--groen); border-color: var(--groen); }

/* ══════════════════════════════
   PRODUCT KAARTEN (homepage grid)
   ══════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--border);
  margin-bottom: 1.5rem;
}
.cards-grid .card-sm:nth-child(n+7) { display: none !important; }

.card-sm {
  background: var(--wit);
  cursor: pointer;
  transition: background 0.15s;
}
.card-sm:hover { background: #F5FAF8; }

.cs-img { overflow: hidden; background: var(--licht); }

.cs-img-inner {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(0,0,0,0.15);
  transition: transform 0.4s;
}
.card-sm:hover .cs-img-inner { transform: scale(1.04); }

.bg-a { background: #B8C8C0; }
.bg-b { background: #C8B8B0; }
.bg-c { background: #B0C0C8; }
.bg-d { background: #C0C8B0; }
.bg-e { background: #C8C0B8; }
.bg-f { background: #B8B0C8; }

.cs-body { padding: 0.9rem 1rem 1rem; }

.cs-cat {
  font-family: var(--fic);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--groen);
  margin-bottom: 0.25rem;
}

.cs-title {
  font-family: var(--fi);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.cs-meta {
  font-size: 0.78rem;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 0.85rem;
}

.cs-footer { display: flex; justify-content: space-between; align-items: center; }

.cs-price {
  font-family: var(--fic);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.load-more { text-align: center; padding: 1.2rem 0 2rem; }

/* ══════════════════════════════
   GALERIJ KAARTEN (collection)
   ══════════════════════════════ */
.werk-card {
  background: var(--wit);
  cursor: pointer;
  transition: box-shadow 0.2s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.werk-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

.werk-card-img { overflow: hidden; aspect-ratio: 4/3; }
.werk-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s;
}
.werk-card:hover .werk-card-img img { transform: scale(1.04); }

.werk-card-info {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.werk-card-artist {
  font-family: var(--fic);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--groen);
}

.werk-card-title {
  font-family: var(--fi);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.werk-card-meta {
  font-family: var(--zs);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 0.4rem;
}

.werk-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 0.65rem;
  margin-top: 0.5rem;
}

.werk-card-price {
  font-family: var(--fic);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.badge {
  font-family: var(--fic);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2em 0.6em;
}
.badge-avail { color: var(--groen); background: rgba(45,106,79,0.08); }
.badge-sold { color: var(--mid); background: var(--licht); }

/* ══════════════════════════════
   ARTIESTEN
   ══════════════════════════════ */
.artist-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.artist-card {
  background: var(--wit);
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}
.artist-card:hover { background: #F5FAF8; }

.ac-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.5);
  overflow: hidden;
}
.av-1 { background: #8FA8A0; }
.av-2 { background: #A09880; }
.av-3 { background: #8898A8; }

.ac-name {
  font-family: var(--fi);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

/* ══════════════════════════════
   SIDEBAR & WIDGETS
   ══════════════════════════════ */
.widget {
  background: var(--wit);
  border: 1px solid var(--border);
  margin-bottom: 1.8rem;
}

.widget-head {
  background: var(--ink);
  color: white;
  font-family: 'Lobster', cursive;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.65rem 1rem;
}

.wl-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}
.wl-item:last-child { border-bottom: none; }
.wl-item:hover { background: #F5FAF8; }
.wl-item:nth-child(n+5) { display: none !important; }

.wl-thumb {
  width: 58px; height: 52px;
  flex-shrink: 0;
  overflow: hidden;
}
.th-1 { background: #B8C8C0; }
.th-2 { background: #C8B8A8; }
.th-3 { background: #A8B8C8; }
.th-4 { background: #C0B8C8; }

.wl-title {
  font-family: var(--fi);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.wl-meta {
  font-family: var(--fic);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--groen);
}

.wa-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #B0C0B8;
  overflow: hidden;
}

.wa-body { padding: 1rem; }

.wa-name {
  font-family: var(--fi);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.wa-meta {
  font-family: var(--fic);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--groen);
  margin-bottom: 0.7rem;
}

.wa-bio {
  font-family: var(--zs);
  font-size: 19px;
  line-height: 1.65;
  color: var(--mid);
  margin-bottom: 0.9rem;
}

.wa-link {
  font-family: var(--fic);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--groen);
  border-bottom: 1px solid var(--groen);
  padding-bottom: 1px;
}
.wa-link:hover { opacity: 0.7; }

/* ══════════════════════════════
   OVER FOLIO BALK
   ══════════════════════════════ */
.over-folio {
  background: var(--wit);
  border-top: 3px solid var(--groen);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.of-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.of-cat {
  font-family: var(--fic);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--groen);
  margin-bottom: 0.4rem;
}

.of-titel {
  font-family: var(--fi);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.of-tekst {
  font-family: var(--zs);
  font-size: 19px;
  line-height: 1.7;
  color: var(--mid);
}

/* ══════════════════════════════
   FEATURED CARD
   ══════════════════════════════ */
.card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--wit);
  border: 1px solid var(--border);
  margin-bottom: 3px;
  cursor: pointer;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.card-featured:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

.cf-img { overflow: hidden; background: #C8C0B0; }

.cf-body {
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cf-cat {
  font-family: var(--fic);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--groen);
  margin-bottom: 0.5rem;
}

.cf-title {
  font-family: var(--fi);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.cf-desc {
  font-family: var(--zs);
  font-size: 19px;
  line-height: 1.7;
  color: var(--mid);
  flex: 1;
  margin-bottom: 1.5rem;
}

.cf-footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cf-price {
  font-family: var(--fic);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

/* ══════════════════════════════
   LABEL (kleine tag boven titels)
   ══════════════════════════════ */
.label {
  font-family: var(--fic);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--groen);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.label:before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--groen);
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.45);
  padding: 2.5rem 2rem 1.8rem;
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-family: var(--zs);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
  max-width: 260px;
}

.footer-sub {
  font-family: var(--fic);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1rem;
}
.footer-sub a { color: var(--groen); }

.footer-col-title {
  font-family: var(--fic);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-family: var(--zs);
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--fic);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.18);
}
.footer-bottom a { color: var(--groen); }

/* ══════════════════════════════
   MOBIEL — max 768px
   ══════════════════════════════ */
@media (max-width: 768px) {

  /* Logo kleiner */
  .logo-bar svg { width: 180px; height: 58px; }

  /* Nav: scrollbaar horizontaal */
  .nav-inner {
    padding: 0 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-inner::-webkit-scrollbar { display: none; }
  .nav-links a { padding: 0 0.7rem; font-size: 14px; }
  .nav-cart-btn span.cart-n { display: none; }

  /* Hero: 2 kaarten naast elkaar, 3 rijen */
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-card:first-child .hero-card-bg,
  .hero-card:not(:first-child) .hero-card-bg {
    aspect-ratio: 1/1;
  }

  /* Pay-off balk: 1 kolom */
  .page-wrap,
  [style*="grid-template-columns:1fr 1fr;gap:4rem"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Stats grid in pay-off: 2 kolommen behouden */

  /* Spotlight: 1 kolom */
  #spotlight {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  #spotlight-img { min-height: 280px !important; }

  /* Artiest rij: 1 kolom */
  .artist-row { grid-template-columns: 1fr !important; }

  /* Over folio balk: 1 kolom */
  .of-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Footer: 1 kolom */
  .footer-top { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }

  /* Knoppen niet te groot */
  .btn-groen, .btn-donker { font-size: 0.7rem; }
}

.collection-description p,
.collection-description .p1 {
  margin-bottom: 1.2rem;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  font-family: var(--zs);
}
.collection-description p:last-child,
.collection-description .p1:last-child { margin-bottom: 0; }

/* Verwijder Apple-specifieke rommel */
.collection-description .Apple-converted-space { display: none; }
.collection-description .s1 { display: none; }

/* ══════════════════════════════
   KLEIN MOBIEL — max 480px
   ══════════════════════════════ */
@media (max-width: 480px) {

  /* Hero: 1 kolom */
  .hero-grid { grid-template-columns: 1fr !important; }
  .hero-grid .hero-card:nth-child(n+4) { display: none !important; }

  /* Galerij grid: 1 kolom */
  .cards-grid { grid-template-columns: 1fr !important; }

  /* Container padding smaller */
  .container { padding: 0 1rem; }
  .of-inner { padding: 0 1rem; }
}