/*
Theme Name: Woodtastic
Theme URI: https://www.woodtastic.nl
Author: ForestTree.nl
Author URI: https://www.foresttree.nl
Description: Custom WordPress thema voor Woodtastic Meubelboerderij Borger. Sfeervolle meubelen, persoonlijk interieuradvies en handgemaakte tuinmeubelen.
Version: 1.0.0
Requires at least: 5.6
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: woodtastic
*/

/* ============================================
   WOODTASTIC.NL — Meubelboerderij Borger
   Warm, sfeervol design met organische vormen
   ============================================ */

/* --- CSS Variables --- */
:root {
  --beige: #f5ebe0;
  --beige-dark: #e8ddd2;
  --beige-light: #faf6f1;
  --bronze: #a67c52;
  --bronze-hover: #8f6a44;
  --bronze-light: #c9a87c;
  --bronze-glow: rgba(166,124,82,0.15);
  --black: #2c2420;
  --dark: #3d342e;
  --text: #5c524a;
  --text-light: #8a7f76;
  --white: #ffffff;
  --white-warm: #fffdf9;
  --green-whatsapp: #25d366;
  --green-whatsapp-hover: #1da851;
  --shadow-soft: 0 4px 30px rgba(44,36,32,0.06);
  --shadow-hover: 0 12px 40px rgba(44,36,32,0.12);
  --shadow-card: 0 2px 16px rgba(44,36,32,0.05);
  --radius-sm: 6px;
  --radius-card: 8px;
  --radius-pill: 50px;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --section-width: 90%;
  --max-width: 1340px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--beige);
  overflow-x: clip;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
}

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.4rem); }

p {
  margin-bottom: 1rem;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
}

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* --- Layout --- */
.container {
  width: var(--section-width);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section { padding: 5rem 0; }

.section-floating {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.hero-arch::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--beige);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
}

.section-slant { position: relative; }
.section-slant::before {
  content: '';
  position: absolute;
  top: -39px;
  left: 0;
  right: 0;
  height: 40px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

.section-wave-top { position: relative; }
.section-wave-top::before {
  content: '';
  position: absolute;
  top: -29px;
  left: 0;
  right: 0;
  height: 30px;
  background: inherit;
  clip-path: path('M0,30 C320,0 640,30 960,5 C1120,-5 1280,10 1440,0 L1440,30 Z');
  z-index: 2;
}

.section-arch-bottom::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--beige);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
}

.section-white { background: var(--white-warm); }
.section-bronze { background: var(--bronze); }
.section-dark { background: var(--black); color: var(--white); }

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.col-2 { flex: 1 1 calc(50% - 1rem); min-width: 300px; }
.col-3 { flex: 1 1 calc(33.333% - 1.5rem); min-width: 280px; }
.col-4 { flex: 1 1 calc(25% - 1.5rem); min-width: 250px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn:hover { transform: scale(1.03) translateY(-3px); }

.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--dark); box-shadow: var(--shadow-hover); }

.btn-gold { background: var(--bronze); color: var(--white); }
.btn-gold:hover { background: var(--bronze-hover); box-shadow: var(--shadow-hover); }

.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-whatsapp { background: var(--green-whatsapp); color: var(--white); font-weight: 500; }
.btn-whatsapp:hover { background: var(--green-whatsapp-hover); box-shadow: var(--shadow-hover); }

.btn i, .btn svg { width: 18px; height: 18px; }

/* --- Top Bar --- */
.topbar {
  background: var(--white-warm);
  border-bottom: 1px solid var(--beige-dark);
  padding: 0.6rem 0;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

.topbar-inner {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-item i { color: var(--bronze); font-size: 0.85rem; }

/* --- Header / Navigation --- */
.header {
  background: var(--white-warm);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  width: var(--section-width);
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo img { height: 50px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--dark);
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--bronze);
  color: var(--white);
}

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-hover);
  padding: 0.8rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  border-radius: 0;
}

.nav-dropdown-menu a:hover {
  background: var(--beige);
  color: var(--black);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(5px) translateX(5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-5px) translateX(5px); }

/* --- Hero Section --- */
.hero {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  background-color: var(--bronze);
  background-size: cover;
  background-position: center;
  padding-bottom: 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,36,32,0.85) 0%, rgba(44,36,32,0.55) 35%, rgba(44,36,32,0.2) 65%, transparent 100%);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
}

