:root {
  --gold: #a67c52;
  --gold-dark: #8b643d;
  --border: rgba(166,124,82,.35);
  --bg: #f8f6f4;
  --text: #23201b;
}

body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.hero .amp {
  color: #fff; /* ampersand wit */
}

/* Container */
.container {
  width: min(1200px, 100%);
  margin-inline: auto;
}

/* Topbalk */
.topbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 6px solid var(--gold);
  z-index: 100;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.brand {
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}
.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: var(--text);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: .25s;
}
.nav a:hover::after { opacity: 1; }

/* Hero */
.hero {
  position: relative;
  height: 80vh;
  display: grid;
  place-items: center;
  margin-top: -1px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/img/Joriskerk amersfoort.jpg') center/cover no-repeat;
  filter: brightness(.55);
}
.hero-inner {
  position: relative;
  text-align: center;
  color: #fff;
}
.hero .kicker {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  margin: .3em 0;
}
.title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.ampersand {
  width: 44px;
  height: 44px;
}

/* Secties */
.section { padding: 54px 0; border-top: 1px solid var(--border); }
.section h2 { margin-bottom: 18px; }

/* Biografie */
.biografie {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
}
.biografie img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

/* Bladmuziek preview */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 8px 26px rgba(0,0,0,.06);
  text-align: center;
}
.card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.price {
  margin: .6rem 0;
  font-weight: 700;
}
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: white;
  text-decoration: none;
}
.btn:hover { filter: brightness(1.05); }

/* Contact */
.socials {
  display: flex;
  gap: 22px;
  justify-content: center;
}
.socials img {
  width: 36px;
  height: 36px;
  transition: transform .2s;
}
.socials img:hover { transform: scale(1.15); }

/* Footer */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
/* Webshop */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.product .actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.btn.small {
  padding: 6px 12px;
  font-size: .9rem;
}
.btn.outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
}
.btn.outline:hover {
  background: var(--gold);
  color: #fff;
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}
.product-detail img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
}
.product-detail .info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.back-link {
  text-decoration: none;
  color: var(--gold-dark);
  font-weight: 500;
}
.hero img {
  filter: brightness(0.55); /* donkerder beeld */
}

.hero .overlay {
  color: #fff; /* tekst wit */
  text-shadow: 0 2px 6px rgba(0,0,0,.6); /* beter leesbaar */
}

.back-link:hover { text-decoration: underline; }
/* Hero / panorama */
.hero {
  position: relative;
  height: 65vh;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .welcome {
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}
.hero h2 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
}
.hero .amp {
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-size: 2.5rem;
  color: var(--gold);
}

/* Biografie */
.bio-text {
  line-height: 1.8;
  max-width: 600px;   /* smaller maken */
  margin-top: 100px;   /* naar beneden */
}
.portrait {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
}

/* Bladmuziek preview */
.preview .center {
  margin-top: 20px;
  text-align: center;
}

/* Contact */
.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.socials img {
  width: 36px;
  height: 36px;
  opacity: 0.8;
  transition: opacity .2s;
}
.socials img:hover { opacity: 1; }
/* Topbalk – grotere, luchtige nav, geen decoration, subtiel randje */
.logo {
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  font-size: clamp(18px, 2.2vw, 22px);
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-size: clamp(16px, 1.8vw, 18px);
  letter-spacing: .02em;
  padding: 10px 14px;
  margin-left: 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  display: inline-block;
}

/* optioneel subtiele hover-glow */
.nav a:hover { box-shadow: 0 2px 10px rgba(166,124,82,.25); }

/* Winkelwagenknop in topbar */
.cart-btn {
  margin-left: 14px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
}
.cart-btn .cart-count {
  margin-left: 6px;
  font-weight: 700;
  color: var(--gold-dark);
}

/* Hero – elegantere titel + ampersand */
.hero .welcome {
  font-size: clamp(14px, 1.4vw, 16px);
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: .9;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  margin: .2em 0 .1em;
}
.hero h2 {
  font-size: clamp(20px, 3vw, 34px);
  display: inline-flex;
  align-items: center;
  gap: .35em;
  opacity: .95;
}
.hero .amp {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15em; /* ampersand net iets groter */
  color: #fff;
  line-height: 1;
}

