/* Total Tent — gedeelde stijl, gebaseerd op het website-ontwerp */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --accent: #caa24d;
  --dark: #0d0d0c;
  --bg: #f7f3ec;
  --ink: #1a1a18;
  --muted: #5c584d;
  --muted2: #8a857a;
  --border: #eee6d6;
  --white: #ffffff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--ink);
}
a { color: var(--accent); text-decoration: none; }
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 500; margin: 0; }
img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* Header */
header.site-header {
  background: var(--dark);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  /* Blijft bovenin zichtbaar tijdens het scrollen, zodat logo, menu en winkelwagen
     altijd binnen handbereik blijven. */
  position: sticky;
  top: 0;
  z-index: 100;
}
header.site-header .logo { display: flex; align-items: center; }
header.site-header .logo img { height: 84px; width: auto; display: block; }
header.site-header nav { display: flex; gap: 26px; flex-wrap: wrap; }
header.site-header nav a { color: #f5f2ea; font-size: 14px; font-weight: 500; }
header.site-header nav a:hover, header.site-header nav a.active { color: var(--accent); }
header.site-header .right { display: flex; align-items: center; gap: 20px; }
header.site-header .cart-link { position: relative; }
header.site-header .cart-badge {
  background: var(--dark); color: var(--white); font-size: 11px; font-weight: 800;
  border-radius: 50%; width: 18px; height: 18px; display: inline-flex; align-items: center;
  justify-content: center; margin-left: 4px;
}

/* Hamburgerknop voor het mobiele menu — op desktop onzichtbaar, de navigatie staat daar
   gewoon in de header. Als duidelijk herkenbare knop gemaakt (rand + label "Menu"/"Sluit")
   in plaats van alleen drie kale streepjes. Zie ook de nav-toggle/#site-nav-logica in base.html. */
header.site-header .nav-toggle {
  display: none; align-items: center; gap: 9px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.35); border-radius: 20px;
  background: rgba(255,255,255,.06); cursor: pointer;
  padding: 7px 14px 7px 11px;
  transition: background .15s ease, border-color .15s ease;
}
header.site-header .nav-toggle:hover,
header.site-header .nav-toggle.open {
  background: var(--accent); border-color: var(--accent);
}
header.site-header .nav-toggle-bars {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 18px; height: 16px; flex-shrink: 0;
}
header.site-header .nav-toggle-bars span {
  display: block; width: 18px; height: 2px; background: #f5f2ea; border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease, background .15s ease;
}
header.site-header .nav-toggle.open .nav-toggle-bars span { background: var(--dark); }
header.site-header .nav-toggle.open .nav-toggle-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
header.site-header .nav-toggle.open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
header.site-header .nav-toggle.open .nav-toggle-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
header.site-header .nav-toggle-label {
  color: #f5f2ea; font-size: 13px; font-weight: 700; letter-spacing: .02em;
  transition: color .15s ease;
}
header.site-header .nav-toggle.open .nav-toggle-label { color: var(--dark); }

@media (max-width: 800px) {
  header.site-header { padding: 12px 20px; }
  header.site-header .nav-toggle { display: flex; order: 1; }
  header.site-header .right { order: 2; margin-left: auto; }
  header.site-header nav {
    display: none; order: 3; width: 100%; flex-direction: column; gap: 0;
    margin-top: 8px; border-top: 1px solid rgba(255,255,255,.12);
  }
  header.site-header nav.open { display: flex; }
  header.site-header nav a {
    padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.08);
  }
}

/* Taalknop (vertaling naar Engels via Google Translate, zie base.html) */
header.site-header .lang-switch {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: transparent; cursor: pointer; padding: 0; overflow: hidden; flex-shrink: 0;
}
header.site-header .lang-switch:hover { border-color: var(--accent); }
header.site-header .lang-switch svg { width: 20px; height: 14px; border-radius: 2px; display: block; }

