*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F8F5F0;
  --warm-white: #FDFBF8;
  --charcoal: #1C1A18;
  --muted: #8A857E;
  --light-muted: #C4BFB8;
  --border: #E2DDD7;
  --border-light: #EDE9E4;
  --accent-gold: #B8965A;
  --linen-naturel: #E8E2D9;
  --linen-wit: #F5F3EF;
  --embroidery-groen: #2C5F52;
  --embroidery-bordeaux: #7C2D3A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--warm-white);
  color: var(--charcoal);
}

/* ── ANNOUNCEMENT ── */
.announcement {
  background: var(--charcoal);
  color: var(--light-muted);
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 10px 20px;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 0.5px solid var(--border);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-left { display: flex; align-items: center; gap: 32px; }

.nav-back {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--charcoal); }
.nav-back::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 0.5px;
  background: currentColor;
}

.nav-divider { width: 0.5px; height: 24px; background: var(--border); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-logo span {
  font-style: italic;
  font-size: 15px;
  color: var(--accent-gold);
  margin-left: 6px;
  letter-spacing: 0.14em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-right a { color: inherit; text-decoration: none; transition: color 0.2s; }
.nav-right a:hover { color: var(--charcoal); }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0.5px solid var(--border);
  padding: 7px 14px;
  border-radius: 1px;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cart-btn:hover { background: var(--charcoal); color: var(--warm-white); }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 16px 60px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-muted);
  border-bottom: 0.5px solid var(--border-light);
  display: flex;
  gap: 10px;
  align-items: center;
}
.breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--charcoal); }
.breadcrumb-sep { font-size: 8px; }

/* ── PRODUCT LAYOUT ── */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
}

/* ── GALLERY ── */
.product-gallery {
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gallery-main {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

/* =============================================
   HOOFDFOTO — vervang src door jouw foto URL
   Upload via WordPress → Media → Nieuwe media
   Aanbevolen: 1200x1600px (3:4 verhouding)
   ============================================= */
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-main:hover img { transform: scale(1.04); }

.gallery-main-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--linen-naturel);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  flex-direction: column;
  gap: 12px;
}

.gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--charcoal);
  color: white;
  z-index: 2;
}

.gallery-thumbs {
  display: flex;
  gap: 0;
  height: 100px;
  border-top: 0.5px solid var(--border);
}

/* =============================================
   THUMBNAILS — vervang src door jouw foto URL's
   Aanbevolen: 300x300px (vierkant)
   ============================================= */
.gallery-thumb {
  flex: 1;
  border-right: 0.5px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.gallery-thumb:last-child { border-right: none; }
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; }
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-thumb:hover img { transform: scale(1.08); }
.gallery-thumb.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--charcoal);
}

/* ── PRODUCT INFO ── */
.product-info {
  padding: 52px 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 0.5px solid var(--border);
  overflow-y: auto;
}

.product-eyebrow {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 0.5px;
  background: var(--accent-gold);
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.product-title em { font-style: italic; color: var(--accent-gold); }

.product-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 32px;
  letter-spacing: 0.06em;
}

.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid var(--border-light);
}

.product-price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.product-price-note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ── OPTIES ── */
.option-group {
  margin-bottom: 28px;
}

.option-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.option-selected {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--charcoal);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
}

/* Linnen kleur swatches */
.swatch-group {
  display: flex;
  gap: 10px;
}

.swatch {
  width: 44px;
  height: 44px;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  border: 0.5px solid var(--border);
  transition: all 0.2s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
  overflow: hidden;
}
.swatch:hover { border-color: var(--charcoal); }
.swatch.selected { border: 1.5px solid var(--charcoal); }
.swatch.selected::after {
  content: '✓';
  position: absolute;
  top: 3px;
  right: 4px;
  font-size: 9px;
  color: var(--charcoal);
  font-weight: 400;
}
.swatch-label-small {
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(255,255,255,0.8);
  padding: 2px 0;
}

/* Borduurkleur bolletjes */
.embroidery-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.emb-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  position: relative;
}
.emb-swatch:hover { transform: scale(1.1); }
.emb-swatch.selected {
  border-color: var(--charcoal);
  box-shadow: 0 0 0 3px var(--warm-white), 0 0 0 4.5px var(--charcoal);
}