/* Biografie layout – 2 kolommen met smal portret rechts */
.biografie {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 28px;
  align-items: start;
}
.bio-portrait-wrap { display: flex; justify-content: flex-end; }
.portrait {
  width: min(260px, 100%);
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

/* Responsief breekpunt */
@media (max-width: 840px) {
  .biografie { grid-template-columns: 1fr; }
  .bio-portrait-wrap { justify-content: start; }
  .portrait { width: 200px; }
}

/* Cart drawer (sidebar) */
.backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(2px);
  z-index: 998;
}
.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: min(380px, 92vw); height: 100dvh;
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 28px rgba(0,0,0,.12);
  transform: translateX(100%);
  transition: transform .28s ease;
  z-index: 999;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; border-bottom: 1px solid var(--border);
}
.cart-close {
  background: transparent; border: none; font-size: 24px; cursor: pointer;
}
.cart-items { padding: 14px 14px 6px; overflow: auto; }
.cart-item {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 12px;
  align-items: center; padding: 10px 8px; border-bottom: 1px solid var(--border);
}
.cart-item img { width: 64px; height: 86px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); }
.cart-item .ci-name { font-weight: 600; }
.cart-item .ci-price { font-weight: 700; }
.cart-drawer__foot { padding: 14px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 10px; }
.btn-checkout { width: 100%; text-align: center; }
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}

.product-detail img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.product-detail .info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.description {
  line-height: 1.7;
  color: var(--text);
}
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}

.product-detail .product-main {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0; /* geen ronde hoeken */
}

.product-detail .thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* altijd 4 per rij */
  gap: 10px;
  margin: 12px auto 20px auto;
  max-width: 100%; /* breedte beperkt tot coverbreedte */
  justify-items: center;
}

.product-detail .thumb {
  width: 100%;
  aspect-ratio: 3 / 4; /* zorgt voor verhouding */
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}

.product-detail .thumb:hover {
  transform: scale(1.05);
}

.product-detail .info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-title {
  font-size: 2rem;
  font-weight: 700;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
}

.buy-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.qty-input {
  width: 70px;
  padding: 8px;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
}

.description {
  line-height: 1.7;
  color: var(--text);
}
.card.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card.product h3 {
  min-height: 3rem; /* vaste hoogte voor titel */
  font-size: 1.1rem;
  font-weight: 600;
}
.site-header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-link {
  font-size: 1.2rem;
  text-decoration: none;
  position: relative;
}

#cart-count {
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  border-radius: 50%;
  padding: 2px 6px;
  position: absolute;
  top: -8px;
  right: -12px;
}
/* Checkout */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

/* Formuliervelden mooier */
.checkout-form label {
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-top: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05) inset;
}