.hero h1 em {
  font-style: normal;
  color: var(--bronze-light);
  text-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.8;
}

/* --- USP Bar --- */
.usp-bar {
  width: var(--section-width);
  max-width: var(--max-width);
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-hover) 100%);
  border-radius: var(--radius-card);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
}

.usp-item i { font-size: 1.3rem; opacity: 0.9; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img { transform: scale(1.05); }

.card-image.card-image-contain {
  background: var(--beige-light);
  padding: 1rem;
  aspect-ratio: 3/2;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.card-image.card-image-contain img {
  object-fit: contain;
  border-radius: var(--radius-card);
}

.card:hover .card-image-contain img { transform: scale(1.03); }

.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.4rem; }
.card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.8rem; }

.card-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--bronze);
}

.card-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bronze);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  font-family: var(--font-heading);
}

/* --- Category Grid --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img { transform: scale(1.06); }

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,36,32,0.7) 0%, rgba(44,36,32,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: var(--transition-slow);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(44,36,32,0.8) 0%, rgba(44,36,32,0.2) 60%, transparent 100%);
}

.category-card h3 { color: var(--white); font-size: 1.3rem; }

.category-card h3::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--bronze-light);
  margin-top: 0.4rem;
  transition: width 0.4s ease;
}

.category-card:hover h3::after { width: 40px; }

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p { color: var(--text-light); margin-top: 0.8rem; }

.section-header .subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--bronze);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--bronze-light);
  margin: 0.8rem auto 0;
}

.section-header.text-left h2::after { margin-left: 0; }

/* --- Image with organic shape --- */
.img-organic { border-radius: var(--radius-card); overflow: hidden; }
.img-organic-sm { border-radius: var(--radius-sm); overflow: hidden; }
.img-organic img { width: 100%; height: 100%; object-fit: cover; }

/* --- Two Column Content Block --- */
.content-block {
  width: var(--section-width);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 0;
}

.content-block .row { gap: 4rem; }
.content-block .text-col { display: flex; flex-direction: column; justify-content: center; }
.content-block .text-col h2 { margin-bottom: 1rem; }
.content-block .text-col p { color: var(--text); line-height: 1.8; }

.content-block .image-col {
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 400px;
}

.content-block .image-col img { width: 100%; height: 100%; object-fit: cover; }

/* --- Brands / Merken --- */
.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2rem 0;
}

.brands-row img {
  height: 50px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: var(--transition-slow);
}

.brands-row img:hover {
  opacity: 1;
  filter: grayscale(0%) drop-shadow(0 2px 8px rgba(166,124,82,0.2));
}

/* --- Reviews --- */
.review-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border-left: 3px solid var(--bronze-light);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 0.8rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--bronze-light);
  opacity: 0.3;
  line-height: 1;
}

.review-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.review-stars i { color: var(--bronze); font-size: 1.1rem; }

.review-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.review-author {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Contact Info Block --- */
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }

.contact-info-item i {
  color: var(--bronze);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  margin-top: 3rem;
  border-top: 3px solid var(--bronze);
}

.footer-main {
  width: var(--section-width);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.2rem; font-weight: 500; }
.footer p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.6); }
.footer a { color: rgba(255,255,255,0.6); font-size: 0.88rem; display: block; padding: 0.25rem 0; }
.footer a:hover { color: var(--bronze-light); }

.footer-logo img {
  height: 40px;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
}

.footer-social { display: flex; gap: 0.8rem; margin-top: 1rem; }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  padding: 0;
}

.footer-social a:hover { background: var(--bronze); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  width: var(--section-width);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--bronze-light); }

.footer-legal { display: flex; gap: 1.5rem; }

/* --- WhatsApp Float Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--green-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- Sfeerbeeld --- */
.sfeerbeeld {
  width: 100%;
  height: 45vh;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.sfeerbeeld-short { height: 30vh; min-height: 240px; }

@supports (-webkit-touch-callout: none) {
  .sfeerbeeld { background-attachment: scroll; }
}

.sfeerbeeld-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,36,32,0.6) 0%, rgba(44,36,32,0.15) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 6%;
}

.sfeerbeeld-overlay.center {
  background: rgba(44,36,32,0.35);
  justify-content: center;
  text-align: center;
}

.sfeerbeeld-quote { max-width: 480px; }

.sfeerbeeld-quote h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.sfeerbeeld-quote p {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
}

