/* ===========================================
   Stuff To Travel — Global Stylesheet
   Brand: Vintage Rose
   Fonts: Cormorant Garamond + Nunito Sans
   =========================================== */

/* Fonts loaded via <link> in HTML head — parallel with style.css, not chained after it */

/* --- Variables --- */
:root {
  --vintage-rose: #C4727A;
  --vintage-rose-light: #d18b92;
  --dusty-mauve: #9B5E6A;
  --warm-espresso: #4A3035;
  --rosy-sand: #D4A89A;
  --blush-creme: #FDF5F3;
  --blush-creme-dark: #F5E8E4;
  --sage-green: #8A9E87;
  --antiek-goud: #C4A35A;
  --white: #FFFBF9;

  /* Legacy aliases for backward compatibility */
  --terracotta: #C4727A;
  --terracotta-light: #d18b92;
  --dark-brown: #4A3035;
  --gold-sand: #D4A89A;
  --warm-taupe: #9B5E6A;
  --creme: #FDF5F3;
  --creme-dark: #F5E8E4;
  --olive: #8A9E87;
  --mustard: #C4A35A;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--warm-espresso);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vintage-rose); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--dusty-mauve); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--warm-espresso);
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
p { margin-bottom: 16px; max-width: 680px; }

.accent { color: var(--vintage-rose); }
.tagline {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dusty-mauve);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.handwritten {
  font-family: 'Caveat', cursive;
  color: var(--vintage-rose);
}

/* --- Layout --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

section:nth-child(even) {
  background: var(--blush-creme);
}

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 251, 249, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 168, 154, 0.3);
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: 0 2px 16px rgba(74, 48, 53, 0.08);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

nav ul li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--dusty-mauve);
  transition: color 0.2s;
  position: relative;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--vintage-rose);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vintage-rose);
  transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a::after {
  content: none !important;
}

.nav-dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--dusty-mauve);
  margin-left: 2px;
  transition: transform 0.2s, border-color 0.2s;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  border-top-color: var(--vintage-rose);
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(74, 48, 53, 0.12);
  border: 1px solid rgba(212, 168, 154, 0.2);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(4px);
  list-style: none;
  display: block;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
  padding: 0;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dusty-mauve);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu li a::after {
  content: none !important;
}

.nav-dropdown-menu li a:hover {
  background: var(--blush-creme);
  color: var(--vintage-rose);
}

.nav-dropdown-menu li a.active {
  color: var(--vintage-rose);
}

/* CTA button in nav */
.nav-cta {
  display: inline-block;
  background: var(--vintage-rose);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--dusty-mauve);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-espresso);
  margin: 5px 0;
  transition: all 0.3s;
}

/* --- Language suggestion banner --- */
.lang-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  max-width: 380px;
  background: var(--white);
  border: 1px solid rgba(212, 168, 154, 0.4);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(74, 48, 53, 0.15);
  animation: lang-banner-in 0.4s ease-out;
}
@keyframes lang-banner-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
.lang-banner-msg {
  font-size: 14px;
  color: var(--warm-espresso);
  flex: 1;
  line-height: 1.4;
}
.lang-banner-cta {
  display: inline-block;
  padding: 8px 14px;
  background: var(--vintage-rose);
  color: var(--white) !important;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}
.lang-banner-cta:hover {
  background: var(--dusty-mauve);
  color: var(--white) !important;
}
.lang-banner-close {
  background: transparent;
  border: 0;
  color: var(--warm-espresso);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.lang-banner-close:hover { opacity: 1; }
@media (max-width: 540px) {
  .lang-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  .lang-banner-inner { padding: 12px 14px; gap: 10px; }
  .lang-banner-msg { font-size: 13px; }
}

/* --- Hero --- */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, var(--blush-creme) 0%, var(--white) 100%);
}

.hero h1 {
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--vintage-rose);
  font-style: italic;
}

.hero .tagline {
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  color: var(--dusty-mauve);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--vintage-rose);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dusty-mauve);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 114, 122, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--vintage-rose);
  border: 2px solid var(--vintage-rose);
}

.btn-secondary:hover {
  background: var(--vintage-rose);
  color: var(--white);
}