/* Verberg de standaard Google Translate-balk/widget en herstel de ruimte die hij anders
   bovenaan de pagina inneemt, zodat alleen onze eigen vlagknop zichtbaar is. */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0 !important; }
#google_translate_element { display: none !important; }
.goog-te-gadget-icon { display: none !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* Buttons */
.btn {
  display: inline-block; background: var(--accent); color: var(--dark); font-weight: 700;
  font-size: 13px; padding: 11px 20px; border-radius: 2px; border: none; cursor: pointer;
  text-align: center;
}
.btn:hover { filter: brightness(1.07); }
.btn-outline { background: transparent; border: 1px solid var(--dark); color: var(--dark); }
.btn-secondary { background: #eee6d6; color: var(--ink); }
.btn-danger { background: #a63244; color: #fff; }

/* Hero */
.hero { position: relative; background: var(--dark); color: var(--white); height: 480px; overflow: hidden; display: flex; align-items: center; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,13,12,0.90) 0%, rgba(13,13,12,0.55) 45%, rgba(13,13,12,0.12) 100%); }
.hero-content { position: relative; z-index: 1; padding: 0 64px; }
.hero-content h1 { font-size: 44px; color: var(--white); max-width: 620px; }
.hero-content p { font-size: 16px; margin-top: 12px; color: #e8e4d8; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.btn-outline-light { background: transparent; border: 1px solid #8a8574; color: #f5f2ea; }
.btn-outline-light:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 800px) {
  /* Koptekst boven de lichtjesslinger op de herofoto (in de lucht, waar hij goed leesbaar
     is), knop en tagline blijven onderin. Zie .hero-bottom in index.html. */
  .hero { height: 460px; align-items: stretch; }
  .hero-content {
    height: 100%;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 54px 24px 30px;
  }
  .hero-content h1 { font-size: 30px; margin: 0; }
  .hero-bottom .hero-actions { margin-top: 0; }
}

/* Reusable section header (eyebrow + title + optional link) */
.home-section { padding: 36px 0; scroll-margin-top: 20px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 26px; }
.section-eyebrow { color: var(--accent); letter-spacing: 3px; font-size: 12px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.section-head h2 { font-size: 28px; margin: 0 0 10px; }
.section-head .lead { font-size: 14px; line-height: 1.7; color: var(--muted); max-width: 640px; }
.section-link { font-size: 14px; font-weight: 700; white-space: nowrap; }

/* USP strip */
.usp-strip { background: var(--white); padding: 48px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 32px; }
.usp-item { display: flex; flex-direction: column; gap: 12px; }
.usp-title { font-weight: 700; font-size: 15px; }
.usp-desc { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* Trusted by */
.trusted-strip { background: var(--white); padding: 44px 0 56px; text-align: center; }
.trusted-label { color: var(--muted2); letter-spacing: 2px; font-size: 12px; font-weight: 600; margin-bottom: 26px; text-transform: uppercase; }
.trusted-logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 24px; }
.trusted-logos .logo-box { height: 100px; display: flex; align-items: center; justify-content: center; padding: 0 26px; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; }
.trusted-logos img { height: 74px; width: auto; object-fit: contain; }

/* Klikbare kleurenwaaier (product_detail.html, alleen stretchtenten) — zie _kleuren_swatch.html */
.color-option { display: flex; flex-direction: column; align-items: center; gap: 7px; cursor: pointer; text-align: center; }
.color-option input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; clip: rect(0,0,0,0); }
.color-swatch {
  display: block; width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,.12);
  transition: border-color .15s ease, transform .15s ease;
}
.color-option input:checked + .color-swatch { border-color: var(--accent); transform: scale(1.1); }
.color-option input:focus-visible + .color-swatch { outline: 2px solid var(--accent); outline-offset: 2px; }
.color-option-label { font-size: 11.5px; color: var(--muted); }

