﻿/* ============================================================
   🌙 Myst Of Luna — Myst Of Luna — Meer dan alleen een wax melt.
   Toegankelijk, elegant en responsief (mobile-first)
   ============================================================ */

/* ------------------------------------------------------------
   🎨 Kleur- & typografievariabelen
   - Pas hier je kleuren/typografie 1x aan; overal consistent
------------------------------------------------------------ */
:root {
  --bg: #0d0c11;
  --ink: #f5efe6;
  --muted: #d8c7b4;
  --terra: #c1683c;
  --sand: #d58c6a;
  --gold: #c8a76c;
  --indigo: #1a1930;

  --ff-head: "Playfair Display", serif;
  --ff-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --radius: 1.25rem;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

/* ------------------------------------------------------------
   ⚙️ Basis & typografie
   - Globale tekstkleur gelijkgetrokken met de 'lead'-kleur
------------------------------------------------------------ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #f3e8d0;
  /* zelfde toon als .lead */
  background: var(--bg);
  font: 16px/1.6 var(--ff-body);
}

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

a {
  color: var(--sand);
  text-decoration: none;
}

a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: var(--ff-head);
  line-height: 1.2;
  margin: 0 0 .5rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
}

/* ------------------------------------------------------------
   ♿ Toegankelijkheid
------------------------------------------------------------ */
.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #000;
  color: #f3e8d0;
  padding: .5rem .75rem;
  z-index: 999;
}

/* ------------------------------------------------------------
   🔝 Header & navigatie (incl. hamburger)
------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(150%) blur(8px);
  background: linear-gradient(180deg, rgba(13, 12, 17, .8), rgba(13, 12, 17, .55));
  border-bottom: 1px solid rgba(200, 167, 108, .25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 5vw;
  /* extra ademruimte */
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.brand-text {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: .3px;
  color: var(--sand);
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .35);
}

/* Logo-badge (licht, warm; logo zelf helder) */
.brand .logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
  background: radial-gradient(120% 120% at 30% 30%, rgba(200, 167, 108, .18), rgba(13, 12, 17, 0) 60%);
  outline: 1px solid rgba(200, 167, 108, .22);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .25), inset 0 0 0 1px rgba(255, 255, 255, .06);
  filter: brightness(1) contrast(1.02) saturate(1);
}

.brand:hover .logo {
  filter: brightness(1.05) contrast(1.05);
}

.brand:hover .brand-text {
  color: var(--gold);
}

@media (max-width:560px) {
  .brand .logo {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .brand-text {
    font-size: 1.05rem;
  }
}

@media (max-width:420px) {
  .brand-text {
    display: none;
  }
}

/* Headerbalk */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(150%) blur(8px);
  background: linear-gradient(180deg, rgba(13, 12, 17, .8), rgba(13, 12, 17, .55));
  border-bottom: 1px solid rgba(200, 167, 108, .25);
}

/* Nav: menu mooi in het midden (desktop) */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  /* ⬅︎ menu centreren */
  gap: 2rem;
  padding: 1.2rem 5vw;
  /* wat extra ademruimte */
  position: relative;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  padding: .55rem .8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .2s ease;
}

.nav-menu a[aria-current="page"] {
  border-color: rgba(200, 167, 108, .35);
  background: rgba(200, 167, 108, .08);
}

/* Hamburger-button rechts */
.nav-toggle {
  display: none;
  /* desktop verborgen */
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: 0;
  cursor: pointer;
  position: absolute;
  right: 5vw;
  /* ⬅︎ netjes rechts uitgelijnd */
}

.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--sand);
  transition: .3s;
}

/* Mobiel: menu inklappen onder de header */
@media (max-width: 800px) {
  .nav {
    justify-content: center;
    /* kopregel blijft visueel gecentreerd */
  }

  .nav-toggle {
    display: flex;
  }

  /* hamburger zichtbaar */

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 12, 17, 0.96);
    border-top: 1px solid rgba(200, 167, 108, .25);
    display: none;
    /* standaard dicht */
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: .75rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    display: block;
    font-size: 1.1rem;
  }
}

/* Kleine X-animatie voor de hamburger */
.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* ------------------------------------------------------------
   🧭 Herbruikbare HERO component (logo links + titel)
   - Wordt gebruikt bovenaan elke pagina (home, collectie, over, etc.)
   - Compactere hoogte zodat er meer ruimte is voor content eronder
