/* ---------- Basis ---------- */
:root {
  --cream: #fdf8f1;
  --ink: #1d1a16;
  --ink-soft: #5c554c;
  --coral: #f2542d;
  --coral-dark: #d8431f;
  --teal: #2a9d8f;
  --mustard: #f4c95d;
  --card: #ffffff;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(29, 26, 22, 0.08);
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.02em; }

h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral);
  margin-bottom: 0.7rem;
}

.eyebrow--light { color: var(--mustard); }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 20px rgba(242, 84, 45, 0.35);
}
.btn--primary:hover { background: var(--coral-dark); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

/* ---------- Navigatie ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 241, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29, 26, 22, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.8rem 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.nav__mark { height: 44px; width: auto; }

.nav__wordimg { height: 26px; width: auto; }

.nav__links {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}

.nav__links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--coral); }

.nav__cta { padding: 0.6rem 1.3rem; font-size: 0.85rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 7vw, 6rem) 0; overflow: hidden; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.hero__accent { color: var(--coral); }

.hero__sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }

.hero__stats {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
}
.hero__stats span { font-size: 0.85rem; color: var(--ink-soft); }

.hero__visual { position: relative; }

.hero__blob {
  position: absolute;
  inset: 6% 4%;
  background: linear-gradient(135deg, var(--mustard), #f8e3b0);
  border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%;
  z-index: 0;
}

.hero__logo {
  position: relative;
  z-index: 1;
  width: min(88%, 420px);
  margin-inline: auto;
  filter: drop-shadow(0 20px 40px rgba(29, 26, 22, 0.18));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero__chip {
  position: absolute;
  z-index: 2;
  background: #fff;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.hero__chip--1 { top: 12%; right: 0; color: var(--teal); transform: rotate(4deg); }
.hero__chip--2 { bottom: 14%; left: 0; color: var(--coral); transform: rotate(-4deg); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 0.9rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin: 1rem 0 3rem;
}

.marquee__track {
  display: flex;
  gap: 1.6rem;
  width: max-content;
  animation: scroll 22s linear infinite;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee__track span:nth-child(even) { color: var(--mustard); }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Secties ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }

.section--tint { background: #f6ede1; }

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* ---------- Filters ---------- */
.filters { display: flex; gap: 0.6rem; }

.filter {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 2px solid rgba(29, 26, 22, 0.15);
  background: transparent;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}

.filter:hover { border-color: var(--ink); color: var(--ink); }

.filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

/* ---------- Productgrid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(29, 26, 22, 0.14); }

.card.is-hidden { display: none; }

.card__img { aspect-ratio: 1 / 0.92; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card__img img { transform: scale(1.05); }

.card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }

.card__tags { display: flex; gap: 0.4rem; }

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.tag--hond { background: rgba(42, 157, 143, 0.15); color: var(--teal); }
.tag--kat { background: rgba(242, 84, 45, 0.13); color: var(--coral); }
.tag--new { background: var(--mustard); color: var(--ink); }

.card h3 { font-size: 1.2rem; font-weight: 700; }

.card p { font-size: 0.93rem; color: var(--ink-soft); }

.card__spec {
  margin-top: auto;
  font-size: 0.82rem !important;
  font-weight: 600;
  color: var(--ink) !important;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(29, 26, 22, 0.15);
}

.card__price {
  margin-left: auto;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  align-self: center;
}

.btn--small {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  text-align: center;
}

.card__links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.4rem; }
.card__links .card__link { margin-top: 0; flex: 1; }

.btn--amazon {
  background: #232f3e;
  color: #ff9900;
  border-color: #232f3e;
}
.btn--amazon:hover { background: #131921; color: #ff9900; }

.footer__admin { color: rgba(253, 248, 241, 0.7); text-decoration: underline; }
.footer__admin:hover { color: var(--mustard); }

/* ---------- Productpagina (pdp) ---------- */
.pdp { padding: 2rem 0 4rem; min-height: 60vh; }

.pdp__loading, .pdp__missing { padding: 4rem 0; text-align: center; }
.pdp__missing h1 { margin-bottom: 0.6rem; }
.pdp__missing p { color: var(--ink-soft); margin-bottom: 1.4rem; }

.pdp__crumbs { margin-bottom: 1.6rem; }
.pdp__crumbs a { color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.pdp__crumbs a:hover { color: var(--coral); }

.pdp__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
}

.pdp__main {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}
.pdp__main img { width: 100%; height: 100%; object-fit: cover; }

.pdp__thumbs { display: flex; gap: 0.7rem; margin-top: 0.9rem; flex-wrap: wrap; }
.pdp__thumb {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #fff;
  padding: 0;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.15s, border-color 0.15s;
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp__thumb:hover { opacity: 1; }
.pdp__thumb.is-active { border-color: var(--coral); opacity: 1; }

.pdp__info h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0.7rem 0 0.4rem;
}

.pdp__price {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 1rem;
}

.pdp__desc { color: var(--ink-soft); margin-bottom: 1.4rem; }

.pdp__specs { border-top: 1px dashed rgba(29, 26, 22, 0.15); margin-bottom: 1.6rem; }
.pdp__specs > div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(29, 26, 22, 0.15);
}
.pdp__specs dt { font-weight: 600; font-size: 0.9rem; }
.pdp__specs dd { color: var(--ink-soft); font-size: 0.9rem; text-align: right; }