/* Portfolio preview on home */
.portfolio-preview-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.portfolio-preview-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: 2px; transition: transform .25s ease; }
.portfolio-preview-grid a:hover img { transform: scale(1.03); }

/* Fabric quality section on home */
.fabric-layers { margin-top: 36px; }
.fabric-gallery { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; margin-top: 44px; }
.fabric-photo { height: 220px; }
.fabric-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Service banner */
.service-banner { background: var(--dark); padding: 56px 0; }
.service-banner .inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.service-banner h2 { color: var(--white); font-size: 30px; margin: 0 0 10px; }
.service-banner p { color: #b8b2a4; font-size: 15px; line-height: 1.7; margin: 0; max-width: 560px; }

/* Reviews */
.reviews-section { background: #f0ebe0; padding: 72px 0; text-align: center; }
.reviews-section h2 { font-size: 30px; margin: 0 0 16px; }
.stars-row { display: flex; justify-content: center; gap: 5px; margin-bottom: 16px; }
.reviews-intro { max-width: 480px; margin: 0 auto 26px; font-size: 15px; line-height: 1.7; color: var(--muted); }
.reviews-social-proof { color: var(--accent); letter-spacing: 2px; font-size: 12px; font-weight: 700; margin: 52px 0 24px; text-transform: uppercase; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; text-align: left; }
.review-card { background: var(--white); border-radius: 2px; padding: 22px; box-shadow: 0 2px 14px rgba(0,0,0,0.06); display: flex; flex-direction: column; }
.review-card .stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-card p { font-size: 13.5px; line-height: 1.7; color: #3a382f; margin: 0 0 16px; flex: 1; }
.review-card .name { font-size: 13px; font-weight: 700; }
.review-card .meta { font-size: 12px; color: var(--muted2); }

@media (max-width: 900px) {
  .usp-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .portfolio-preview-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .fabric-gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .service-banner .inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 640px) {
  /* Op mobiel de volledige foto tonen i.p.v. de vaste 260px-hoogte croppen: laat de
     afbeelding gewoon haar eigen (hoogte-)verhouding houden op de beschikbare breedte. */
  .portfolio-preview-grid img { height: auto; object-fit: contain; }
}

/* Category cards on home */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.cat-card { background: var(--white); border-radius: 2px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform .2s ease, box-shadow .2s ease; }
.cat-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(0,0,0,0.10); }
.cat-card img { width: 100%; height: 180px; object-fit: cover; }
.cat-card .body { padding: 18px 20px; }
.cat-card .body .name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.cat-card .body .from { font-size: 13px; color: var(--muted); }

/* Categoriefoto bovenaan een categoriepagina (bijv. /shop/zijwanden). Vaste, beperkte
   hoogte met object-fit:cover zodat de banner niet torenhoog wordt bij een foto met een
   staand of vierkant formaat — de bovenkant/onderkant van de foto mag daarbij wegvallen. */
.category-hero { margin-top: 20px; border-radius: 4px; overflow: hidden; max-height: 440px; }
.category-hero img { width: 100%; height: 440px; object-fit: cover; object-position: center; display: block; }
@media (max-width: 800px) {
  .category-hero, .category-hero img { height: 280px; max-height: 280px; }
}

/* Breadcrumb + page title */
.breadcrumb { padding: 22px 0 0; font-size: 13px; color: var(--muted2); }
.breadcrumb a { color: var(--muted2); }
.page-title { padding: 12px 0 24px; }
.page-title h1 { font-size: 34px; margin-bottom: 6px; }
.page-title .count { font-size: 13.5px; color: var(--muted); margin-bottom: 10px; }
.page-title .desc { font-size: 14px; line-height: 1.7; color: var(--muted); max-width: 700px; }
.page-title .count-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 10px; }
.page-title .count-row .count { margin-bottom: 0; }

/* Rich text (supports "## " subheadings, "- " bullets, **bold** and *italic*) —
   used for category intros and, on shop/product pages, product descriptions/notes */
.rich-desc { max-width: 780px; }
.rich-desc p { margin: 0 0 10px; }
.rich-desc p:last-child { margin-bottom: 0; }
.rich-desc strong { font-weight: 700; }
.rich-desc em { font-style: italic; }
.rich-desc h3 {
  font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700;
  color: var(--ink); margin: 18px 0 8px;
}
.rich-desc h3:first-child { margin-top: 4px; }
.rich-desc ul { list-style: none; margin: 4px 0 14px; padding: 0; display: grid; gap: 7px; }
.rich-desc li { position: relative; padding-left: 26px; }
.rich-desc li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--accent);
}
/* Regels die al met een ✔/✓ beginnen hebben zelf al een merkteken — geen extra bullet */
.rich-desc li.checkmark { padding-left: 0; }
.rich-desc li.checkmark::before { content: none; }
/* Compact variant inside product cards / notes, where space is tight */
.prod-card .desc.rich-desc p, .note.rich-desc p { margin: 0 0 6px; }
.prod-card .desc.rich-desc p:last-child, .note.rich-desc p:last-child { margin-bottom: 0; }
.prod-card .desc.rich-desc h3 { font-size: 14px; margin: 10px 0 4px; }
.prod-card .desc.rich-desc ul { margin: 2px 0 8px; gap: 4px; }

