/*
  AFBEELDINGEN TOEVOEGEN:
  Zet de kaartfoto's in de map img/ met deze exacte namen:
  kaart-1-voor.png  = voorkant kaart 1
  kaart-1-achter.png = achterkant kaart 1
  (enzovoort tot kaart-6, of verder)
  Het logo heet logo.png
  De foto van Rosalie heet rosalie.jpg

  Meer kaarten toevoegen? Zie js/kaarten.js voor instructies.
*/

/* ============================================================
   CSS-VARIABELEN
   ============================================================ */
:root {
  --coral:      #E77E7A;
  --forest:     #476048;
  --blush:      #E6A69D;
  --periwinkle: #8398C9;
  --cream:      #E9E1B5;
  --white:      #FDFAF6;
  --dark:       #2C2C2C;
  --border:     #e0d5c5;

  --nav-height: 96px;
  --radius:     4px;
  --transition: 0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--white);
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ============================================================
   NAVIGATIE
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}


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

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.nav-links a:hover { color: var(--coral); border-bottom-color: var(--blush); }
.nav-links a.active { border-bottom-color: var(--coral); color: var(--coral); }

.nav-insta {
  color: var(--dark);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.nav-insta:hover { color: var(--coral); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   KNOPPEN
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform var(--transition), background-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.btn-primary {
  background-color: var(--coral);
  color: var(--white);
}
.btn-primary:hover { background-color: #d4605c; }

.btn-secondary {
  background-color: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-secondary:hover {
  background-color: var(--forest);
  color: var(--white);
}

/* ============================================================
   HERO-ANIMATIES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up-1 { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.fade-up-2 { animation: fadeUp 0.7s ease both; animation-delay: 0.3s; }
.fade-up-3 { animation: fadeUp 0.7s ease both; animation-delay: 0.5s; }

/* ============================================================
   PLACEHOLDER-AFBEELDINGEN
   ============================================================ */
.img-placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: rgba(44,44,44,0.4);
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  user-select: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background-color: var(--blush);
  min-height: calc(88vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 5vw;
}

.hero__inner { max-width: 700px; }

.hero-kaarten {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 2rem;
  position: relative;
  height: 200px;
}

.hero-kaart {
  width: 140px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  object-fit: cover;
  position: absolute;
  bottom: 0;
}

.hero-kaart--1 {
  transform: rotate(-8deg) translateX(-90px);
  z-index: 1;
}

.hero-kaart--2 {
  transform: rotate(0deg);
  z-index: 3;
}

.hero-kaart--3 {
  transform: rotate(8deg) translateX(90px);
  z-index: 2;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.hero__subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--dark);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}


/* ============================================================
   OVER ROSALIE
   ============================================================ */
.about {
  padding: 6rem 5vw;
  background-color: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about__photo .img-placeholder {
  aspect-ratio: 3 / 4;
  background-color: var(--cream);
}

.rosalie-foto {
  width: 100%;
  max-width: 420px;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}

.about__text .quote-line {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.45;
  color: var(--coral);
  margin-bottom: 1.2rem;
}

.about__text p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.975rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.about__text p:last-child { margin-bottom: 0; }

/* ============================================================
   KAART-PREVIEW (index.html)
   ============================================================ */
.preview-section {
  padding: 5rem 5vw;
  background-color: var(--white);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

.preview-more {
  text-align: center;
}

/* ============================================================
   KAARTEN GRID (kaarten.html)
   ============================================================ */
.cards-section {
  padding: 0 5vw 5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Gedeelde kaart-stijl */
.card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.card a {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.card-img-wrap {
  overflow: hidden;
  background-color: var(--cream);
}

.card-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-img-wrap .img-placeholder {
  aspect-ratio: 4 / 5;
}

.card-info {
  padding: 1rem 1.2rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--coral);
  margin-top: auto;
}

/* ============================================================
   KAART-DETAIL (kaart-detail.html)
   ============================================================ */
.detail-back {
  padding: 1.5rem 5vw 0;
  max-width: 1100px;
  margin: 0 auto;
}

.detail-back a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--forest);
  text-decoration: underline;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.detail-back a:hover { color: var(--coral); }

.detail-section {
  padding: 2.5rem 5vw 6rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}


.detail-main-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
  margin-bottom: 0.75rem;
  transition: opacity var(--transition);
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.detail-main-img:hover { opacity: 0.93; }

.detail-main-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: rgba(44,44,44,0.4);
  margin-bottom: 0.75rem;
}

.detail-achter-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.4rem;
}

.detail-thumb-placeholder {
  width: 160px;
  aspect-ratio: 4 / 5;
  background-color: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: rgba(44,44,44,0.4);
  border: 1.5px solid var(--border);
}


.detail-pill {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.pill-verjaardag   { background-color: rgba(231,126,122,0.15); color: var(--coral); }
.pill-bemoediging  { background-color: rgba(131,152,201,0.18); color: var(--periwinkle); }

.detail-naam {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 1rem;
  color: var(--dark);
}

.detail-beschrijving {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.detail-prijs-blok {
  background-color: var(--cream);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.25rem;
}

.detail-prijs {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--coral);
}

.detail-verzending {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--forest);
  margin-top: 0.2rem;
}

.detail-meerdere {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.detail-fout {
  text-align: center;
  padding: 5rem 5vw;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.detail-fout h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: var(--dark);
}

.detail-fout p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.mandje-leeg-link {
  color: var(--forest);
  text-decoration: underline;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
}

/* ============================================================
   PAGINA-HEADER
   ============================================================ */
.page-header {
  background: linear-gradient(180deg, var(--blush) 0%, var(--white) 100%);
  padding: 4.5rem 5vw 3rem;
  text-align: center;
}

.page-header__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-header__subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--dark);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   FILTERBALK
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 5vw;
}

.filter-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1.15rem;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--dark);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}
.filter-btn:hover { border-color: var(--coral); color: var(--coral); }
.filter-btn.active { background-color: var(--coral); color: var(--white); border-color: var(--coral); }

