/* =====================================================
   Hero
===================================================== */
.hero {
  display: flex;
  flex-direction: column;
  min-height: calc(65vh - var(--nav-h));
  background: linear-gradient(
    135deg,
    var(--bg)     50%,
    var(--bg-alt) 50%
  );
}

.hero-gallery-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
}

.hero-gallery-logo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  margin-bottom: 2rem;
}

.hero-gallery-inner .section-label {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hero-gallery-inner > p {
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-gallery-strip {
  height: 8px;
  background: linear-gradient(to right,
    #8A9E90 0% 16.67%,
    #C88820 16.67% 33.33%,
    #D4B458 33.33% 50%,
    #7888A0 50% 66.67%,
    #B06840 66.67% 83.33%,
    #E0C870 83.33% 100%
  );
}

/* =====================================================
   Producten
===================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  container-type: inline-size;
}

.product-card:not(.is-sold):hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  border-color: transparent;
}

.product-card-img-link { display: block; }

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
}

.product-image,
.product-image-real {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.shop-main .products-grid .product-image-wrap {
  aspect-ratio: unset;
}
.shop-main .products-grid .product-image-real,
.shop-main .products-grid .product-image {
  height: auto;
  object-fit: fill;
}

.product-card:not(.is-sold):hover .product-image,
.product-card:not(.is-sold):hover .product-image-real {
  transform: scale(1.04);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.1rem 1.1rem;
  gap: 0.25rem;
}

.product-card-name-link {
  text-decoration: none;
  color: inherit;
}

.product-card-name-link h3 {
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 0.15rem;
  transition: color var(--ease);
}

.product-card-name-link:hover h3 { color: var(--accent); }

.product-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.product-card-pricing {
  margin-top: auto;
  padding-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

.product-price--sold {
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

.product-unavailable {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.products-footer { text-align: center; }

.btn-cart-full .btn-cart-icon { display: none; }

@container (max-width: 160px) {
  .btn-cart-full .btn-cart-icon { display: block; }
  .btn-cart-full .btn-cart-text { display: none; }
}

.product-sold-banner {
  position: absolute;
  top: 1rem;
  left: -2.2rem;
  z-index: 2;
  background: var(--text);
  color: rgba(255,255,255,0.9);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 2.8rem;
  transform: rotate(-45deg);
  pointer-events: none;
}

.product-card.is-sold .product-image,
.product-card.is-sold .product-image-real {
  filter: brightness(1.35) saturate(0.35);
}

/* Legacy: home-pagina productkaarten */
.product-info {
  padding: 1rem 1.1rem 1.1rem;
}

.product-info h3 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
  color: var(--text);
}

/* =====================================================
   Productdetailpagina
===================================================== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.product-detail-info h1 {
  margin-bottom: 0.5rem;
}

.product-detail-sub {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-detail-price .product-price {
  font-size: 1.5rem;
}

.product-detail-btw {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-detail-sold-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.is-sold-price {
  color: var(--text-muted) !important;
  text-decoration: line-through;
  font-weight: 400 !important;
}

.product-detail-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.product-stock-low {
  font-size: 0.8rem;
  color: #92400e;
  margin-top: 0.5rem;
}

.product-stock-out {
  opacity: 0.45;
  cursor: default;
}

.product-detail-back {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
}

/* =====================================================
   Winkelwagen
===================================================== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-info h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.cart-item-info h3 a { color: var(--text); }
.cart-item-info h3 a:hover { color: var(--accent); }

.cart-item-info p {
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cart-item-qty {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cart-item-subtotaal {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--accent);
  min-width: 5rem;
  text-align: right;
}

.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1;
  padding: 0.25rem;
  transition: color var(--ease);
}
.cart-remove-btn:hover { color: var(--text); }

.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.cart-summary .link-arrow {
  margin-top: 1rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.cart-summary-row--muted span { color: var(--text-muted); font-size: 0.85rem; }

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
}

/* =====================================================
   Checkout
===================================================== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.checkout-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 2rem;
}

.checkout-form legend {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  width: 100%;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.checkout-notice {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* =====================================================
   Checkout succes
===================================================== */
.checkout-success {
  max-width: 580px;
}

.checkout-success h1 { margin-bottom: 1rem; }
.checkout-success > p { margin-bottom: 2rem; }

.checkout-success-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 1.5rem;
}

.checkout-success > .btn {
  margin-top: 2rem;
}