.btn:disabled,
.btn[disabled] {
  background: var(--rosy-sand);
  color: var(--white);
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card-grid--4col {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
}
@media (max-width: 1000px) {
  .card-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .card-grid--4col {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(74, 48, 53, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(212, 168, 154, 0.15);
  display: flex;
  flex-direction: column;
}

/* Hele tegel als link — neutraliseer default link-stijl */
a.card {
  text-decoration: none;
  color: inherit;
}
a.card h3 { color: var(--warm-taupe); }

.card .btn { margin-top: 20px; align-self: flex-start; }

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(196, 114, 122, 0.12);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--blush-creme);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.card h3 { margin-bottom: 10px; }

.card p {
  font-size: 15px;
  color: var(--dusty-mauve);
  margin-bottom: 0;
  flex: 1;
}

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 24px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--vintage-rose);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--dusty-mauve); text-align: center; max-width: none; }

/* --- Two-col layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
}

/* --- Image placeholder --- */
.img-placeholder {
  background: var(--blush-creme);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosy-sand);
  font-size: 14px;
  font-style: italic;
  border: 2px dashed var(--rosy-sand);
}

/* --- Testimonial / Quote --- */
.quote-block {
  background: var(--blush-creme);
  border-radius: 16px;
  padding: 40px 48px;
  border-left: 4px solid var(--vintage-rose);
  margin: 32px 0;
}

.quote-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--warm-espresso);
  max-width: none;
  margin-bottom: 12px;
}

.quote-block cite {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  color: var(--dusty-mauve);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--warm-espresso);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--blush-creme);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--rosy-sand);
  margin: 0 auto 28px;
  font-size: 17px;
}

.cta-banner .btn-primary {
  background: var(--vintage-rose);
}

.cta-banner .btn-primary:hover {
  background: var(--rosy-sand);
  color: var(--warm-espresso);
}

/* --- Footer --- */
footer {
  background: var(--warm-espresso);
  color: var(--rosy-sand);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  color: var(--dusty-mauve);
  max-width: 320px;
}

footer h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rosy-sand);
  margin-bottom: 16px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

footer ul li a {
  font-size: 14px;
  color: var(--dusty-mauve);
}

footer ul li a:hover {
  color: var(--blush-creme);
}

.footer-bottom {
  max-width: 1120px;
  margin: 32px auto 0;
  padding: 16px 24px 0;
  border-top: 1px solid rgba(212, 168, 154, 0.2);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--dusty-mauve);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--dusty-mauve);
  font-size: 14px;
}

.social-links a:hover {
  color: var(--blush-creme);
}

/* --- Decorative line --- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--rosy-sand);
  border: none;
  margin: 24px 0;
}

.divider-center {
  margin: 24px auto;
}

/* --- Breadcrumb nav --- */
.breadcrumb-nav {
  background: var(--white);
  border-bottom: 1px solid rgba(91, 58, 41, 0.08);
  padding: 10px 0;
  padding-top: calc(68px + 10px);
  position: relative;
  z-index: 10;
}
.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--warm-taupe);
}
.breadcrumb-nav li + li::before {
  content: "›";
  margin-right: 6px;
  color: var(--rosy-sand);
}
.breadcrumb-nav a {
  color: var(--warm-taupe);
  text-decoration: none;
}
.breadcrumb-nav a:hover {
  color: var(--terracotta);
  text-decoration: underline;
}
.breadcrumb-nav [aria-current="page"] {
  color: var(--warm-espresso);
  font-weight: 500;
}

/* --- Blog category nav --- */
.blog-cat-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 0 40px;
}

/* Minder ruimte onder page-header als categorie-nav volgt */
.page-header:has(+ section .blog-cat-nav) {
  padding-bottom: 24px;
}
/* En minder ruimte boven de nav-section zelf (section heeft default 80px top) */
.page-header + section:has(.blog-cat-nav) {
  padding-top: 24px;
}
.blog-cat-nav a {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--rosy-sand);
  color: var(--warm-taupe);
  transition: all 0.2s;
  white-space: nowrap;
}
.blog-cat-nav a:hover,
.blog-cat-nav a.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

/* Mobile: horizontaal scrollen i.p.v. wrappen — voorkomt 4 rijen pills
   op de Journaling sub-pages (CAT_NAV + SUB_CAT_NAV gestapeld). */
@media (max-width: 640px) {
  .blog-cat-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;        /* voorkomt mini vertical bounce / scrollbar */
    overscroll-behavior-x: contain;
    justify-content: flex-start;
    padding: 0 0 16px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .blog-cat-nav::-webkit-scrollbar { display: none; } /* Chrome/Safari */
  .blog-cat-nav a {
    padding: 6px 14px;
    font-size: 13px;
    flex-shrink: 0;
  }
  /* Iets minder ruimte tussen twee gestapelde navs op mobile */
  .blog-cat-nav + .blog-cat-nav { padding-top: 4px; }
}