------------------------------------------------------------ */
.page-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(1.25rem, 4vw, 2.5rem) 0;
  /* 🔽 was 2–4rem — compacter, ca. 20–40px marge */
  overflow: hidden;
}

.page-hero .bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: saturate(105%);
}

/* Subtiele lichtval / overlay */
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(200, 167, 108, .25), transparent 55%),
    linear-gradient(180deg, rgba(13, 12, 17, 0), rgba(13, 12, 17, .85) 80%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Flexlayout: logo links, tekst rechts */
.page-hero__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Logo: blijft mooi zichtbaar, niet te groot */
.page-hero__logo img {
  width: clamp(110px, 14vw, 160px);
  /* iets compacter: max 160px i.p.v. 170px */
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .45));
}

/* Titel en subtitel rechts */
.page-hero__text h1 {
  margin: 0 0 .25rem;
}

.page-hero__subtitle,
.page-hero .lead {
  color: var(--muted);
}

/* ✅ Extra desktop-optimalisatie:
   minder padding op brede schermen, behoudt lucht op mobiel */
@media (min-width: 900px) {
  .page-hero {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
    /* nog iets compacter vanaf desktopbreedte */
  }

  .page-hero__inner {
    gap: 1.5rem;
  }
}

/* Responsief: stapelt logo boven tekst op mobiel */
@media (max-width: 900px) {
  .page-hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .page-hero__logo img {
    width: clamp(100px, 26vw, 150px);
  }
}


/* ------------------------------------------------------------
   🧱 Grids
------------------------------------------------------------ */
.grid {
  display: grid;
  gap: 1rem;
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width:700px) {
  .grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width:900px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Beter balans tussen tekst/beeld in 2-koloms */
@media (min-width:900px) {
  .grid--2 {
    grid-template-columns: 1.4fr 1fr;
    /* meer ruimte voor tekst */
    align-items: center;
  }
}

/* ------------------------------------------------------------
   🪔 Cards (generiek)
------------------------------------------------------------ */
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  border: 1px solid rgba(200, 167, 108, .22);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card__img {
  aspect-ratio: 3/2;
  background: #151319;
  background-size: cover;
  background-position: center;
}

.card__body {
  padding: 1rem;
}

.card__meta {
  color: var(--muted);
  font-size: .95rem;
    min-height: 3em; /* ongeveer 2 regels */
  display: block;
}

/* ------------------------------------------------------------
   🔘 Buttons
------------------------------------------------------------ */
.btn {
  display: inline-block;
  margin-top: .5rem;
  padding: .6rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 167, 108, .35);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(200, 167, 108, .15), rgba(200, 167, 108, .08));
}

.btn:hover {
  background: rgba(200, 167, 108, .22);
}

/* CTA-variant */
.btn--cta {
  display: inline-block;
  background: var(--terra);
  color: #f3e8d0;
  padding: .9rem 1.5rem;
  border: 0;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: var(--shadow);
  margin-top: 1.2rem;
  transition: background .2s ease, transform .2s ease;
}

.btn--cta:hover {
  background: #d87a53;
  transform: translateY(-2px);
}

/* WhatsApp knop */
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(180deg, #25D366, #1fa851);
  color: #0b250f;
  font-weight: 600;
  padding: .6rem 1rem;
  border-radius: 999px;
  border: none;
  box-shadow: var(--shadow);
  transition: transform .2s ease, filter .2s ease;
}

.btn--whatsapp:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
}

.icon-whatsapp {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: .4rem;
  vertical-align: middle;
}

/* ✉️ Bestel via e-mail knop */
.btn-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #d9b97a, #b88c52);
  color: #120f0c;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  box-shadow: var(--shadow);
  text-decoration: none;
  margin-top: 0.4rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-email:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
  color: #120f0c;
}

/* ------------------------------------------------------------
   ❓ FAQ
------------------------------------------------------------ */
.faq details {
  border: 1px solid rgba(200, 167, 108, .25);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, .02);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--ff-head);
}

.faq details+details {
  margin-top: .75rem;
}

/* ------------------------------------------------------------
   🌙 Footer – compacter & netjes
------------------------------------------------------------ */
.site-footer {
  padding: 1.2rem 0;
  /* compacter dan voorheen */
  border-top: 1px solid rgba(200, 167, 108, .2);
  background: linear-gradient(180deg, rgba(200, 167, 108, .10), rgba(13, 12, 17, .85));
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}

