:root {
  --primary: #6a2ca0;
  --secondary: #9b6bd6;
  --light: #f6f3fb;
  --dark: #2a1538;
  --page-padding: 4%;
}

.center-text {
  text-align: center;
}

/* =====================
   Global Reset
===================== */
ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Segoe UI, Arial;
  background: var(--light);
  color: var(--dark);
  display: flex;
  flex-direction: column;
}
/* =====================
    Hero 
 ===================== */
.hero {
  padding: 100px var(--page-padding);
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero .cta {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: #fff;
  color: var(--primary);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 1024px) {
  .hero {
    padding: 80px var(--page-padding);
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero .cta {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px var(--page-padding);
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero .cta {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 6%;
  }
  .hero h1 {
    font-size: 22px;
  }
  .hero .cta {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

/* =====================
   Features
===================== */
.features {
  display: grid;
  grid-template-columns: 1fr; /* standaard: 1 per rij */
  gap: 1rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.features article {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.features article:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.features h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.features p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* ===================== Responsive ===================== */

/* Tablet / medium screens */
@media (min-width: 481px) and (max-width: 768px) {
  .features {
    grid-template-columns: 1fr 1fr;
    /* 2 per rij */
    gap: 1rem;
    padding: 0 1rem;
  }

  .features article {
    padding: 1.5rem 1rem;
  }

  .features h3 {
    font-size: 1.2rem;
  }

  .features p {
    font-size: 0.9rem;
  }
}

/* Desktop / large screens */
@media (min-width: 769px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
    /* 4 per rij */
    gap: 1.5rem;
    padding: 0 2rem;
  }

  .features article {
    padding: 2rem 1.5rem;
  }

  .features h3 {
    font-size: 1.25rem;
  }

  .features p {
    font-size: 0.95rem;
  }
}

/* ================= FOOTER ================= */

.footer {
  background: #1f0f2d;
  color: #fff;
  padding: 50px var(--page-padding);
  width: 100%;
  box-sizing: border-box;
}

/* MOBILE */
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 naast elkaar */
  gap: 20px;
}

.footer h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.footer p,
.footer a {
  font-size: 13px;
  color: #ccc;
  line-height: 1.5;
}

.footer a {
  text-decoration: none;
  display: block;
  margin-top: 5px;
}

.footer a:hover {
  color: #fff;
}

/* TABLET */
@media (min-width: 768px) {
  .footer-cols {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer h4 {
    font-size: 16px;
  }

  .footer p,
  .footer a {
    font-size: 14px;
  }
}

.copy {
  text-align: center;
  margin-top: 35px;
  font-size: 12px;
  color: #999;
}


/* ============================= */
/*        CART BUTTON NAVBAR     */
/* ============================= */

.btn-cart {
  /* Layout */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  /* Size */
  width: 50px;
  height: 50px;

  /* Style */
  border: none;
  border-radius: 10px;
  background-color: transparent;
}


/* === ICON === */

.icon-cart {
  width: 24.38px;
  height: 30.52px;
  transition: .2s linear;
}

.icon-cart path {
  fill: rgb(240, 8, 8);
  transition: .2s linear;
}


/* Hover effect */

.btn-cart:hover>.icon-cart {
  transform: scale(1.2);
}

.btn-cart:hover>.icon-cart path {
  fill: rgb(186, 34, 233);
}


/* === QUANTITY BADGE === */

.quantity {
  position: absolute;

  top: 115%;

  font-size: 15px;
  color: black;

  font-family:
    'Lucida Sans',
    'Lucida Sans Regular',
    'Lucida Grande',
    'Lucida Sans Unicode',
    Geneva,
    Verdana,
    sans-serif;

  opacity: 0;
  visibility: hidden;

  transition: .2s linear;
}


/* Quantity hover state */

.btn-cart:hover .quantity {
  top: 105%;
  opacity: 1;
  visibility: visible;
}


/* ================================================= */
/*                   SHOPPING CART                   */
/* ================================================= */

/* Master container */

.master-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}

/* Card base */

.card {
  width: 100%;
  max-width: 400px;
  background: #ffffff;

  box-shadow:
    0px 187px 75px rgba(0, 0, 0, 0.01),
    0px 105px 63px rgba(0, 0, 0, 0.05),
    0px 47px 47px rgba(0, 0, 0, 0.09),
    0px 12px 26px rgba(0, 0, 0, 0.1);

  border-radius: 10px;
}

/* Card title */

.title {
  width: 100%;
  height: 40px;

  display: flex;
  align-items: center;

  padding-left: 20px;
  border-bottom: 1px solid #efeff3;

  font-weight: 700;
  font-size: 11px;
  color: #63656b;
}

/* ================================================= */
/*                        CART                       */
/* ================================================= */

.cart {
  border-radius: 19px 19px 7px 7px;
}

.cart .products {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
}

/* Product layout */

.cart .product {
  display: grid;
  grid-template-columns: 60px 1fr 80px 1fr;
  gap: 10px;
}

.cart .product span {
  font-size: 13px;
  font-weight: 600;
  color: #47484b;
  margin-bottom: 8px;
  display: block;
}

.cart .product p {
  font-size: 11px;
  font-weight: 600;
  color: #7a7c81;
}

/* Quantity selector */

.cart .quantity {
  height: 30px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  margin: auto;

  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 7px;

  filter:
    drop-shadow(0px 1px 0px #efefef) drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
}

.cart .quantity label {
  width: 20px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  font-weight: 700;
  color: #47484b;
}

.cart .quantity button {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  background: transparent;
}

/* Small price */

.card .small {
  font-size: 15px;
  margin-left: auto;
}

.card .small sup {
  font-size: 10px;
}

/* ================================================= */
/*                      COUPONS                      */
/* ================================================= */

.coupons {
  border-radius: 7px;
}

.coupons form {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 10px;
  padding: 10px;
}

.input_field {
  height: 36px;
  padding-left: 12px;

  border-radius: 5px;
  border: 1px solid #e5e5e5;
  outline: none;

  filter:
    drop-shadow(0px 1px 0px #efefef) drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));

  transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.input_field:focus {
  border: 1px solid transparent;
  box-shadow: 0 0 0 2px #242424;
}

/* Coupon button */

.coupons form button {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 36px;
  width: 100%;

  border-radius: 5px;
  border: none;

  font-size: 12px;
  font-weight: 600;
  color: white;

  background: linear-gradient(180deg,
      #5112a6 0%,
      #7a55ab 50%,
      #a356ed 100%);
}

/* ================================================= */
/*                     CHECKOUT                      */
/* ================================================= */

.checkout {
  border-radius: 9px 9px 19px 19px;
}

.checkout .details {
  display: grid;
  grid-template-columns: 3fr 1fr;
  padding: 10px;
  gap: 5px;
}

.checkout .details span:nth-child(odd) {
  font-size: 11px;
  font-weight: 700;
  color: #707175;
}

.checkout .details span:nth-child(even) {
  font-size: 13px;
  font-weight: 600;
  color: #47484b;
  text-align: right;
}

/* Footer */

.checkout .checkout--footer {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 10px 10px 20px;

  background-color: #efeff3;
}

/* Price */

.price {
  position: relative;
  font-size: 22px;
  font-weight: 900;
  color: #2b2b2f;
}

.price sup {
  font-size: 13px;
}

.price sub {
  position: absolute;
  bottom: 5px;
  font-size: 11px;
  color: #5f5d6b;
}

/* Checkout button */

.checkout .checkout-btn {
  width: 150px;
  height: 36px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 7px;
  border: none;

  font-size: 13px;
  font-weight: 600;
  color: white;

  background: linear-gradient(180deg,
      #5112a6 0%,
      #7a55ab 50%,
      #a356ed 100%);

  transition: 0.3s;
}

/* ================================================= */
/*                   RESPONSIVE                      */
/* ================================================= */

@media (max-width: 600px) {

  .cart .product {
    grid-template-columns: 50px 1fr 70px;
  }

  .checkout .checkout-btn {
    width: 120px;
  }

}

/* =====================
   Bundle Card
===================== */


.bundles-grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  justify-content: center;

  align-items: stretch;
}


.bundle-card {
  background: #fafafa;
  border-radius: 22px;
  padding: 22px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;

  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bundle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

@media (max-width: 360px) {
  .bundles-grid {
    grid-template-columns: 1fr;
  }

  .bundle-card {
    width: 100%;
  }
}

.bundle-img {
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 18px;
  width: 100%;
}

.normal-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.bundle-price {
  font-size: 22px;
  font-weight: 700;
  color: #6d28d9;
}

.ml-btn {
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: white;
  color: #333;
}

.ml-btn.active {
  background: #6d28d9;
  color: white;
  border-color: #6d28d9;
}

.cart-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.cart-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: none;
  background: #6d28d9;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.cart-qty {
  font-size: 18px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}


/* =====================
   Shopping Cart Product Styling
===================== */
.cart {
  border-radius: 19px 19px 7px 7px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 10px;
}

.cart .products {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 0;
}

.cart .products .product {
  display: grid;
  grid-template-columns: 60px 1fr 80px 90px;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.cart .products .product:hover {
  background: #f9f9f9;
}

.cart .products .product img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.cart .products .product span {
  font-size: 14px;
  font-weight: 600;
  color: #47484b;
  display: block;
}

.cart .products .product p {
  font-size: 12px;
  font-weight: 600;
  color: #7a7c81;
  margin-top: 2px;
}

/* Quantity Control */
.cart .quantity {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 90px;
  height: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cart .quantity label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #47484b;
}

.cart .quantity button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #6d28d9;
  background: transparent;
  transition: background 0.2s ease;
}

.cart .quantity button:hover {
  background: rgba(106, 44, 160, 0.1);
  border-radius: 4px;
}

/* Cart Quantity Display */
.cart-qty {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  min-width: 20px;
}

/* Cart Buttons (+ / -) */
.cart-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #6d28d9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-btn:hover {
  background: #5112a6;
  transform: translateY(-2px);
}

/* Checkout & Prices inside Cart */
.cart .product-price {
  font-size: 14px;
  font-weight: 700;
  color: #6d28d9;
  text-align: right;
}

.cart .product-price sup {
  font-size: 12px;
}

/* Responsive Cart */
@media (max-width:768px) {
  .cart .products .product {
    grid-template-columns: 50px 1fr 60px 70px;
    gap: 6px;
  }

  .cart .quantity {
    width: 70px;
    height: 28px;
  }

  .cart-btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}

/* =========================
   SHOP CATEGORY SELECTOR
========================= */

.shop-categories {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 60px auto 40px;
  flex-wrap: wrap;
}

.shop-categories a {
  position: relative;
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  border-radius: 999px;
  background: #f5f5f5;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover: subtiel, geen schreeuw */
.shop-categories a:hover {
  background: #eaeaea;
  transform: translateY(-1px);
}

/* ACTIEVE CATEGORIE */
.shop-categories a.active {
  background: #111;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Onderlijn accent (luxury detail) */
.shop-categories a.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

/* Mobile refinement */
@media (max-width: 600px) {
  .shop-categories {
    gap: 12px;
    margin: 40px 20px 30px;
  }

  .shop-categories a {
    padding: 12px 22px;
    font-size: 13px;
  }
}

/* =========================
   STICKY SHOP CATEGORIES
========================= */

.shop-categories-wrapper {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shop-categories {
  padding: 20px 0;
  margin: 0;
}

/* =========================
   CATEGORY INTRO
========================= */

.category-intro {
  text-align: center;
  margin: 40px auto 60px;
  max-width: 600px;
  padding: 0 20px;
}

.category-intro h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.category-intro p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/* ===== FORM STYLING ===== */
.review-form-container {
  max-width: 500px;
  margin: 50px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.review-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.review-form-container input,
.review-form-container textarea,
.review-form-container button {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
}

.review-form-container textarea {
  resize: none;
  /* maakt het textarea niet schaalbaar */
  height: 120px;
}

.review-form-container button {
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.review-form-container button:hover {
  background: #333;
}

/* ===== STARS ===== */
.stars-container {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  /* draait de flow zodat 1 links, 5 rechts */
  margin-bottom: 15px;
}

.stars-container input {
  display: none;
}

.stars-container label {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

/* Hover sterren */
.stars-container label:hover,
.stars-container label:hover~label {
  color: gold;
}

/* Geselecteerde sterren blijven geel */
.stars-container input:checked~label {
  color: gold;
}


/* ============================= */
/*        REVIEW CAROUSEL        */
/* ============================= */

/* voorkom horizontale scroll op de hele pagina */
html, body {
overflow-x: hidden;
}

/* Carousel container */

.reviews-carousel {
width: 100%;
max-width: 900px;
margin: 50px auto;
overflow: hidden;
position: relative;
padding: 0 10px;
}

/* Track waar de reviews in bewegen */

.carousel-track {
display: flex;
gap: 15px;
will-change: transform;
}

/* Review kaart */

.carousel-item {
flex: 0 0 calc(50% - 7.5px); /* exact 2 naast elkaar */
box-sizing: border-box;

background: #f9f9f9;
border-radius: 12px;
padding: 20px;

text-align: center;

box-shadow: 0 4px 15px rgba(0,0,0,0.05);

transition: transform 0.3s ease;
}

/* kleine hover feedback */

.carousel-item:hover {
transform: translateY(-3px);
}

/* sterren */

.carousel-item .stars {
color: gold;
font-size: 1.2rem;
margin-bottom: 10px;
}

/* naam */

.carousel-item h4 {
margin-bottom: 5px;
font-size: 16px;
font-weight: 600;
}

/* review tekst */

.carousel-item p {
font-size: 14px;
color: #555;
line-height: 1.5;
}

/* ============================= */
/*        MOBILE VERSION         */
/* ============================= */

@media (max-width: 600px) {

.carousel-item {
flex: 0 0 100%; /* 1 review per keer */
}

}





/* CONTACT HERO */
.contact-hero {
  padding: 120px 20px 80px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.contact-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
  font-size: 18px;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #000;
}

.contact-form button {
  margin-top: 10px;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.contact-form button:hover {
  opacity: 0.9;
}

/* INFO */
.contact-info {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 40px;
}

.contact-info h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #333;
}

.contact-note {
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}



/* Container specifiek voor accountsysteem */
.account-container {
  max-width: 450px;
  margin: 50px auto;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Titels binnen account */
.account-container h2 {
  color: #6a0dad;
  /* Lavendio paars */
  margin-bottom: 20px;
  font-size: 22px;
}

/* Tekst paragrafen */
.account-container p {
  color: #333;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Input velden */
.account-container input[type="text"],
.account-container input[type="email"],
.account-container input[type="password"] {
  width: 90%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
  box-sizing: border-box;
}

/* Buttons specifiek */
.account-container button,
.account-container a.button-link {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px 5px 0 5px;
  border: none;
  border-radius: 10px;
  background-color: #6a0dad;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  /* voor links als button */
}

.account-container button:hover,
.account-container a.button-link:hover {
  background-color: #4b0082;
}

/* Alerts / foutmeldingen */
.account-container .alert {
  color: #ff0000;
  font-size: 13px;
  margin-bottom: 10px;
}

/* =====================
   Product Page Layout
===================== */
.product-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 var(--page-padding);
}

/* Bovenste rij: afbeelding links, info rechts */
.product-top {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
  /* houdt toplijn gelijk */
}

.product-image {
  flex: 1 1 450px;
}

.product-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  /* extra ruimte onder titel */
}

.product-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  /* extra ruimte onder description */
  color: #4a3b6a;
}

/* ML buttons */
.bundle-ml {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  /* spacing onder ML-buttons */
}

.ml-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  background: #e0d8f5;
  color: var(--dark);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.ml-btn.active {
  background: var(--primary);
  color: #fff;
}

/* Prijzen */
.price-cart {
  display: flex;
  align-items: center;
  gap: 2rem;
  /* ruimte tussen prijs en cart */
}

.bundle-prices {
  font-size: 1.2rem;
}

.normal-price {
  text-decoration: line-through;
  margin-right: 0.5rem;
  color: #888;
}

.bundle-price {
  font-weight: 700;
  color: var(--dark);
}

/* Cart controls */
.cart-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* =====================
   Tabblokken
===================== */
.product-tabs {
  display: flex;
  justify-content: center;
  /* centreert horizontaal */
  align-items: stretch;
  gap: 2rem;
  margin: 3rem auto 4rem auto;
  width: 100%;
  max-width: 1000px;
  /* houdt het mooi strak */
}

.tab {
  background: #f5f2fa;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  width: 250px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.tab:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tab h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  color: var(--primary);
  text-align: center;
}

.tab p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a3b6a;
  text-align: center;
}




/* Responsive */
@media (max-width: 900px) {
  .product-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.clickable-area {
  display: block;
  /* hele gebied klikbaar */
  text-decoration: none;
  /* verwijder onderstreep */
  color: inherit;
  /* behoud kleur van parent (.bundle-card) */
}

.clickable-area h2 {
  font-size: 20px;
  /* kleiner dan category-intro, groter dan body */
  font-weight: 500;
  /* medium, elegant */
  margin: 8px 0 4px 0;
  /* subtiele ruimte */
  color: #2a1538;
  /* donkere kleur, luxe feel */
  text-decoration: none;
}

.clickable-area p {
  font-size: 14px;
  /* leesbaar maar compact */
  color: #555;
  /* neutraal donkergrijs */
  line-height: 1.5;
  /* genoeg ruimte voor leesbaarheid */
  margin-bottom: 0;
}

/* DEBUG */
.debug * {
  outline: 1px solid red;
}