.sfeerbeeld-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 0; width: 100%; }

.sfeerbeeld-duo-item {
  height: 40vh;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.sfeerbeeld-duo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sfeerbeeld-duo-item:hover img { transform: scale(1.03); }

/* --- Zoom Parallax --- */
.zoom-parallax-wrapper { height: 300vh; position: relative; }

.zoom-parallax-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--beige);
}

.zp-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transform-origin: center center;
}

.zp-photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.zp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.zp-layer:nth-child(1) .zp-photo { width: 30vw; height: 30vh; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; }
.zp-layer:nth-child(2) .zp-photo { width: 30vw; height: 24vh; top: 18%; left: 12%; }
.zp-layer:nth-child(3) .zp-photo { width: 20vw; height: 34vh; top: 12%; right: 15%; left: auto; }
.zp-layer:nth-child(4) .zp-photo { width: 24vw; height: 22vh; top: 48%; right: 12%; left: auto; }
.zp-layer:nth-child(5) .zp-photo { width: 22vw; height: 22vh; bottom: 16%; left: 14%; top: auto; }
.zp-layer:nth-child(6) .zp-photo { width: 26vw; height: 20vh; bottom: 14%; left: 40%; top: auto; }
.zp-layer:nth-child(7) .zp-photo { width: 16vw; height: 16vh; bottom: 12%; right: 10%; left: auto; top: auto; }

/* --- Opening Hours --- */
.hours-table { width: 100%; font-size: 0.9rem; }
.hours-table tr td { padding: 0.3rem 0; }
.hours-table tr td:first-child { font-weight: 500; color: var(--black); width: 50%; }

/* --- Form Styles --- */
.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--beige-dark);
  border-radius: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px var(--bronze-glow);
}

.form-group textarea { min-height: 140px; resize: vertical; }

/* --- WordPress specifiek --- */
.subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--bronze);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

/* Screen reader text (WP accessibility) */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--white);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: var(--black);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 60vh; padding: 3rem; padding-bottom: 5rem; }
  .hero-arch::after, .section-arch-bottom::after { height: 30px; }
  .section-slant::before { height: 30px; top: -29px; }
  .section-wave-top::before { height: 20px; top: -19px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 1.1rem; padding: 0.9rem 1rem; border-radius: 0.8rem; }
  .hamburger { display: flex; }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .hero { min-height: 55vh; padding: 2rem; padding-bottom: 4rem; border-radius: 0; margin: 0 auto; }
  .hero h1 { font-size: 2rem; }
  .hero-arch::after, .section-arch-bottom::after { height: 20px; }
  .section-slant::before { height: 20px; top: -19px; }
  .section-wave-top::before { height: 15px; top: -14px; }

  .usp-bar { flex-direction: column; gap: 0.8rem; padding: 1.5rem 2rem; align-items: flex-start; }
  .row { flex-direction: column; }
  .col-2, .col-3, .col-4 { flex: 1 1 100%; min-width: 100%; }
  .category-grid { grid-template-columns: 1fr; }
  .content-block .row { gap: 2rem; }
  .content-block .image-col { min-height: 300px; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }
  .whatsapp-float { bottom: 1.5rem; right: 1.5rem; width: 55px; height: 55px; }
  .topbar-inner { gap: 1rem; font-size: 0.72rem; }

  .sfeerbeeld { height: 35vh; min-height: 250px; background-attachment: scroll; }
  .sfeerbeeld-short { height: 25vh; min-height: 200px; }
  .sfeerbeeld-duo { grid-template-columns: 1fr; }
  .sfeerbeeld-duo-item { height: 30vh; }

  .zoom-parallax-wrapper { height: 200vh; }
  .zp-layer:nth-child(1) .zp-photo { width: 60vw; height: 30vh; }
  .zp-layer:nth-child(2) .zp-photo { width: 48vw; height: 22vh; top: 15%; left: 5%; }
  .zp-layer:nth-child(3) .zp-photo { width: 40vw; height: 26vh; top: 10%; right: 5%; }
  .zp-layer:nth-child(4) .zp-photo { width: 42vw; height: 20vh; right: 5%; }
  .zp-layer:nth-child(5) .zp-photo { width: 40vw; height: 20vh; left: 5%; }
  .zp-layer:nth-child(6) .zp-photo { width: 44vw; height: 18vh; }
  .zp-layer:nth-child(7) .zp-photo { width: 30vw; height: 14vh; right: 5%; }
}