.emb-swatch-label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* Aantal */
.qty-group {
  display: flex;
  align-items: center;
  gap: 0;
  border: 0.5px solid var(--border);
  width: fit-content;
  margin-bottom: 28px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--muted);
  transition: all 0.2s;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
}
.qty-btn:hover { background: var(--cream); color: var(--charcoal); }

.qty-display {
  width: 48px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-left: 0.5px solid var(--border);
  border-right: 0.5px solid var(--border);
  font-weight: 300;
  letter-spacing: 0.1em;
}

/* CTA knoppen */
.product-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.btn-add-cart {
  padding: 16px 32px;
  background: var(--charcoal);
  color: var(--warm-white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  font-weight: 300;
}
.btn-add-cart:hover { background: var(--embroidery-groen); }

.btn-contact {
  padding: 14px 32px;
  background: transparent;
  color: var(--charcoal);
  border: 0.5px solid var(--border);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 300;
  text-decoration: none;
  text-align: center;
}
.btn-contact:hover { border-color: var(--charcoal); }

/* ── GENT NOTICE ── */
.gent-notice {
  background: var(--linen-naturel);
  border: 0.5px solid var(--border);
  padding: 16px 20px;
  margin-bottom: 32px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.gent-notice-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--accent-gold);
  line-height: 1;
  flex-shrink: 0;
}

.gent-notice-text {
  font-size: 11px;
  line-height: 1.75;
  color: var(--muted);
}

.gent-notice-text strong {
  color: var(--charcoal);
  font-weight: 400;
}

/* ── PRODUCT DETAILS ACCORDION ── */
.product-details {
  border-top: 0.5px solid var(--border-light);
}

.detail-row {
  border-bottom: 0.5px solid var(--border-light);
  overflow: hidden;
}

.detail-header {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
  user-select: none;
}
.detail-header:hover { color: var(--accent-gold); }

.detail-arrow {
  font-size: 14px;
  color: var(--muted);
  transition: transform 0.3s;
}
.detail-row.open .detail-arrow { transform: rotate(45deg); }

.detail-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.detail-row.open .detail-body { max-height: 400px; }

.detail-content {
  padding: 0 0 20px;
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}

.detail-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-content ul li::before {
  content: '—';
  color: var(--accent-gold);
  margin-right: 10px;
}

/* ── GERELATEERDE PRODUCTEN ── */
.related-section {
  padding: 72px 60px;
  border-top: 0.5px solid var(--border);
}

.related-header {
  text-align: center;
  margin-bottom: 48px;
}

.related-eyebrow {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 300;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 0.5px solid var(--border);
  border-top: 0.5px solid var(--border);
}