.pdp__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.6rem; }

.pdp__usps { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.pdp__usps li { font-size: 0.9rem; color: var(--ink-soft); }

/* Kaarten in het overzicht worden klikbaar */
.card { cursor: pointer; }

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

.grid__empty { text-align: center; color: var(--ink-soft); padding: 3rem 0; }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
}

.feature__icon {
  font-size: 1.8rem;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  background: var(--cream);
  border-radius: 14px;
  margin-bottom: 1rem;
}

.feature h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.feature p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Over ons ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about__visual {
  background: linear-gradient(150deg, var(--mustard), #f9e7bd);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.about__text p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.about__text .btn { margin-top: 0.6rem; }

/* ---------- Contact ---------- */
.section--dark { background: var(--ink); color: var(--cream); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact__text p { color: rgba(253, 248, 241, 0.75); margin-bottom: 1.4rem; }

.contact__list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.contact__list li { color: rgba(253, 248, 241, 0.9); font-weight: 500; }

.contact__form {
  background: rgba(253, 248, 241, 0.06);
  border: 1px solid rgba(253, 248, 241, 0.12);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
}

.contact__form input,
.contact__form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(253, 248, 241, 0.2);
  background: rgba(253, 248, 241, 0.08);
  color: var(--cream);
  resize: vertical;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder { color: rgba(253, 248, 241, 0.4); }

.contact__form input:focus,
.contact__form textarea:focus {
  outline: 2px solid var(--mustard);
  border-color: transparent;
}

.contact__success { color: var(--mustard); font-weight: 600; font-size: 0.92rem; }

/* ---------- Footer ---------- */
.footer { background: #14110e; color: rgba(253, 248, 241, 0.7); padding: 2.5rem 0; }

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.06em;
}

.footer__brand img { height: 36px; width: auto; }
.footer__brand .footer__wordimg { height: 26px; }
.footer__copy { font-size: 0.82rem; opacity: 0.6; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsief ---------- */
@media (max-width: 900px) {
  .hero__inner, .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 420px; margin-inline: auto; }
  .about__visual { max-width: 420px; margin-inline: auto; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem 5%;
    gap: 1.1rem;
    border-bottom: 1px solid rgba(29, 26, 22, 0.08);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav__links + .nav__cta { margin-left: 0; }
  .hero__stats { gap: 1.4rem; }
  .section__head { flex-direction: column; align-items: flex-start; }
  .hero__chip { font-size: 0.68rem; padding: 0.45rem 0.85rem; }
  .hero__chip--1 { right: 2%; }
  .hero__chip--2 { left: 2%; }
  .marquee { transform: rotate(-1.2deg); }
}