@media (max-width: 480px) {
  .hero { min-height: 55vh; padding: 1.5rem; }
  .hero h1 { font-size: 1.7rem; }
  .btn { padding: 0.8rem 1.6rem; font-size: 0.88rem; }
  .topbar-inner { flex-direction: column; gap: 0.3rem; align-items: center; }
}

/* --- Blog / Artikelen --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card .card-image {
  aspect-ratio: 16/10;
}

.blog-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card .card-body p {
  flex: 1;
}

.blog-category {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bronze);
  background: var(--bronze-glow);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}

.blog-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.blog-meta i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

/* Artikel content (single post) */
.article-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
}

.article-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.article-content p {
  margin-bottom: 1.2rem;
}

.article-content img {
  border-radius: var(--radius-card);
  margin: 1.5rem 0;
}

.article-content blockquote {
  border-left: 3px solid var(--bronze-light);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--beige-light);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--dark);
}

.article-content ul, .article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content a {
  color: var(--bronze);
  text-decoration: underline;
  text-decoration-color: var(--bronze-glow);
  text-underline-offset: 2px;
}

.article-content a:hover {
  color: var(--bronze-hover);
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.article-tag {
  font-size: 0.82rem;
  padding: 0.3rem 0.8rem;
  background: var(--beige-light);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-pill);
  color: var(--text);
}

.article-tag:hover {
  background: var(--bronze-glow);
  border-color: var(--bronze-light);
  color: var(--bronze);
}

/* Share buttons */
.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--beige-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  border: 1px solid var(--beige-dark);
}

.share-btn:hover {
  background: var(--bronze);
  color: var(--white);
  border-color: var(--bronze);
}

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