/* =====================================================
   Shop - overzichtspagina
===================================================== */
.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.shop-sidebar-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.shop-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.shop-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: background var(--ease), color var(--ease);
}

.shop-sidebar-link:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.shop-sidebar-link.is-active {
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-weight: 500;
}

.shop-sidebar-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
}

.shop-sidebar-link.is-active .shop-sidebar-count {
  background: var(--accent-pale);
}

.shop-sidebar-empty {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  font-style: italic;
}

.shop-filter-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}

.shop-filter-price { display: flex; flex-direction: column; gap: 0.75rem; }

.shop-filter-price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.shop-filter-price-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.shop-filter-price-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--ease);
}

.shop-filter-price-input-wrap:focus-within { border-color: var(--accent); }

.shop-filter-price-symbol {
  padding: 0 0.4rem 0 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.shop-filter-price-input-wrap input {
  border: none;
  background: none;
  padding: 0.45rem 0.5rem 0.45rem 0;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  width: 100%;
  outline: none;
}

.shop-filter-price-input-wrap input::-webkit-outer-spin-button,
.shop-filter-price-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; }

.shop-filter-btn { width: 100%; }

.shop-filter-clear {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--ease);
}
.shop-filter-clear:hover { color: var(--text); }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.shop-toolbar-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.shop-toolbar-sort {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.shop-toolbar-sort select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 0.4rem 2rem 0.4rem 0.7rem;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2378716C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  transition: border-color var(--ease);
}

.shop-toolbar-sort select:focus {
  outline: none;
  border-color: var(--accent);
}

.shop-empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 3rem 0;
}

.shop-empty p { font-size: 1rem; }