/* Productregels in bestelling */
.checkout-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.checkout-item img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.checkout-total {
  margin-top: 16px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Tekst en knop onder kolommen */
.checkout-bottom {
  text-align: center;
  margin-top: 20px;
}

.checkout-bottom p {
  margin-bottom: 14px;
  font-style: italic;
  color: #555;
}

/* Responsief */
@media(max-width: 840px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* Order bevestiging */
.order-confirm {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}

.order-box {
  background: #fff;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 6px 26px rgba(0,0,0,.08);
  max-width: 600px;
  text-align: center;
}

.order-box h1 {
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.order-box p {
  margin: 12px 0;
  font-size: 1.1rem;
}

.order-box .btn {
  margin-top: 20px;
  display: inline-block;
}
.ci-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ci-actions input.ci-qty {
  width: 50px;
  text-align: center;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}
@media(max-width: 600px) {
  /* ---------- Topbar ---------- */
  .topbar-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }

  .logo {
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
    font-size: clamp(20px, 6vw, 26px);
    margin-bottom: 6px;
    text-align: center;
  }

  .nav {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    width: 100%;
  }
  .nav a {
    text-decoration: none;
    font-size: 1rem;
    color: var(--text);
    text-align: center;
  }

  /* ---------- Hero / Panorama ---------- */
  .hero {
    position: relative;
    height: 40vh;   /* minder hoog */
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
    /* Alleen ruimte onder de titel Biografie kleiner maken */
  .biografie h2 {
    margin-bottom: -80px; /* stond standaard vaak op 16px of 20px */
  }
  .hero-overlay {
    text-align: center;
    padding: 0 10px;
  }
  .hero h1 { font-size: 2rem; }
  .hero h2 { font-size: 1.2rem; }

  /* ---------- Bladmuziek & Webshop ---------- */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .card.product {
    padding: 8px;
    font-size: 0.9rem;
    text-align: center;
  }
  .card.product img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* ---------- Winkelwagen ---------- */
  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  /* ---------- Checkout ---------- */
  .checkout-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .checkout-form label {
    display: block;
    text-align: center;
  }
  .checkout-form input,
  .checkout-form select {
    display: block;
    margin: 0 auto 14px auto;
    width: 90%;
    max-width: 300px;
    text-align: center;
    font-size: 1rem;
    padding: 12px;
  }

  /* ---------- Algemene centrering & geen horizontaal schuiven ---------- */
  body {
    padding: 0 14px;
    text-align: center;
    overflow-x: hidden; /* horizontaal schuiven uit */
  }
  html, body {
    max-width: 100%;
  }
  .container,
  .section,
  .card,
  .checkout-form,
  .product-detail,
  .footer {
    text-align: center;
  }
  img,
  .btn,
  input,
  select {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .btn {
    text-align: center;
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 600px) {
  /* Hele site: nooit horizontaal scrollen */
  html, body {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  /* Zorg dat ALLES binnen het scherm blijft */
  * {
    box-sizing: border-box;
  }

  /* Cart-drawer altijd passend */
  .cart-drawer {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }

  /* Grids (webshop, bladmuziek) altijd 2 kolommen */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100% !important;
    margin: 0 auto;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Afbeeldingen en knoppen nooit breder dan scherm */
  img,
  .btn,
  input,
  select,
  textarea {
    max-width: 100% !important;
  }
}
@media (max-width: 600px) {
  /* Bladmuziek & Webshop grid */
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* altijd 2 naast elkaar */
    gap: 12px;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
  }

  /* Boek-kaarten altijd dezelfde maat */
  .card.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 8px;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
  }

  /* Covers altijd zelfde verhouding */
  .card.product img {
    width: 100%;
    aspect-ratio: 3 / 4;   /* zelfde hoogte/breedte verhouding */
    object-fit: cover;
    border-radius: 6px;
  }

  /* Titels en knoppen netjes */
  .card.product h3 {
    font-size: 1rem;
    margin: 8px 0 4px 0;
  }
  .card.product .price {
    font-weight: 600;
    margin-bottom: 8px;
  }
  .card.product .actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }
  .card.product .btn {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  /* Product detail: 1 kolom ipv 2 */
  .product-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Cover in het midden, max breedte */
  .product-detail .product-main {
    width: 80%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
  }

  /* Thumbnails netjes onder de cover */
  .product-detail .thumbs {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    max-width: 280px; /* zelfde breedte als cover */
  }

  .product-detail .thumb {
    width: 60px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
  }

  /* Tekst en acties onder de thumbs */
  .product-detail h1,
  .product-detail .price,
  .product-detail p,
  .product-detail .actions {
    text-align: center;
    margin: 0 auto 12px;
    max-width: 90%;
  }

  /* Knop netjes gecentreerd */
  .product-detail .actions .btn {
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
  }
}
/* ===========================
   CART CONTROLS – GOLD STYLE
   =========================== */

/* Zorg dat de actiezone netjes staat */
.cart-item .ci-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 🔘 Plus/Minus – ronde knopjes met gouden rand
   De selectors dekken veel voorkomende varianten af */
.cart-item .ci-actions .qty-btn,
.cart-item .ci-actions .minus,
.cart-item .ci-actions .plus,
.cart-item .ci-actions [data-action="minus"],
.cart-item .ci-actions [data-action="plus"],
.cart-item .ci-actions button:not(.remove):not(.ci-remove):not(.btn-remove),
.cart-item .ci-actions a.qty-minus,
.cart-item .ci-actions a.qty-plus {
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background .2s, color .2s, filter .2s;
}

.cart-item .ci-actions .qty-btn:hover,
.cart-item .ci-actions .minus:hover,
.cart-item .ci-actions .plus:hover,
.cart-item .ci-actions [data-action="minus"]:hover,
.cart-item .ci-actions [data-action="plus"]:hover,
.cart-item .ci-actions button:not(.remove):not(.ci-remove):not(.btn-remove):hover,
.cart-item .ci-actions a.qty-minus:hover,
.cart-item .ci-actions a.qty-plus:hover {
  background: var(--gold);
  color: #fff;
}

/* 🔲 Aantal-input mooi in lijn met de knopjes */
.cart-item .ci-actions input[type="number"],
.cart-item .ci-actions input.ci-qty,
.cart-item .ci-actions .qty-input {
  width: 58px;
  height: 34px;
  text-align: center;
  padding: 4px 6px;
  font-size: 14px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05) inset;
}


/* 🗑️ Verwijderen – rechthoekig met afgeronde hoeken en gouden rand */
.cart-item .ci-actions .remove,
.cart-item .ci-actions .ci-remove,
.cart-item .ci-actions .btn-remove,
.cart-item .ci-actions [data-action="remove"],
.cart-item .remove { /* fallback */
  background: #fff;
  border: 1px solid var(--gold);
  color: var(--text);
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background .2s, color .2s;
}

.cart-item .ci-actions .remove:hover,
.cart-item .ci-actions .ci-remove:hover,
.cart-item .ci-actions .btn-remove:hover,
.cart-item .ci-actions [data-action="remove"]:hover,
.cart-item .remove:hover {
  background: var(--gold);
  color: #fff;
}

/* 📱 Iets compacter op mobiel */
@media (max-width: 600px) {
  .cart-item .ci-actions .qty-btn,
  .cart-item .ci-actions .minus,
  .cart-item .ci-actions .plus,
  .cart-item .ci-actions [data-action="minus"],
  .cart-item .ci-actions [data-action="plus"],
  .cart-item .ci-actions button:not(.remove):not(.ci-remove):not(.btn-remove),
  .cart-item .ci-actions a.qty-minus,
  .cart-item .ci-actions a.qty-plus {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    line-height: 26px;
    font-size: 16px;
  }

  .cart-item .ci-actions input[type="number"],
  .cart-item .ci-actions input.ci-qty,
  .cart-item .ci-actions .qty-input {
    width: 52px;
    height: 30px;
    font-size: 13px;
  }

  .cart-item .ci-actions .remove,
  .cart-item .ci-actions .ci-remove,
  .cart-item .ci-actions .btn-remove,
  .cart-item .ci-actions [data-action="remove"],
  .cart-item .remove {
    padding: 5px 10px;
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .order-confirm {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh; /* iets meer hoogte zodat hij centraal staat */
    padding: 0 10px;
  }

  .order-box {
    max-width: 100% !important;  /* volle breedte */
    width: 100%;
    padding: 24px 16px !important;
    border-radius: 12px;
    font-size: 1.2rem; /* basis groter */
    text-align: center;
  }

  .order-box h1 {
    font-size: 2rem !important;
    margin-bottom: 16px !important;
  }

  .order-box p {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    margin: 10px 0 !important;
  }

  .order-box .btn {
    display: block;
    width: 100% !important;
    max-width: 300px;
    margin: 20px auto 0 !important;
    padding: 14px !important;
    font-size: 1.1rem !important;
  }
}
/* Contact info */
.contact-info {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-info p {
  margin: 0.5rem 0;
}

.contact-info a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #003366;
  text-decoration: underline;
}

/* Social media iconen rond maken */
.socials {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1rem;
}

.socials img {
  width: 40px;
  height: 40px;
  border-radius: 50%; /* maakt ze rond */
  object-fit: cover; /* zorgt dat het logo goed past */
  transition: transform 0.2s ease;
}

.socials img:hover {
  transform: scale(1.15);
}
.product-video {
  margin-top: 20px;   /* ruimte boven de video */
  margin-bottom: 20px; /* extra ruimte naar onderen */
  width: 100%;
  aspect-ratio: 16 / 9;
}

.product-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
}


@media (max-width: 600px) {
  .product-video {
    aspect-ratio: 16/9;
    width: 100%;
    max-width: 100%;
  }
}