/* --- Overlay for mobile menu --- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 999;
}

.nav-overlay.active { display: block; }
/* ===== Stoffen page styles ===== */
    .hero-stoffen {
      min-height: 40vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      background-size: cover;
      background-position: center;
    }
    .hero-stoffen::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(44,36,32,0.55) 0%, rgba(44,36,32,0.7) 100%);
    }
    .hero-stoffen .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      padding: 2rem;
    }
    .hero-stoffen h1 {
      color: var(--white);
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: 1rem;
    }
    .hero-stoffen p {
      color: rgba(255,255,255,0.9);
      font-size: 1.15rem;
    }

    /* Stofgroep sections */
    .stofgroep-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
      padding-bottom: 0.75rem;
      border-bottom: 2px solid var(--bronze-light, #c9a96e);
    }
    .stofgroep-header h2 {
      margin: 0;
      font-size: 1.6rem;
    }
    .stofgroep-header .stofgroep-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--bronze, #a67c52);
      color: var(--white, #fff);
      font-family: 'DM Serif Display', serif;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    /* Fabric cards */
    .fabric-card {
      background: var(--white, #fff);
      border-radius: 8px;
      padding: 1.5rem;
      margin-bottom: 1rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.06);
    }
    .fabric-card h4 {
      font-family: var(--font-heading, 'DM Serif Display', serif);
      margin-bottom: 1rem;
      font-size: 1.15rem;
      color: var(--dark, #2c2420);
    }
    .fabric-card h4 .treated-badge {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      background: #e8f5e9;
      color: #388e3c;
      padding: 2px 8px;
      border-radius: 20px;
      margin-left: 0.5rem;
      vertical-align: middle;
    }

    /* Swatch grid */
    .swatch-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .swatch-item {
      cursor: pointer;
      text-align: center;
      width: 70px;
    }
    .swatch-thumb {
      width: 60px;
      height: 60px;
      border-radius: 6px;
      object-fit: cover;
      border: 2px solid transparent;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .swatch-thumb:hover {
      border-color: var(--bronze, #a67c52);
      box-shadow: 0 2px 8px rgba(166,124,82,0.3);
    }
    .swatch-name {
      font-size: 0.65rem;
      color: var(--text-light, #7a7069);
      margin-top: 4px;
      line-height: 1.2;
    }

    /* Lightbox */
    .lightbox-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
    }
    .lightbox-overlay.active {
      display: flex;
    }
    .lightbox-content {
      max-width: 600px;
      max-height: 80vh;
      position: relative;
    }
    .lightbox-content img {
      max-width: 100%;
      max-height: 70vh;
      border-radius: 8px;
      display: block;
    }
    .lightbox-close {
      position: absolute;
      top: -40px;
      right: 0;
      color: white;
      cursor: pointer;
      font-size: 1.5rem;
      background: none;
      border: none;
      padding: 4px 8px;
    }
    .lightbox-close:hover {
      opacity: 0.8;
    }
    .lightbox-caption {
      color: white;
      text-align: center;
      margin-top: 1rem;
      font-family: var(--font-heading, 'DM Serif Display', serif);
      font-size: 1.05rem;
    }
    .lightbox-caption span {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      opacity: 0.7;
      margin-top: 0.25rem;
    }

    /* Intro block */
    .stoffen-intro {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    .stoffen-intro p {
      font-size: 1.05rem;
      line-height: 1.7;
    }
    .stoffen-legend {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1rem;
      font-size: 0.9rem;
      color: var(--text-light, #7a7069);
      background: #f5f0eb;
      padding: 0.5rem 1.2rem;
      border-radius: 8px;
    }
    .stoffen-legend i {
      color: #388e3c;
    }

    /* Note section */
    .note-box {
      background: #fff8f0;
      border-left: 4px solid var(--bronze, #a67c52);
      padding: 1.25rem 1.5rem;
      border-radius: 0 var(--radius-card, 12px) var(--radius-card, 12px) 0;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--text, #4a3f38);
    }
    .note-box strong {
      color: var(--dark, #2c2420);
    }

    /* Care section */
    .care-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    .care-item {
      text-align: center;
      padding: 2rem 1.5rem;
      background: var(--white, #fff);
      border-radius: var(--radius-card, 12px);
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .care-item i {
      font-size: 2rem;
      color: var(--bronze, #a67c52);
      margin-bottom: 1rem;
      display: block;
    }
    .care-item h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
    .care-item p {
      font-size: 0.92rem;
      color: var(--text-light, #7a7069);
    }

    /* Back link */
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500;
      color: var(--bronze, #a67c52);
      text-decoration: none;
      transition: color 0.2s;
    }
    .back-link:hover {
      color: var(--dark, #2c2420);
    }

    @media (max-width: 600px) {
      .swatch-item {
        width: 58px;
      }
      .swatch-thumb {
        width: 50px;
        height: 50px;
      }
      .swatch-name {
        font-size: 0.6rem;
      }
      .care-grid {
        grid-template-columns: 1fr;
      }
    }

/* Lampen page specific styles */
    .lamp-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    @media (max-width: 768px) {
      .lamp-gallery {
        grid-template-columns: 1fr;
      }
    }
    .lamp-gallery-card {
      border-radius: var(--radius-card, 12px);
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      background: var(--white, #fff);
    }
    .lamp-gallery-card img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .lamp-gallery-card:hover img {
      transform: scale(1.04);
    }
    .lamp-gallery-card .lamp-caption {
      padding: 1.2rem 1.5rem;
    }
    .lamp-gallery-card .lamp-caption h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.15rem;
      margin: 0 0 0.3rem;
      color: var(--text-dark, #2C2420);
    }
    .lamp-gallery-card .lamp-caption p {
      font-size: 0.95rem;
      color: var(--text-muted, #6b5e54);
      margin: 0;
    }

    .steps-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2.5rem;
    }
    @media (max-width: 768px) {
      .steps-row {
        grid-template-columns: 1fr;
      }
    }
    .step-card {
      text-align: center;
      padding: 2.5rem 2rem;
      background: var(--white, #fff);
      border-radius: var(--radius-card, 12px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--bronze, #A0744F);
      color: var(--white, #fff);
      font-family: 'DM Serif Display', serif;
      font-size: 1.4rem;
      margin-bottom: 1.2rem;
    }
    .step-card h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.2rem;
      margin-bottom: 0.6rem;
      color: var(--text-dark, #2C2420);
    }
    .step-card p {
      font-size: 0.95rem;
      color: var(--text-muted, #6b5e54);
      line-height: 1.6;
    }

    .brand-block {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      max-width: 800px;
      margin: 0 auto;
    }
    .brand-block i {
      font-size: 3rem;
      color: var(--bronze, #A0744F);
      flex-shrink: 0;
    }
    @media (max-width: 600px) {
      .brand-block {
        flex-direction: column;
        text-align: center;
      }
    }