/* --- Page header after breadcrumb --- */
.breadcrumb-nav + .page-header,
.breadcrumb-nav + section.page-header,
.breadcrumb-nav + div.page-header {
  padding-top: 48px;
}

/* --- Page header (inner pages) --- */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--blush-creme);
}

.page-header .tagline { margin-bottom: 12px; }
.page-header h1 { margin-bottom: 16px; }
.page-header p { margin: 0 auto; font-size: 17px; color: var(--dusty-mauve); }

/* --- FAQ / Accordion --- */
.faq-item {
  border-bottom: 1px solid rgba(212, 168, 154, 0.3);
  padding: 20px 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--warm-espresso);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--vintage-rose);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item .faq-body {
  padding-top: 12px;
  font-size: 15px;
  color: var(--dusty-mauve);
  max-width: 640px;
}

/* --- Blog article styles --- */
section:has(.blog-article) {
  background: var(--white, #fff);
}

.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-article h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.blog-article h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-article p {
  max-width: none;
  margin-bottom: 16px;
  line-height: 1.7;
}

.blog-article ul, .blog-article ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.blog-article li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--warm-espresso);
}

.blog-article blockquote {
  background: var(--blush-creme);
  border-left: 4px solid var(--vintage-rose);
  padding: 20px 28px;
  border-radius: 8px;
  margin: 24px 0;
  font-style: italic;
  color: var(--dusty-mauve);
}

.blog-article .tip-box {
  background: var(--blush-creme);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0;
  border: 1px solid rgba(212, 168, 154, 0.3);
}

.blog-article .tip-box strong {
  color: var(--vintage-rose);
}

.blog-article .cta-inline {
  background: var(--blush-creme);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 32px 0;
  text-align: center;
  border: 2px solid rgba(196, 114, 122, 0.2);
}

/* --- Blog grid & cards (blog.html + categoriepagina's) --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(91, 58, 41, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(91, 58, 41, 0.1);
  color: inherit;
}
.blog-card-img {
  background: var(--creme);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosy-sand);
  font-size: 14px;
  font-style: italic;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body {
  padding: 28px;
}
.blog-card-body .blog-meta {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--warm-taupe);
  margin-bottom: 12px;
}
.blog-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card-body p {
  font-size: 15px;
  color: var(--warm-taupe);
  margin-bottom: 16px;
}
.blog-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--terracotta);
}
.blog-tag {
  display: inline-block;
  background: var(--creme);
  color: var(--warm-taupe);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 6px;
}
.blog-tag.pillar {
  background: var(--terracotta);
  color: var(--white);
}
.blog-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.blog-featured .blog-card-img {
  aspect-ratio: auto;
  min-height: 300px;
}
.blog-featured .blog-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.blog-featured .blog-card-body h3 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .blog-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .blog-featured .blog-card-img {
    aspect-ratio: 16/9;
    min-height: unset;
  }
  .blog-featured .blog-card-body {
    padding: 24px;
  }
  .blog-featured .blog-card-body h3 {
    font-size: 1.25rem;
  }
}

.blog-meta-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-meta-header .blog-date {
  font-size: 14px;
  color: var(--dusty-mauve);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-inner { height: 60px; }
  nav ul { display: none; }
  /* Push hamburger to the right edge. Without this, justify-content:
     space-between distributes hamburger between logo and the (empty)
     nav element, leaving it floating in the middle. */
  .hamburger { display: block; margin-left: auto; }

  nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--rosy-sand);
    box-shadow: 0 8px 24px rgba(74, 48, 53, 0.1);
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--blush-creme);
    border-radius: 8px;
    opacity: 1;
    visibility: visible;
    padding: 4px 0;
    margin-top: 8px;
  }

  .nav-dropdown-menu li a {
    padding: 8px 20px;
    font-size: 13px;
  }

  .two-col, .two-col.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  section { padding: 56px 0; }
  .hero { padding: 120px 0 72px; }
  .page-header { padding: 110px 0 48px; }
}

/* --- Pinterest board embed --- */
.pinterest-section {
  background: var(--blush-creme);
  text-align: center;
}

.pinterest-section h2 {
  margin-bottom: 8px;
}

.pinterest-section > .container > p {
  color: var(--warm-gray);
  margin-bottom: 32px;
}