/* BTW price toggle */
.vat-toggle { display: inline-flex; background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 3px; gap: 2px; }
.vat-toggle button { border: none; background: transparent; font-family: 'Montserrat', sans-serif; font-size: 11.5px; font-weight: 700; padding: 6px 14px; border-radius: 16px; cursor: pointer; color: var(--muted2); transition: background .15s ease, color .15s ease; }
.vat-toggle button.active { background: var(--dark); color: var(--white); }
.vat-tag { font-size: 10.5px; font-weight: 600; color: var(--muted2); text-align: right; margin-top: 2px; }
.mini-cart-price-wrap { text-align: right; }

/* Shop "waarom kiezen" strip */
.shop-usp { padding: 8px 0 40px; }
.shop-usp-grid { gap: 26px; }

/* Shop layout */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; padding-bottom: 96px; align-items: start; }
.shop-layout.no-sidebar { grid-template-columns: 1fr; }
.shop-sidebar { background: var(--white); border-radius: 2px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); position: sticky; top: 20px; }
.shop-sidebar h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 12px; }
.shop-sidebar a:not(.btn) { display: block; padding: 7px 0; font-size: 14px; color: var(--ink); }
.shop-sidebar a.active, .shop-sidebar a:not(.btn):hover { color: var(--accent); font-weight: 700; }