/* copyright/tagline */
.site-footer .credits {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--sand);
  margin: 0 0 1rem 0;
  padding-bottom: .3rem;
  line-height: 1.5;
}

/* juridische tekst */
.site-footer .legal {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

.site-footer .legal a {
  color: var(--sand);
  text-decoration: none;
  font-weight: 500;
}

.site-footer .legal a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ------------------------------------------------------------
   🌄 Achtergrondvarianten
   - Gebruik op elke pagina de juiste .bg--* onder .page-hero of .section
   - Wil je aparte beelden: maak extra classes (bg--over, bg--faq, …)
------------------------------------------------------------ */
.bg--hero,
.bg--collectie,
.bg--over,
.bg--faq,
.bg--contact,
.bg--main,
.bg--footer,
.bg--detail {
  background-image: linear-gradient(180deg, rgba(26, 25, 48, .3), rgba(13, 12, 17, .75)),
    url('assets/Achtergrond.webp');
  opacity: .9;
}

/* ------------------------------------------------------------
   📬 Formulier
------------------------------------------------------------ */
form {
  display: grid;
  gap: .75rem;
}

input,
textarea {
  width: 100%;
  padding: .75rem .9rem;
  border-radius: .75rem;
  border: 1px solid rgba(200, 167, 108, .25);
  background: #0f0e14;
  color: var(--ink);
}

label {
  font-weight: 600;
}

form button {
  background: linear-gradient(180deg, var(--gold), var(--terra));
  color: #120f0c;
  border: none;
  font-weight: 600;
  padding: .9rem 1.5rem;
  border-radius: var(--radius);
  width: 100%;
  cursor: pointer;
  transition: filter .2s ease;
}

form button:hover {
  filter: brightness(.95);
}

/* === Belangrijke knop: Plaats uw bestelling === */
.page-hero .btn[href*="Bestellen"] {
  background: linear-gradient(135deg, #e6b400, #ffce3a);
  color: #2b2000;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 0 0 rgba(230, 180, 0, 0.4);
  transition: all 0.3s ease, transform 0.15s ease;
  animation: pulseGlow 2.8s infinite ease-in-out;
}

.page-hero .btn[href*="Bestellen"]:hover {
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(255, 220, 80, 0.7);
  background: linear-gradient(135deg, #ffd74d, #ffe78c);
  color: #000;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(230, 180, 0, 0.0);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 220, 80, 0.6);
  }
}

/* mobiel: iets groter en centreren */
@media (max-width: 600px) {
  .page-hero .btn[href*="Bestellen"] {
    display: inline-block;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    width: auto;
  }
}


/* Contact: tekst + WhatsApp-knop naast elkaar */
.contact-whatsapp {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}

.contact-whatsapp p {
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

/* ------------------------------------------------------------
   🌸 USP-sectie
------------------------------------------------------------ */
.usp {
  text-align: center;
  padding: 1.2rem 0;
  background: linear-gradient(180deg, rgba(200, 167, 108, .03) 0%, rgba(13, 12, 17, .7) 100%);
}

.usp .grid--4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .8rem;
  justify-items: center;
  align-items: center;
}

.usp__item {
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  padding: .3rem;
  white-space: nowrap;
  /* houd 1-regelig */
}

.usp__icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: .25rem;
  vertical-align: middle;
  color: var(--gold);
  text-shadow: 0 0 5px rgba(200, 167, 108, .2);
  /* Gebruik Lucide/SVG of emoji's; zie HTML-implementatie */
}

.usp__item:last-child .usp__icon {
  margin-right: .15rem;
}

.usp__item p {
  display: inline;
}

@media (min-width:900px) {
  .usp__item p {
    font-size: 1.1rem;
  }
}

/* ------------------------------------------------------------
   💬 Testimonials / CTA
------------------------------------------------------------ */
.testimonials {
  text-align: center;
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, rgba(200, 167, 108, .08), rgba(13, 12, 17, .8));
  color: var(--ink);
  overflow: hidden;
}

.testimonials__quotes {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
}