/* ============================================================
   PERSONALISATIE / CUSTOM SECTIE
   ============================================================ */
.custom-section {
  background-color: var(--cream);
  padding: 5rem 5vw;
  text-align: center;
}

.custom-section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.custom-section__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 2rem;
  color: var(--dark);
}

/* ============================================================
   PERSONALISATIE BANNER (index.html)
   ============================================================ */
.pers-banner {
  background-color: var(--cream);
  padding: 5rem 5vw;
  text-align: center;
}
.pers-banner__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}
.pers-banner__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ============================================================
   CTA-BANNER
   ============================================================ */
.cta-banner {
  background-color: var(--forest);
  padding: 4rem 5vw;
  text-align: center;
  color: var(--white);
}

.cta-banner__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.btn-white {
  background-color: var(--white);
  color: var(--forest);
  border: none;
}
.btn-white:hover {
  background-color: var(--cream);
  color: var(--forest);
}

/* ============================================================
   CONTACTPAGINA
   ============================================================ */
.contact-section {
  padding: 4rem 5vw 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-info__label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.3rem;
}

.contact-info__handle {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--coral);
  display: inline-block;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.contact-info__handle:hover { color: #d4605c; }

.contact-info__note {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.contact-info__tikkie {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--forest);
  background-color: rgba(71,96,72,0.1);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.pers-card {
  background-color: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
}

.pers-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--dark);
}

.pers-card__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.pers-card__prijs {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 1.25rem;
}

/* ============================================================
   POPUP (DM bestelling)
   ============================================================ */