.pinterest-board-wrap {
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: 12px;
}

.pinterest-board-wrap > a {
  display: block;
}

/* --- Product image placeholder --- */
.product-img-placeholder {
  background: var(--blush-creme);
  aspect-ratio: 16/9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosy-sand);
  font-size: 14px;
  font-style: italic;
}
.product-img-placeholder--large {
  aspect-ratio: auto;
  min-height: 420px;
}

/* --- Product price (grid cards) --- */
.product-price {
  font-size: 17px;
  font-weight: 600;
  color: var(--warm-espresso);
  margin-bottom: 8px;
}

/* --- Compact product cards (shop overview "Begin hier" rows) --- */
/* Extends .blog-card with a tighter layout: 1:1 image, no body paragraph,
   smaller padding so 4 cards fit in a single row on desktop.
   The --narrow modifier is used for the 2-up binder row. */
.product-grid-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-grid-compact.product-grid-compact--narrow {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
/* 2-koloms, volledige container breedte — voor "starter set" rij met 2 tiles.
   Geen lege cel rechts, tiles zijn groter (hero-effect) dan de 3-koloms grids. */
.product-grid-compact.product-grid-compact--two {
  grid-template-columns: repeat(2, 1fr);
}
.product-grid-compact.product-grid-compact--three {
  grid-template-columns: repeat(3, 1fr);
}
.product-card-compact .blog-card-body p:not(.product-price) {
  font-size: 14px;
  line-height: 1.5;
  color: var(--warm-taupe);
  margin-bottom: 10px;
  max-width: none;
}
.product-card-compact .blog-card-img {
  aspect-ratio: 1 / 1;
}
.product-card-compact {
  display: flex;
  flex-direction: column;
}
.product-card-compact .blog-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;                  /* vult resterende hoogte van de tile */
}
/* "Bekijk X →" naar de onderkant duwen zodat alle tegels op gelijke hoogte aligneren */
.product-card-compact .blog-read-more {
  margin-top: auto;
  padding-top: 6px;
}
.product-card-compact .blog-card-body h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-compact .product-price {
  font-size: 16px;
  margin-bottom: 8px;
}
.product-card-compact .blog-read-more {
  font-size: 13px;
}

/* Shop section row header (h3 + "see all" link on the same line on desktop,
   stacked + centered on mobile). Used for "Begin hier" subsections. */
.shop-row-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}
.shop-row-header h3 {
  margin: 0;
}
.shop-row-header--narrow {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .shop-row-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}
@media (max-width: 900px) {
  .product-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  /* Override the 3-up desktop layout with 2-up on mobile.
     Need the same specificity as the desktop --three rule. */
  .product-grid-compact.product-grid-compact--three {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Last (orphan) card in a 2-up grid spans both columns
     so we don't get a half-empty row visual. Use a landscape
     aspect ratio so the image doesn't dominate the viewport. */
  .product-grid-compact--three > a:last-child:nth-child(odd) {
    grid-column: span 2;
  }
  .product-grid-compact--three > a:last-child:nth-child(odd) .blog-card-img {
    aspect-ratio: 16 / 9;
  }
  .product-card-compact .blog-card-body {
    padding: 14px 14px 16px;
  }
  .product-card-compact .blog-card-body h3 {
    font-size: 0.95rem;
  }
}

/* ===========================================
   Product detail page — Option 3 layout
   (hero image left · info panel right · desc below)
   =========================================== */

.product-detail {
  padding: 0;
  background: var(--blush-creme);
}

/* Split: 55% image / 45% info, max 1120px centred */
.product-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: start;
  min-height: 520px;
  max-width: 1120px;
  margin: 0 auto;
}

/* Gallery column */
/* ── Product image gallery (Holstee-style: main top, thumbs below) ───────── */
.product-gallery {
  display: flex;
  flex-direction: column;
  background: var(--blush-creme);
}

/* Main image area */
.product-gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: zoom-in;
  width: 100%;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 0.18s;
}

/* Horizontal thumbnail strip below the main image */
.product-gallery-thumbs {
  display: flex;
  flex-direction: row;
  gap: 6px;
  padding: 10px 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  background: var(--blush-creme);
  border-top: 1px solid rgba(196, 114, 122, 0.12);
}
.product-gallery-thumbs::-webkit-scrollbar { display: none; }

.gallery-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.15s, border-color 0.15s;
}
.gallery-thumb:hover { opacity: 0.85; }
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--vintage-rose);
}