.related-card {
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.related-card-img {
  aspect-ratio: 3/4;
  background: var(--cream);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   GERELATEERDE PRODUCT FOTO'S
   Vervang de placeholder src door jouw foto URL
   ============================================= */
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.related-card:hover .related-card-img img { transform: scale(1.04); }

.related-card-info { padding: 16px 18px 20px; }

.related-card-cat {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.related-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 8px;
}

.related-card-price {
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.06em;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 300;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  border-left: 3px solid var(--embroidery-groen);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── FOOTER ── */
.pp-footer {
  background: var(--charcoal);
  padding: 48px 60px 28px;
  color: var(--light-muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 40px;
}

.footer-links-row {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-links-row a {
  font-size: 11px;
  color: var(--light-muted);
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: color 0.2s;
}
.footer-links-row a:hover { color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .product-page { grid-template-columns: 1fr; }
  .product-gallery { position: static; height: auto; }
  .gallery-main { height: 60vw; min-height: 320px; }
  .product-info { padding: 40px 32px; border-left: none; border-top: 0.5px solid var(--border); }
  nav { padding: 0 24px; }
  .breadcrumb { padding: 14px 24px; }
  .related-section { padding: 52px 32px; }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; height: auto; flex-wrap: wrap; }
  .nav-logo { position: static; transform: none; font-size: 16px; padding: 14px 0; flex: 1; text-align: center; }
  .nav-left { order: 2; width: 100%; padding: 8px 0; border-top: 0.5px solid var(--border); font-size: 9px; }
  .nav-right { order: 1; }
  .nav-right a:not(:last-child) { display: none; }

  .announcement { font-size: 9px; letter-spacing: 0.14em; line-height: 1.7; padding: 8px 16px; }
  .breadcrumb { padding: 12px 16px; }

  .gallery-main { height: 80vw; }
  .gallery-thumbs { height: 80px; }

  .product-info { padding: 28px 16px 40px; }
  .product-title { font-size: 30px; }
  .product-price-main { font-size: 26px; }

  .related-section { padding: 40px 16px; }
  .related-grid { grid-template-columns: 1fr 1fr; }

  .pp-footer { padding: 40px 16px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── VERHAAL SECTIE ── */
.story-section {
  padding: 80px 60px;
  background: var(--cream);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.story-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}

.story-header-text {}

.story-eyebrow {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.story-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 0.5px;
  background: var(--accent-gold);
}

.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 18px;
}
.story-title em { font-style: italic; color: var(--embroidery-groen); }

.story-desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}

/* Kraft kaartje simulatie */
.kraft-card-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.kraft-card {
  width: 180px;
  background: #C49A6C;
  padding: 22px 18px 20px;
  position: relative;
  box-shadow: 2px 3px 12px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}
.kraft-card:hover { transform: rotate(-1deg) scale(1.03); }
.kraft-card.back:hover { transform: rotate(1deg) scale(1.03); }

.kraft-card-front-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #1C1A18;
  margin-bottom: 6px;
  line-height: 1.2;
}

.kraft-card-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: #1C1A18;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.kraft-card-divider {
  height: 0.5px;
  background: rgba(28,26,24,0.3);
  margin: 8px 0;
}

.kraft-card-collection {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(28,26,24,0.6);
  text-transform: uppercase;
}

.kraft-card-back-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.65;
  color: #1C1A18;
  margin-bottom: 14px;
}

.kraft-card-number {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(28,26,24,0.5);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.kraft-skyline {
  font-size: 16px;
  letter-spacing: 0.08em;
}

/* Collectie kaarten grid */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 0.5px solid var(--border);
  border-top: 0.5px solid var(--border);
}

.collection-item {
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 32px 28px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.collection-item:hover { background: white; }

.collection-item-number {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-muted);
  margin-bottom: 12px;
}

.collection-item-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
  font-style: italic;
}

.collection-item-motif {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--embroidery-groen);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.collection-item-motif::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 0.5px;
  background: var(--embroidery-groen);
}

.collection-item-desc {
  font-size: 11px;
  line-height: 1.75;
  color: var(--muted);
}

.collection-item-img {
  margin-bottom: 20px;
  aspect-ratio: 1;
  background: var(--linen-naturel);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* =============================================
   COLLECTIE FOTO'S — vervang src per item
   Aanbevolen: 400x400px (vierkant, close-up borduurwerk)
   ============================================= */
.collection-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-item:hover .collection-item-img img { transform: scale(1.06); }

.collection-item-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 0.5px solid var(--accent-gold);
  padding: 3px 8px;
}

/* ── RESPONSIVE story ── */
@media (max-width: 1024px) {
  .story-section { padding: 60px 32px; }
  .story-header { grid-template-columns: 1fr; gap: 40px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .story-section { padding: 48px 16px; }
  .story-title { font-size: 28px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .collection-item { padding: 20px 16px; }
  .kraft-card-wrap { flex-direction: column; }
}


/* ── MOTIEFKIEZER ── */
.motief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.motief-card {
  border: 0.5px solid var(--border);
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  font-family: 'Jost', sans-serif;
  text-align: left;
  position: relative;
}
.motief-card:hover { border-color: var(--charcoal); background: var(--cream); }
.motief-card.selected {
  border-color: var(--embroidery-groen);
  background: #EAF3E8;
}
.motief-card.selected::after {
  content: '✓';
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 9px;
  color: var(--embroidery-groen);
}

.motief-icon {
  width: 36px;
  height: 36px;
  background: var(--linen-naturel);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.motief-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.motief-icon-placeholder {
  font-size: 18px;
  line-height: 1;
}

.motief-info {}
.motief-name {
  font-size: 12px;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.motief-sub {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.motief-custom {
  border: 0.5px dashed var(--border);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  font-family: 'Jost', sans-serif;
  width: 100%;
  text-align: left;
}
.motief-custom:hover { border-color: var(--accent-gold); background: var(--cream); }
.motief-custom.selected { border-color: var(--accent-gold); background: #FBF6EE; }

.motief-warning {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 8px;
  display: none;
  padding: 8px 12px;
  background: #FBF6EE;
  border-left: 2px solid var(--accent-gold);
}
.motief-warning.visible { display: block; }

@media (max-width: 480px) {
  .motief-grid { grid-template-columns: 1fr; }
}