/* Mini cart in shop sidebar */
.mini-cart { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.mini-cart-item { display: flex; gap: 10px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.mini-cart-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.mini-cart-info { flex: 1; min-width: 0; }
.mini-cart-name { font-size: 12.5px; font-weight: 600; }
.mini-cart-qty { font-size: 11.5px; color: var(--muted2); }
.mini-cart-price { font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.mini-cart-total { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 800; padding-bottom: 14px; margin-bottom: 12px; border-bottom: 1px solid var(--border); }

.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 26px; }
.prod-card { background: var(--white); border-radius: 2px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform .2s ease, box-shadow .2s ease; }
.prod-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(0,0,0,0.10); }
.prod-card-media { display: block; }
.prod-card img { width: 100%; height: 180px; object-fit: cover; background: #e8e4d8; }
.prod-card .body { padding: 20px; }
.prod-card .name { display: block; font-weight: 700; font-size: 14.5px; margin-bottom: 4px; color: var(--ink); text-decoration: none; }
.prod-card .name:hover { color: var(--accent); }
.prod-card .desc {
  font-size: 12.5px; color: var(--muted); margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.prod-card-more { display: inline-block; font-size: 11.5px; font-weight: 700; color: var(--accent); text-decoration: none; margin-bottom: 12px; }
.prod-card-more:hover { text-decoration: underline; }
.prod-card .row { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.prod-card .price { font-weight: 800; font-size: 14px; }
.prod-card .note { font-size: 11px; color: var(--muted2); margin-top: 8px; }

/* Product detail page */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 24px 0 48px; align-items: start; }
.product-gallery-main { border-radius: 2px; overflow: hidden; background: #e8e4d8; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.product-gallery-main img { width: 100%; height: 480px; object-fit: cover; display: block; }
.product-gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pd-thumb { border: 2px solid transparent; border-radius: 2px; overflow: hidden; padding: 0; cursor: pointer; background: none; width: 72px; height: 72px; flex-shrink: 0; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb.active { border-color: var(--accent); }
.product-info h1 { font-size: 30px; margin-bottom: 4px; }
.product-description { font-size: 14.5px; line-height: 1.85; color: var(--ink); }
.product-bottom-text { border-top: 1px solid var(--border); padding: 32px 0 80px; font-size: 14.5px; line-height: 1.85; color: var(--ink); }
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 24px; padding-bottom: 32px; }
  /* Volledige productfoto tonen i.p.v. bijsnijden — bij bredere afbeeldingen (zoals
     infographics met tekst aan de zijkant) viel anders een deel van de tekst weg. */
  .product-gallery-main img { height: auto; object-fit: contain; }
}

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.cart-table th, .cart-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.cart-table img { width: 56px; height: 56px; object-fit: cover; border-radius: 2px; }
.qty-form { display: inline-flex; align-items: center; gap: 8px; }
.qty-form button { width: 26px; height: 26px; border-radius: 2px; border: 1px solid var(--border); background: var(--white); cursor: pointer; }
.cart-summary { background: var(--white); padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); margin-top: 24px; max-width: 340px; margin-left: auto; }
.cart-summary .total-row { display: flex; justify-content: space-between; font-weight: 800; font-size: 16px; padding: 14px 0; border-top: 1px solid var(--border); margin-top: 10px; }

/* Forms */
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-field input[type=text], .form-field input[type=email], .form-field input[type=tel],
.form-field input[type=password], .form-field input[type=number], .form-field textarea, .form-field select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 2px; font-size: 14px;
  font-family: inherit; background: var(--white); box-sizing: border-box;
}
.form-field textarea { min-height: 90px; }
.form-check { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 16px; }

/* Symmetric two-column row for paired fields (e.g. e-mail + telefoon, postcode + plaats) */
.form-row { display: flex; gap: 16px; }
.form-row .form-field { flex: 1 1 0; min-width: 0; }
@media (max-width: 600px) {
  .form-row { display: block; }
}

/* Flash messages */
.flash { padding: 12px 18px; border-radius: 2px; margin-bottom: 18px; font-size: 14px; }
.flash-success { background: #e7f0e0; color: #3a5a2a; }
.flash-error { background: #f6e2e2; color: #8a2e2e; }

/* Footer */
footer.site-footer { background: var(--dark); color: #cfc9ba; padding: 44px 32px 26px; margin-top: 64px; }
footer.site-footer .cols { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-bottom: 26px; }
footer.site-footer .col h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; }
footer.site-footer .footer-logo { height: 136px; width: auto; margin-bottom: 14px; }
footer.site-footer a.footlink { color: #cfc9ba; display: block; font-size: 13px; padding: 3px 0; }
footer.site-footer a.footlink:hover { color: var(--accent); }
footer.site-footer .bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: #6b6656; border-top: 1px solid #262420; padding-top: 22px; flex-wrap: wrap; gap: 10px; }

.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; color: #fff;
  transition: transform .18s ease, filter .18s ease;
}
.social-icon svg { width: 17px; height: 17px; }
.social-icon:hover { transform: translateY(-2px); filter: brightness(1.08); }
.social-facebook { background: #1877F2; }
.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-tiktok { background: #000; }

/* Admin */
.admin-shell { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-nav { background: var(--dark); color: #f5f2ea; padding: 24px 0; }
.admin-nav .brand { padding: 0 24px 20px; font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); }
.admin-nav a { display: block; padding: 10px 24px; color: #cfc9ba; font-size: 14px; }
.admin-nav a:hover, .admin-nav a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.admin-main { padding: 32px 40px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; margin-bottom: 32px; }
.stat-card { background: var(--white); padding: 20px; border-radius: 2px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.stat-card .num { font-size: 28px; font-weight: 800; }
.stat-card .label { font-size: 13px; color: var(--muted); }
table.admin-table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
table.admin-table th, table.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 13.5px; text-align: left; }
table.admin-table th { color: var(--muted); font-weight: 700; font-size: 12px; text-transform: uppercase; }
.admin-thumb { width: 44px; height: 44px; object-fit: cover; border-radius: 2px; }
.login-shell { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--dark); }
.login-box { background: var(--white); padding: 40px; border-radius: 2px; width: 340px; }
.login-box h1 { font-size: 24px; margin-bottom: 20px; text-align: center; }
.badge { display: inline-block; padding: 3px 9px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-paid { background: #e7f0e0; color: #3a5a2a; }
.badge-open { background: #f6e9cf; color: #8a6a2e; }
.badge-failed, .badge-expired, .badge-canceled { background: #f6e2e2; color: #8a2e2e; }

/* Portfolio */
.pf-tile { position: relative; display: block; overflow: hidden; border-radius: 2px; }
.pf-tile img { transition: transform .4s ease; }
.pf-tile:hover img { transform: scale(1.06); }
.pf-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px; background: linear-gradient(0deg, rgba(10,10,9,0.82) 0%, rgba(10,10,9,0) 100%); color: #f5f2ea; font-size: 13px; font-weight: 700; }
.pf-feature { display: block; height: 380px; margin: 32px 0 24px; }
.pf-feature img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; padding: 0 0 80px; }
.portfolio-grid .pf-tile { height: 260px; }
.portfolio-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: 2px; }
.portfolio-cta { background: var(--dark); padding: 56px 32px; text-align: center; }
.portfolio-cta h2 { font-size: 30px; color: #f5f2ea; margin-bottom: 12px; }
.portfolio-cta p { font-size: 15px; color: #cfc9ba; max-width: 520px; margin: 0 auto 26px; }
.portfolio-cta-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 800px) {
  .shop-layout { grid-template-columns: 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-nav { display: flex; overflow-x: auto; padding: 12px; }
  .admin-nav .brand { display: none; }
  .admin-nav a { padding: 8px 14px; white-space: nowrap; }
  /* Volledige portfoliofoto's tonen i.p.v. de vaste 260px/380px-hoogte croppen */
  .portfolio-grid .pf-tile { height: auto; }
  .portfolio-grid img { height: auto; object-fit: contain; }
  .pf-feature { height: auto; }
  .pf-feature img { height: auto; object-fit: contain; }
}

/* "Over ons"-pagina: foto/tekst-secties naast elkaar, en de stappen-/FAQ-grid */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.about-split.about-split-narrow { grid-template-columns: 0.85fr 1.15fr; }
.about-steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.about-faq { display: grid; grid-template-columns: 1fr 1fr; }

@media (max-width: 800px) {
  /* Op mobiel blijven de vaste fotohoogtes (340/460/320px) anders naast een even smalle
     tekstkolom staan, waardoor de foto's tot dunne, uitgerekte repen worden geknepen —
     laat foto en tekst daarom onder elkaar staan, met een foto die op mobiel formaat past. */
  .about-split, .about-split.about-split-narrow { grid-template-columns: 1fr; gap: 24px; }
  .about-split-media { height: 220px !important; }
  .about-steps { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px 20px; }
  .about-faq { grid-template-columns: 1fr; gap: 28px; }
}