/* Prev / next arrows on the main image */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.88);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, background 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--charcoal);
}
.gallery-arrow--prev { left: 10px; }
.gallery-arrow--next { right: 10px; }
.product-gallery-main:hover .gallery-arrow {
  opacity: 1;
  pointer-events: auto;
}
.gallery-arrow:hover { background: rgba(255, 255, 255, 1); }

/* ── Zoom / lightbox modal ───────────────────────────────────────────────── */
.gallery-zoom-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.gallery-zoom-modal.is-open { display: flex; }

.gallery-zoom-modal img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  user-select: none;
  transition: opacity 0.2s;
}
.gallery-zoom-modal img.is-loading {
  opacity: 0;
}

/* Spinner shown while zoom image loads */
.gallery-zoom-spinner {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2002;
}
.gallery-zoom-spinner svg {
  width: 40px;
  height: 40px;
  animation: zoom-spin 0.7s linear infinite;
  opacity: 0.7;
}
@keyframes zoom-spin {
  to { transform: rotate(360deg); }
}
.gallery-zoom-spinner.is-hidden { display: none; }

.gallery-zoom-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 2001;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.gallery-zoom-close:hover { opacity: 1; }

.gallery-zoom-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.gallery-zoom-arrow:hover { background: rgba(255, 255, 255, 0.25); }
.gallery-zoom-arrow--prev { left: 18px; }
.gallery-zoom-arrow--next { right: 18px; }

/* Info panel */
.product-info {
  background: var(--blush-creme);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.product-category-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dusty-mauve);
  margin-bottom: 14px;
}

.product-category-label a {
  color: var(--dusty-mauve);
}

.product-category-label a:hover {
  color: var(--vintage-rose);
}

.product-info h1 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.3;
  margin-bottom: 16px;
}

.product-info .product-price {
  font-size: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--warm-espresso);
  margin-bottom: 8px;
}

.product-divider {
  width: 40px;
  height: 2px;
  background: var(--rosy-sand);
  border: none;
  margin: 20px 0 28px;
}

.btn-etsy {
  display: block;
  background: var(--vintage-rose);
  color: var(--white) !important;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 10px;
}

.btn-etsy:hover {
  background: var(--dusty-mauve);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.product-etsy-note {
  font-size: 13px;
  color: var(--dusty-mauve);
  text-align: center;
  margin-bottom: 0;
  max-width: none;
}

/* ── Product cross-link tip ──────────────────────────────────────────────── */
.product-crosslink {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 16px 24px;
  background: var(--blush-creme-dark);
  border-left: 3px solid var(--vintage-rose);
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  color: var(--warm-espresso);
}
.product-crosslink a {
  color: var(--vintage-rose);
  font-weight: 600;
  text-decoration: underline;
}
/* .product-crosslink-icon legacy class kept for backward compatibility
   but no longer rendered (emoji removed). */
.product-crosslink-icon {
  display: none;
}

/* ── Product description ─────────────────────────────────────────────────── */
section.product-desc-section {
  background: var(--white);
  padding: 0;
}

.product-desc-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 52px;
}

.product-desc-intro {
  margin-bottom: 28px;
}

.product-desc-intro p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--warm-espresso);
  margin-bottom: 14px;
}

/* Two-column grid for WAT ZIT ERIN / PERFECT VOOR etc. */
.product-desc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0 48px;
}

.product-desc-col {
  padding-top: 20px;
  border-top: 2px solid var(--blush-creme);
  margin-top: 0;
}

.product-desc-col h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--vintage-rose);
  margin-bottom: 14px;
}

.product-desc-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-desc-col ul li {
  padding: 9px 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--warm-espresso);
  border-bottom: 1px solid rgba(196, 114, 122, 0.12);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.product-desc-col ul li::before {
  content: '—';
  color: var(--dusty-mauve);
  font-size: 13px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-gallery-main {
    aspect-ratio: 1 / 1;
  }

  .gallery-thumb {
    width: 52px;
    height: 52px;
  }

  /* Carousel-pijltjes zijn op mobile redundant — gebruikers kunnen swipen */
  .gallery-arrow,
  .gallery-zoom-arrow { display: none; }

  .product-desc-inner {
    padding: 36px 20px 48px;
  }

  .product-desc-grid {
    gap: 0 28px;
  }

  .product-info {
    padding: 28px 20px;
  }

  .product-desc-section {
    padding: 40px 0;
  }

  .product-desc-grid {
    gap: 32px;
  }
}