/* =====================================================
   Shop - paginering
===================================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.pagination-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pagination-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* =====================================================
   Contactpagina
===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.contact-gegeven {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-sidebar-links ~ .contact-gegeven,
.contact-gegeven:has(+ .contact-sidebar-links),
.contact-gegeven:last-child { border-bottom: none; }

.contact-gegeven-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-gegeven a,
.contact-gegeven span {
  font-size: 0.9rem;
  color: var(--text);
  word-break: break-word;
}

.contact-gegeven a:hover { color: var(--accent); }

.contact-sidebar-links {
  margin-top: 1.25rem;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
}

/* =====================================================
   Over mij pagina
===================================================== */
.over-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.over-portret {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 4px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.over-portret img,
.over-portret svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.over-tekst h1 { margin-bottom: 0.4rem; }

.over-subtitel {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 2rem;
}

.over-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.over-body p { margin-bottom: 1rem; }
.over-body p:last-child { margin-bottom: 0; }

.over-acties {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .over-grid { grid-template-columns: 1fr; }
  .over-portret { position: static; max-width: 320px; }
}

/* =====================================================
   In Opdracht pagina
===================================================== */
.opdracht-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.opdracht-intro-tekst h1 { margin-bottom: 1rem; }
.opdracht-intro-tekst p  { margin-bottom: 1rem; }

.opdracht-intro-afbeelding img {
  width: 100%;
  border-radius: 7px;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.opdracht-stappen-sectie {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.opdracht-stappen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.opdracht-stap { position: relative; }

.opdracht-stap-nr {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.opdracht-stap h3 { margin-bottom: 0.5rem; }

.opdracht-form-wrap { max-width: 680px; }

.opdracht-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.opdracht-sidebar-list {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.opdracht-sidebar-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.opdracht-sidebar-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.opdracht-sidebar-note {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.opdracht-sidebar-note p {
  font-size: 0.82rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .opdracht-intro-grid  { grid-template-columns: 1fr; }
  .opdracht-stappen     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .opdracht-stappen { grid-template-columns: 1fr; }
}

/* =====================================================
   Opdracht (commission) - homepage sectie
===================================================== */
.commission {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.commission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.commission-image-wrap {
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.commission-image-wrap svg,
.commission-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.commission-text h2 { margin-bottom: 1rem; }
.commission-text p  { margin-bottom: 1rem; }
.commission-text p:last-of-type { margin-bottom: 1.75rem; }

/* =====================================================
   Over - homepage sectie
===================================================== */
.about-inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.about-portrait {
  flex-shrink: 0;
  width: clamp(110px, 16vw, 175px);
  height: clamp(110px, 16vw, 175px);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-portrait svg,
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text h2 { margin-bottom: 0.75rem; }
.about-text p  { max-width: 560px; margin-bottom: 1.5rem; }

/* =====================================================
   Instagram
===================================================== */
.instagram {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.instagram-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.instagram-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.instagram-item svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.instagram-item:hover svg { transform: scale(1.05); }

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.instagram-item:hover img { transform: scale(1.05); }

.instagram-footer { text-align: center; }

/* =====================================================
   Mobiele correcties
===================================================== */
@media (max-width: 640px) {
  /* Sorteerbalk: verberg label om ruimte te besparen */
  .shop-toolbar-sort label { display: none; }

  /* Voorkom iOS auto-zoom op select en prijsfilter-inputs */
  .shop-toolbar-sort select,
  .shop-filter-price-input-wrap input { font-size: 1rem; }

  /* Winkelwagen - zie dedicated blok hieronder */
}

/* =====================================================
   Shop - toolbar rechts (basis, alle schermen)
===================================================== */
.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Desktop: filter-knop en drawer-elementen verborgen */
.shop-toolbar-filter-btn        { display: none; }
.shop-sidebar-drawer-header     { display: none; }
.drawer-backdrop                { display: none; }
.shop-toolbar-sort-label-mobile { display: none; }

/* =====================================================
   Hero - mobiele aanpassingen
===================================================== */
@media (max-width: 640px) {
  .over-acties {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .over-acties {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   In opdracht - afbeelding verbergen op mobiel
===================================================== */
@media (max-width: 640px) {
  .commission-image-wrap { display: none; }
  .commission-grid       { grid-template-columns: 1fr; }
}

/* =====================================================
   Over mij - portret op mobiel
===================================================== */
@media (max-width: 640px) {
  .section:has(.over-grid) {
    padding-top: 1.25rem;
  }

  .over-portret {
    width: clamp(200px, 60vw, 260px);
    margin: 0 auto;
  }
}

/* =====================================================
   Sectie-padding verkleinen op mobiel
===================================================== */
@media (max-width: 640px) {
  .section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* =====================================================
   Instagram-header - links uitlijnen op mobiel
===================================================== */
@media (max-width: 640px) {
  .instagram-header {
    align-items: flex-start;
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   Shop-overzicht - mobiele verbeteringen
===================================================== */
@media (max-width: 640px) {
  /* 0. Shop-layout naar volledige breedte */
  .shop-layout { grid-template-columns: 1fr; }

  /* 1. Beschrijving verbergen in 2-koloms kaartgrid */
  .shop-main .products-grid .product-desc {
    display: none;
  }

  /* 2. Sectieheader minder ruimte onderaan op mobiel */
  .section-header {
    margin-bottom: 1.25rem;
  }

  /* 4. Toolbar als twee losstaande knoppen op volledige breedte */
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Geen outer border - elk element heeft zijn eigen kader */
  .shop-toolbar-right {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
  }

  /* Hogere specificiteit om filter-drawer stijlen te overschrijven */
  .shop-toolbar-right .shop-toolbar-filter-btn {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  /* Sorteerhalf - zelfde uiterlijk als de filterknop */
  .shop-toolbar-sort {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.4rem 0.75rem;
    gap: 0;
    min-width: 0;
  }

  .shop-toolbar-sort-label-mobile {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    pointer-events: none;
    white-space: nowrap;
  }

  /* Select onzichtbaar maar volledig klikbaar over de knop */
  .shop-toolbar-sort select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    font-size: 1rem;
    margin: 0;
    padding: 0;
  }
}

/* =====================================================
   Container - iets meer zijpadding op mobiel
===================================================== */
@media (max-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* =====================================================
   Shop-overzicht - 2-koloms productgrid op mobiel
===================================================== */
@media (max-width: 640px) {
  .shop-main .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* =====================================================
   Homepage - productencarousel op mobiel
===================================================== */
.home-carousel-btn { display: none; }

@media (max-width: 640px) {
  .home-products-carousel {
    position: relative;
  }

  .home-carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 252, 247, 0.92);
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
    color: var(--text);
    cursor: pointer;
    touch-action: manipulation;
    transition: background var(--ease), box-shadow var(--ease);
  }
  .home-carousel-btn:hover {
    background: var(--bg-alt);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  }
  .home-carousel-btn--prev { left:  -0.5rem; }
  .home-carousel-btn--next { right: -0.5rem; }

  .home-products-carousel .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding: 0.25rem 0.25rem 0.75rem;
  }
  .home-products-carousel .products-grid::-webkit-scrollbar { display: none; }

  .home-products-carousel .products-grid .product-card {
    flex: 0 0 88%;
    min-width: 0;
    scroll-snap-align: start;
  }
}

/* =====================================================
   Shop - filter drawer (alleen mobiel)
===================================================== */
@media (max-width: 640px) {
  .shop-toolbar-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    cursor: pointer;
    touch-action: manipulation;
    white-space: nowrap;
  }

  .shop-toolbar-filter-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 0.1rem;
  }

  /* Zijbalk verborgen in normale stroom */
  .shop-sidebar {
    display: none;
    border: none;
    margin: 0;
  }

  /* Zijbalk als onderste lade */
  .shop-sidebar.drawer-open {
    display: block;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--bg);
    border-radius: 14px 14px 0 0;
    padding: 0 1.25rem 1.5rem;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.18);
    animation: drawer-slide-up 0.28s cubic-bezier(0.32, 0.72, 0, 1);
  }

  .shop-sidebar-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0 0.75rem;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 1;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.75rem;
  }

  /* Drag-handle */
  .shop-sidebar-drawer-header::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
  }

  .shop-sidebar-drawer-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
  }

  .shop-sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: -0.5rem;
    color: var(--text-muted);
    touch-action: manipulation;
    transition: color var(--ease);
  }
  .shop-sidebar-close:hover { color: var(--text); }

  /* Categorieën als kolom (niet als pills) in de lade */
  .shop-sidebar .shop-sidebar-nav {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
  }
  .shop-sidebar .shop-sidebar-link {
    border: none;
    min-height: 44px;
  }

  /* Achtergrondoverlay */
  .drawer-backdrop.is-open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 199;
    animation: backdrop-fade-in 0.25s ease;
  }

  @keyframes drawer-slide-up {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }

  @keyframes backdrop-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
}

/* =====================================================
   Winkelwagen - mobiele weergave
===================================================== */
@media (max-width: 640px) {
  /* 1. Cascade-fix: layout naar één kolom */
  .cart-layout,
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary    { position: static; }

  /* 2. Besteloverziecht boven het formulier op mobiel */
  .checkout-layout > aside { order: -1; }

  /* 2. Winkelwagenregel: afbeelding links, info + acties rechts */
  .cart-item {
    position: relative;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem 1rem;
    padding: 1rem 1rem 1rem 1rem;
  }

  .cart-item-image {
    width: 72px;
    height: 72px;
    grid-row: 1 / 3;
  }

  /* 3. Beschrijving en dubbele prijs verbergen */
  .cart-item-info p       { display: none; }
  .cart-item-subtotaal    { display: none; }

  /* 4. Acties: alleen hoeveelheid onder de productnaam */
  .cart-item-actions {
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }

}


/* =====================================================
   FAQ
===================================================== */
.faq-layout {
  max-width: 720px;
  margin: 0 auto;
}

.faq-layout [id] {
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}

.faq-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-category:first-of-type {
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--color-accent, #8b6f47);
}

.faq-item[open] > .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--color-muted, #666);
  line-height: 1.7;
}

.faq-answer p + p  { margin-top: 0.75rem; }
.faq-answer ol     { padding-left: 1.25rem; }
.faq-answer ol li  { margin-bottom: 0.35rem; }
.faq-answer a      { text-decoration: underline; }

/* =====================================================
   Privacybeleid - prose-layout
===================================================== */
.prose-layout {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-muted);
}

.prose-intro {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.prose-layout h2 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 2.25rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.prose-layout h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1.5rem 0 0.5rem;
}

.prose-layout p  { margin-bottom: 0.85rem; }
.prose-layout ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.prose-layout ul li { margin-bottom: 0.4rem; }
.prose-layout a  { color: var(--accent); text-decoration: underline; }
.prose-layout a:hover { color: var(--accent-dark); }
.prose-footer-note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.prose-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1rem 0 1.5rem;
}

.prose-table th {
  text-align: left;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.6rem 0.85rem;
  border-bottom: 2px solid var(--border);
  background: var(--bg-alt);
}

.prose-table td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-muted);
}

.prose-table tr:last-child td { border-bottom: none; }

@media (max-width: 640px) {
  .prose-table { display: none; } /* vervangen door lijstweergave op mobiel */
}