.dm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,44,44,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.dm-popup {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  max-width: 420px;
  width: 90%;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.dm-titel {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.dm-uitleg {
  font-size: 0.88rem;
  font-weight: 300;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.dm-bericht {
  background: var(--cream);
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
  user-select: all;
  cursor: text;
}

.dm-kopieer {
  width: 100%;
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  transition: background var(--transition);
}
.dm-kopieer:hover { background: #d4605c; }

.dm-naar-insta {
  display: block;
  text-align: center;
  color: var(--forest);
  font-size: 0.88rem;
  text-decoration: underline;
  transition: color var(--transition);
}
.dm-naar-insta:hover { color: var(--coral); }

.dm-sluit {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
  transition: color var(--transition);
}
.dm-sluit:hover { color: var(--dark); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: zoom-out;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-sluit {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.lightbox-sluit:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--dark);
  color: rgba(253,250,246,0.7);
  padding: 2.5rem 5vw;
  text-align: center;
}

.site-footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.site-footer__tagline {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
}

.site-footer__ig {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--blush);
  transition: color var(--transition);
}
.site-footer__ig:hover { color: var(--coral); }

.footer-logo {
  height: 72px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
  opacity: 1;
}

.hero-logo {
  height: 140px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.5rem;
}

.hero-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0 auto 1.5rem;
}

/* ============================================================
   RESPONSIVE — TABLET (900px)
   ============================================================ */
@media (max-width: 900px) {
  .about__grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__photo .img-placeholder { aspect-ratio: 16 / 9; }
  .rosalie-foto   { max-width: 100%; height: 360px; }

  .cards-grid     { grid-template-columns: repeat(2, 1fr); }
  .preview-grid   { grid-template-columns: repeat(2, 1fr); }

  .detail-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   RESPONSIVE — MOBIEL (600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --nav-height: 72px; }
  .site-nav { height: 72px; padding: 0 4vw; }
  .nav-logo { height: 36px; max-width: 130px; }

  .nav-right { gap: 1rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.75rem 4vw;
    border-bottom: none;
    width: 100%;
    font-size: 0.875rem;
  }
  .nav-links a.active {
    color: var(--coral);
    background-color: rgba(231,126,122,0.06);
    border-bottom: none;
  }

  .nav-hamburger { display: flex; }

  .cards-grid   { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }

  .hero__buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 400px) {
  .cards-grid   { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO-LINK (vervangt knoppen in hero)
   ============================================================ */
.hero-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.hero-link:hover { opacity: 0.5; }

/* ============================================================
   BADGE MINI-KAARTJESSET
   ============================================================ */
.badge-mini {
  background: var(--forest);
  color: white;
  font-size: 0.7rem;
  font-family: 'Poppins', sans-serif;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

/* ============================================================
   CATEGORIE-PILLS UITBREIDING
   ============================================================ */
.pill-liefde  { background-color: rgba(230,166,157,0.2); color: var(--blush); }
.pill-zomaar  { background-color: rgba(233,225,181,0.4); color: #8a7a3a; }
.pill-moeder  { background-color: rgba(231,126,122,0.12); color: #c45c7a; }

/* ============================================================
   HERO-KAARTEN (overlapping cards in hero)
   ============================================================ */
@media (max-width: 600px) {
  .hero-kaart { width: 100px; }
  .hero-kaart--1 { transform: rotate(-8deg) translateX(-65px); }
  .hero-kaart--3 { transform: rotate(8deg) translateX(65px); }
}

/* ============================================================
   WHATSAPP BESTELLING-KNOP
   ============================================================ */
.dm-naar-whatsapp {
  display: block;
  text-align: center;
  padding: 0.6rem 1.2rem;
  background: #25D366;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.dm-naar-whatsapp:hover { background: #1ebe57; }

/* ============================================================
   PRODUCTPAGINA REDESIGN (kaart-detail.html)
   ============================================================ */
.detail-breadcrumb {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: #999;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}
.detail-breadcrumb a {
  color: #999;
  text-decoration: none;
  transition: color var(--transition);
}
.detail-breadcrumb a:hover { color: var(--coral); }

.detail-thumbnail-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.detail-thumb-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.detail-thumb-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #999;
  text-align: center;
}

.detail-thumb {
  width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.detail-thumb.actief,
.detail-thumb:hover {
  border-color: var(--coral);
}

.detail-prijs-groot {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.detail-meta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: #888;
  margin-bottom: 0.25rem;
}

.detail-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}

.detail-miniset-info {
  background-color: #f5f5f5;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #555;
  line-height: 1.65;
}

.detail-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-cart {
  flex: 1;
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0;
  white-space: nowrap;
}
.btn-cart:hover { background: #444; }

.btn-snel {
  background: none;
  border: none;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.9rem 0;
  white-space: nowrap;
}
.btn-snel:hover { opacity: 0.5; }

/* ============================================================
   WINKELMANDJE
   ============================================================ */
.nav-mandje {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: var(--dark);
  padding: 0;
  display: flex;
  align-items: center;
}
.nav-mandje:hover { color: var(--coral); }

.mandje-counter {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--coral);
  color: white;
  font-size: 0.65rem;
  font-family: 'Poppins', sans-serif;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

.mandje-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  z-index: 999;
  white-space: nowrap;
}
.mandje-toast button {
  background: none;
  border: none;
  color: var(--blush);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  margin-left: 0.75rem;
  text-decoration: underline;
}

.mandje-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,44,44,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.mandje-popup {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  max-width: 480px;
  width: 90%;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
}

.mandje-lijst {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  border-top: 1px solid var(--border);
}

.mandje-lijst li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

.mandje-item-naam {
  color: var(--dark);
  font-size: 0.875rem;
  line-height: 1.3;
}

.mandje-item-ctrl {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mandje-aantal-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.mandje-min,
.mandje-plus {
  background: none;
  border: none;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  font-family: 'Poppins', sans-serif;
}
.mandje-min:hover,
.mandje-plus:hover {
  background: var(--coral);
  color: #fff;
}

.mandje-aantal {
  min-width: 22px;
  text-align: center;
  font-size: 0.85rem;
  padding: 0 2px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 26px;
}

.mandje-item-prijs {
  flex: 1;
  text-align: right;
  font-size: 0.85rem;
  color: var(--dark);
  white-space: nowrap;
}

.mandje-verwijder {
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0 2px;
  flex-shrink: 0;
}
.mandje-verwijder:hover { color: var(--coral); }

.mandje-totaal {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  text-align: right;
  margin: 0.5rem 0 1.5rem;
}

/* ============================================================
   ABOUT — HERO-LINK SPACING
   ============================================================ */
.about__text .hero-link { margin-top: 1rem; }

/* Contact Instagram button spacing (vervangt <br><br>) */
.contact-ig-btn { margin-top: 1.5rem; display: inline-block; }

/* ============================================================
   KAARTEN LEEG MELDING
   ============================================================ */
.cards-leeg {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  padding: 3rem;
  grid-column: 1 / -1;
  color: #888;
}

/* ============================================================
   SKIP-LINK (accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--coral);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

/* ============================================================
   HERO-LOGO MOBIEL
   ============================================================ */
@media (max-width: 600px) {
  .hero-logo { height: 70px; max-width: 220px; }
}

/* ============================================================
   FOOTER UITGEBREID
   ============================================================ */
.site-footer { padding: 2.5rem 0 0; }

.footer-inner {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 5vw 1rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: rgba(253,250,246,0.6);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-info {
  gap: 0;
}

.footer-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(253,250,246,0.5);
  margin: 0;
  padding: 0.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-info p:first-child {
  border-top: none;
  padding-top: 0;
}

.footer-copy {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(253,250,246,0.3);
  padding: 1rem 5vw 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
  }
}

/* ============================================================
   BEMOEDIGING QUOTE (kaarten.html)
   ============================================================ */
.bemoediging-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--forest);
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
  text-align: center;
}