@media (min-width:800px) {
  .testimonials__quotes {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.testimonials__quotes blockquote {
  font-family: var(--ff-head);
  font-style: italic;
  color: var(--sand);
  opacity: 0;
  font-size: 1.1rem;
  margin: 0;
  transform: translateY(15px);
  animation: fadeUp 1s ease-out forwards;
}

.testimonials__quotes blockquote:nth-child(1) {
  animation-delay: .2s;
}

.testimonials__quotes blockquote:nth-child(2) {
  animation-delay: .4s;
}

.testimonials__quotes blockquote:nth-child(3) {
  animation-delay: .6s;
}

.testimonials h2 {
  margin-top: 1rem;
  font-family: var(--ff-head);
  font-size: 2rem;
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1s ease-out .8s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------
   🧴 Productdetail-kaarten (alleen op producten.html)
   - Foto nooit uitgerekt (contain + padding-top verhouding)
------------------------------------------------------------ */
.product-detail .card {
  background: linear-gradient(180deg, rgba(25, 20, 15, .95), rgba(15, 12, 10, .98));
  border: 1px solid rgba(200, 167, 108, .25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .4);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.product-detail .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .55);
}

.product-detail .card__img {
  width: 100%;
  height: auto;
  padding-top: 65%;
  /* visuele hoogte (kan 60% op brede schermen) */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-bottom: 1px solid rgba(200, 167, 108, .2);
  filter: brightness(.95) saturate(.95);
  transition: filter .3s ease;
}

.product-detail .card:hover .card__img {
  filter: brightness(1.05) saturate(1);
}

.product-detail .card__body {
  padding: 1.2rem;
}

.product-detail .card__body h3 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  margin-bottom: .4rem;
}

.product-detail .card__meta {
  font-size: 1rem;
  margin-bottom: .6rem;
}

.product-detail .btn-view {
  display: inline-block;
  padding: .6rem 1.2rem;
  background: linear-gradient(180deg, var(--gold), #b88c52);
  color: #120f0c;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: filter .2s ease;
}

.product-detail .btn-view:hover {
  filter: brightness(1.05);
}

/* ------------------------------------------------------------
   🧭 Productdetail header (legacy) – naast logo + titel
   - Tip: vervang dit op termijn door .page-hero (zelfde look overal)
------------------------------------------------------------ */
.product-detail-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 3rem;
  text-align: left;
}

.product-detail-header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.product-detail-header .product-logo img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .4));
  transition: transform .3s ease;
}

.product-detail-header .product-logo img:hover {
  transform: scale(1.05);
}

.product-detail-header .product-title h1 {
  font-size: 2.2rem;
  margin: 0;
  color: #f3e8d0;
}

.product-detail-header .product-title p {
  margin: .3rem 0 0;
  font-size: 1.1rem;
  color: #d6d3cf;
  opacity: .9;
}

@media (max-width:768px) {
  .product-detail-header-inner {
    flex-direction: column;
    text-align: center;
  }

  .product-detail-header .product-logo img {
    width: 100px;
  }

  .product-detail-header .product-title h1 {
    font-size: 1.8rem;
  }
}


/* FAQ-secties overzichtelijker maken */
.faq__group {
  margin-bottom: 3rem;
  /* ruimte tussen categorieën */
}

.faq__group h2 {
  margin-bottom: 1rem;
  /* ruimte onder de titel */
}

.faq details {
  margin-bottom: 1rem;
  /* ruimte tussen vragen */
  border: 1px solid rgba(200, 167, 108, .25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, .02);
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* Mooie hover/focus */
.faq details:hover {
  background: rgba(200, 167, 108, .05);
  border-color: rgba(200, 167, 108, .4);
}

/* Samenvattingen iets meer ademruimte */
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--ff-head);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.faq details p {
  margin: 0.75rem 0 0 0;
  /* kleine ruimte boven tekst */
  color: var(--muted);
  line-height: 1.6;
}

/* ===== Nieuwsbrief (statisch, via mailto:) ===== */
.newsletter {
  position: relative;
}

.newsletter__inner {
  display: grid;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 900px) {
  .newsletter__inner {
    grid-template-columns: 1.1fr 1fr;
  }
}

.newsletter__text h2 {
  margin: 0 0 .25rem;
}

.newsletter__text .lead {
  margin: 0;
}

.newsletter__form {
  display: grid;
  gap: .6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  border: 1px solid rgba(200, 167, 108, .22);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.newsletter__form input[type="email"],
.newsletter__form input[type="text"] {
  width: 100%;
  padding: .75rem .9rem;
  border-radius: .75rem;
  border: 1px solid rgba(200, 167, 108, .25);
  background: #0f0e14;
  color: var(--ink);
}

.newsletter__consent {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
  color: var(--muted);
  margin: .25rem 0 .25rem;
}

.newsletter__legal {
  margin: .2rem 0 0;
  font-size: .9rem;
  color: var(--muted);
}

/* Visually hidden (toegankelijke labels) */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* ==== Nieuwsbrief CTA & Popup ==== */

/* extra knop in hero */
.btn--outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-left: 0.8rem;
  transition: all 0.25s ease;
}

.btn--outline:hover {
  background: var(--gold);
  color: #120f0c;
}

/* popup basis */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* active state (CSS target hack) */
.popup:target {
  display: flex;
}

/* popup venster */
.popup__content {
  background: #1a1816;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 167, 108, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  padding: 2rem;
  max-width: 450px;
  width: 90%;
  color: var(--ink);
  text-align: left;
  position: relative;
}

/* Zorg dat de content scrollt als er te veel tekst is */
.popup__content {
  max-height: 90vh;            /* laat wat marge boven/onder */
  overflow-y: auto;            /* verticale scrollbalk indien nodig */
  overscroll-behavior: contain;/* voorkomt dat de achtergrond scrolt */
  -webkit-overflow-scrolling: touch; /* vloeiende scroll op iOS */
  background: var(--bg, #fff);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.popup.show {
  display: flex;
}


/* sluiten-knop */
.popup__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  color: var(--gold);
  font-size: 2rem;
  text-decoration: none;
  line-height: 1;
}

.popup__close:hover {
  color: var(--sand);
}

.popup form {
  display: grid;
  gap: .7rem;
  margin-top: 1rem;
}

.popup input[type="email"],
.popup input[type="text"] {
  padding: .8rem .9rem;
  border-radius: .75rem;
  border: 1px solid rgba(200, 167, 108, .25);
  background: #0f0e14;
  color: var(--ink);
}

.popup label {
  font-size: .9rem;
  color: var(--muted);
}

.popup info {
  font-size: .9rem;
  color: var(--muted);
}

.popup .newsletter__legal {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .4rem;
}

#newsletterForm label::after {
  content: " *";
  color: var(--sand);
}

/* Popup fade sluiten */
.newsletter-popup {
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.newsletter-popup:not(.active) {
  opacity: 0;
  visibility: hidden;
}

/* Bevestigingstekst */
.newsletter-confirmation {
  text-align: center;
  font-family: var(--ff-head);
  color: var(--sand);
  font-size: 1.1rem;
  padding: 1.5rem 1rem;
  animation: fadeUp 0.8s ease forwards;
}

.no-scroll {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}


/* Optioneel: :target fallback uitschakelen als JS actief is
   (wordt door JS op <html> gezet) */
html.js-enabled .popup:target {
  display: none;
}

html, body {
  scroll-behavior: auto !important;
}

/* Zorg dat checkbox + tekst altijd op één lijn staan */
label.checkbox,
label.agree {
  display: inline-flex;
  align-items: center;
  gap: 8px;          /* ruimte tussen checkbox en tekst */
  cursor: pointer;
  line-height: 1.4;
white-space: normal;
flex-wrap: wrap;
}

/* === Collectiepagina: niet op voorraad === */
.card.out-of-stock {
  opacity: 0.5;
  filter: grayscale(0.9);
  position: relative;
}

.card.out-of-stock .btn {
  pointer-events: none;
  background-color: #999;
  border-color: #999;
  color: #fff;
}

.card .stock-badge {
  display: inline-block;
  margin-top: 0.5rem;
  background: #999;
  color: #fff;
  border-radius: 0.4rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.social {
  text-align: center;
  margin-top: 10px;
    color: var(--text-color,#c8a76c)
}

.social a {
  color: var(--text-color, #fff);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-icon {
  width: 16px;
  height: 16x;
  color: var(--text-color,#c8a76c);
  vertical-align: -4px; /* <— schuift het icoon iets omlaag */;
  filter: brightness(1.5);
  transition: transform 0.2s;
}

.social a:hover .social-icon {
  transform: scale(1.1);
}


