@import url("/assets/css/style.css");

/* === SHOP GRID === */
.product-grid .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.shop-hero .page-hero-overlay {
  display: none;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.product-card a.product-link img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px 12px 0 0;
}
.product-card a.product-link img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.product-info {
  padding: 1.5rem;
}
.product-info h3 {
  margin-top: 0;
  font-size: 1.2rem;
}
.product-info .price {
  font-weight: bold;
  color: #007b55;
  margin-bottom: 0.5rem;
}
.product-info .description {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* === KNOPPEN === */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #009966, #00b377);
  color: #fff;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 85, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #00b377, #00cc88);
  box-shadow: 0 6px 15px rgba(0, 123, 85, 0.35);
  transform: translateY(-2px);
}
.btn-success {
  background-color: #007b55;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-success:hover {
  background-color: #005f42;
}
.btn.big {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 10px;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn.big:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 85, 0.3);
}

/* === WINKELWAGEN === */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.cart-table th {
  background: #f8f8f8;
  text-align: left;
  padding: 1rem;
  font-weight: 600;
  color: #333;
}
.cart-table td {
  padding: 1rem;
  vertical-align: middle;
  border-top: 1px solid #eee;
}
.cart-product {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cart-product img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-table input[type="number"] {
  width: 70px;
  padding: 0.3rem;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.2s;
}
.cart-table input[type="number"]:focus {
  border-color: #007b55;
  outline: none;
}
.btn-remove {
  background: #ffdddd;
  border: none;
  color: #d33;
  font-size: 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  transition: all 0.2s ease;
}
.btn-remove:hover {
  background: #ffcccc;
  transform: scale(1.1);
}
.cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.cart-total h3 {
  font-size: 1.3rem;
  color: #007b55;
}
.empty-cart {
  text-align: center;
  padding: 4rem 0;
}
.empty-cart p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #555;
}

/* === PRODUCT DETAIL === */
.product-detail {
  padding: 5rem 0;
  background: #fafafa;
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.product-gallery {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 1.5rem;
}
.product-gallery .main-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.product-gallery .main-image img:hover {
  transform: scale(1.02);
}
.product-gallery .thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: center;
}
.product-gallery .thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.product-gallery .thumbs img:hover {
  opacity: 1;
  transform: scale(1.05);
}
.product-info-detail {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 2.5rem;
}
.product-info-detail h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #007b55;
}
.product-info-detail .price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #007b55;
  margin-bottom: 1rem;
}
.product-info-detail .description {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 2rem;
}

/* === CHECKOUT === */
.checkout-page {
  padding: 5rem 0;
  background: #fafafa;
  display: flex;
  justify-content: center;
}
.checkout-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 3rem;
  max-width: 800px;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
}
.checkout-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.checkout-card h2 {
  color: #007b55;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border-bottom: 3px solid #00b37725;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.checkout-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.checkout-table th {
  text-align: left;
  background: #f8fbf9;
  color: #007b55;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem;
  border-bottom: 2px solid #e5f0ea;
}
.checkout-table td {
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.checkout-product {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.checkout-product img {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.checkout-product img:hover {
  transform: scale(1.05);
}
.checkout-product span {
  color: #222;
  font-weight: 500;
  font-size: 1rem;
}
.checkout-total {
  display: inline-block;
  margin: 2rem 0 1rem;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #f4fbf7, #eafaf3);
  border: 2px solid #e3f3ea;
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #007b55;
  box-shadow: 0 2px 8px rgba(0, 123, 85, 0.08);
}
.checkout-info {
  margin-top: 1.5rem;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  background: #fdfdfd;
  border-left: 4px solid #00b377;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  text-align: left;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.back-link {
  margin-top: 2rem;
}
.back-link a {
  color: #007b55;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.back-link a:hover {
  text-decoration: underline;
  color: #00b377;
}
/* === WINKELWAGEN ICON (HEADER) === */
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.cart-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 123, 85, 0.2);
  background: #f9fffC;
}

.cart-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(36%) sepia(86%) saturate(343%) hue-rotate(112deg) brightness(96%) contrast(94%);
  transition: transform 0.3s ease;
}

.cart-icon:hover img {
  transform: scale(1.1);
}

/* Teller */
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #00b377, #00cc88);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 123, 85, 0.3);
  border: 2px solid #fff;
}
/* === CHECKOUT PRODUCT LINK STIJL === */
.checkout-product a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.checkout-product a:hover {
  color: #007b55;
  transform: translateX(4px);
}

.checkout-product a span {
  display: inline-block;
  max-width: 300px;
  line-height: 1.4;
}
/* === MODERNE, OVERZICHTELIJKE CHECKOUT === */
.checkout-page {
  padding: 5rem 0;
  background: #fafafa;
  display: flex;
  justify-content: center;
}

.checkout-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  padding: 3rem;
  max-width: 850px;
  width: 100%;
  text-align: left;
}

.checkout-card h2 {
  color: #007b55;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  border-bottom: 3px solid #e8f5ef;
  display: inline-block;
  padding-bottom: 0.5rem;
  width: 100%;
}

/* === TABEL === */
.checkout-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.checkout-table th {
  text-align: left;
  background: #f8fbf9;
  color: #007b55;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem;
  border-bottom: 2px solid #e5f0ea;
}

.checkout-table td {
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
  font-size: 1rem;
  color: #333;
}

/* Productkolom */
.checkout-product {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.checkout-product img {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.checkout-product a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.checkout-product a:hover {
  color: #007b55;
}

/* === TOTAALREGEL === */
.checkout-summary {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 2rem;
}

.checkout-summary .summary-box {
  background: #f8fbf9;
  border: 1px solid #e2f1ea;
  border-radius: 10px;
  padding: 1rem 2rem;
  box-shadow: 0 3px 8px rgba(0, 123, 85, 0.08);
  text-align: right;
}

.checkout-summary .summary-line {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.checkout-summary .summary-total {
  font-size: 1.4rem;
  font-weight: 700;
  color: #007b55;
}

/* === INFO EN KNOP === */
.checkout-info {
  margin-top: 2rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  background: #fdfdfd;
  border-left: 4px solid #00b377;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn.big {
  display: block;
  text-align: center;
  margin: 2rem auto 0;
  background: linear-gradient(135deg, #00a86b, #00c47a);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 168, 107, 0.25);
  transition: all 0.3s ease;
}

.btn.big:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #00c47a, #00e08d);
  box-shadow: 0 6px 16px rgba(0, 168, 107, 0.35);
}

/* === TERUG-LINK === */
.back-link {
  margin-top: 1.5rem;
  text-align: center;
}

.back-link a {
  color: #007b55;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
/* === PRODUCTKAARTEN NETJES EN CONSISTENT === */

.product-grid .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Kaart */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Afbeelding */
.product-card img {
  width: 100%;
  height: 260px; /* ✅ vaste hoogte */
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}

/* Inhoud */
.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* duwt knop omlaag */
}

/* Titel-link */
.product-info h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.product-title-link {
  color: #007b55;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title-link:hover {
  color: #00b377;
  text-decoration: underline;
}

/* Prijs + beschrijving */
.product-info .price {
  font-weight: bold;
  color: #007b55;
  margin-bottom: 0.4rem;
}

.product-info .description {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: auto; /* ✅ duwt knop omlaag */
}

/* Knop */
.product-info form {
  margin-top: 1rem;
}

.product-info .btn.btn-primary {
  width: 100%;
  text-align: center;
  padding: 0.8rem 0;
  border-radius: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #009966, #00b377);
  color: #fff;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 123, 85, 0.25);
  transition: all 0.3s ease;
}

.product-info .btn.btn-primary:hover {
  background: linear-gradient(135deg, #00b377, #00cc88);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 85, 0.35);
}

/* Responsief */
@media (max-width: 768px) {
  .product-card img {
    height: 220px;
  }
}

.back-link a:hover {
  text-decoration: underline;
  color: #00b377;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .checkout-card {
    padding: 2rem;
  }

  .checkout-summary {
    justify-content: center;
  }

  .checkout-summary .summary-box {
    text-align: center;
  }
}

.checkout-product img {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
/* === CTA BANNER (MOOIERE STIJL) === */
.cta-banner {
  background: linear-gradient(135deg, #e0f5ea, #d3f0e2);
  border-top: 2px solid #c0e8d4;
  padding: 5rem 1rem;
  text-align: center;
  margin-top: 6rem;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Subtiel decoratief effect */
.cta-banner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,123,85,0.15) 0%, transparent 70%);
  z-index: 0;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,179,119,0.12) 0%, transparent 70%);
  z-index: 0;
}

/* Inhoud */
.cta-banner .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: 2.2rem;
  color: #004d36;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-banner p {
  font-size: 1.15rem;
  color: #2b2b2b;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Knop */
.cta-banner .btn.btn-secondary {
  background: linear-gradient(135deg, #007b55, #00b377);
  color: #fff;
  padding: 1rem 2.8rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 123, 85, 0.25);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-banner .btn.btn-secondary:hover {
  background: linear-gradient(135deg, #00b377, #00cc88);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 123, 85, 0.35);
}

/* Mobiel */
@media (max-width: 768px) {
  .cta-banner {
    padding: 4rem 1.5rem;
  }
  .cta-banner h2 {
    font-size: 1.7rem;
  }
  .cta-banner p {
    font-size: 1rem;
  }
  .cta-banner .btn.btn-secondary {
    width: 100%;
  }
}

.checkout-product a:hover img {
  transform: scale(1.05);
}

/* Voor kleinere schermen */
@media (max-width: 768px) {
  .cart-icon {
    width: 40px;
    height: 40px;
  }
  .cart-icon img {
    width: 20px;
    height: 20px;
  }
  .cart-count {
    font-size: 11px;
    top: -5px;
    right: -5px;
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
  .checkout-card {
    padding: 2rem;
  }
  .checkout-table th, .checkout-table td {
    font-size: 0.9rem;
    padding: 0.75rem;
  }
  .checkout-product img {
    width: 55px;
    height: 55px;
  }
  .checkout-total {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }
  
}
/* 🛒 Compactere winkelwagen-header */
.shop-hero {
  background: linear-gradient(135deg, #e6f6ef, #f4fbf7); /* subtiel zachtgroen */
  color: #004d36;
  text-align: center;
  padding: 3rem 1rem 2rem; /* minder hoogte */
  position: relative;
  border-bottom: 2px solid #d9f0e5;
}

.shop-hero .page-hero-overlay {
  display: none; /* verwijder donkere overlay */
}

.shop-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.shop-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #0b5a3a;
}

.shop-hero p {
  font-size: 1.05rem;
  color: #2b2b2b;
  margin: 0;
}

/* mobiel */
@media (max-width: 768px) {
  .shop-hero {
    padding: 2.5rem 1rem 1.5rem;
  }

  .shop-hero h1 {
    font-size: 1.8rem;
  }

  .shop-hero p {
    font-size: 0.95rem;
  }
}
/* 🧾 Ultra-minimalistische winkelwagen-header */
.shop-hero {
  background: #fff; /* volledig wit */
  color: #0b5a3a;
  text-align: center;
  padding: 2.5rem 1rem 2rem; /* compacte hoogte */
  border: none; /* geen streep meer */
  box-shadow: none;
}

.shop-hero .page-hero-overlay {
  display: none; /* geen overlay */
}

.shop-hero .container {
  max-width: 800px;
  margin: 0 auto;
}

.shop-hero h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0b5a3a;
}

.shop-hero p {
  font-size: 1.05rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* 📱 Mobiel */
@media (max-width: 768px) {
  .shop-hero {
    padding: 2rem 1rem 1.5rem;
  }

  .shop-hero h1 {
    font-size: 1.8rem;
  }

  .shop-hero p {
    font-size: 0.95rem;
  }
}
/* 🛍️ Netjes gecentreerde en rustige winkelwagen-header */
.shop-hero {
  background: #fff; /* volledig wit */
  color: #0b5a3a;
  text-align: center;
  padding: 3rem 1rem 2.5rem; /* wat lucht boven en onder */
  border: none;
}

.shop-hero .page-hero-overlay {
  display: none;
}

.shop-hero .container {
  max-width: 750px;
  margin: 0 auto;
}

.shop-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0b5a3a;
  margin-bottom: 0.6rem; /* subtiele ruimte */
  line-height: 1.3;
}

.shop-hero p {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* 📱 Mobiel */
@media (max-width: 768px) {
  .shop-hero {
    padding: 2.5rem 1rem 2rem;
  }

  .shop-hero h1 {
    font-size: 1.8rem;
  }

  .shop-hero p {
    font-size: 1rem;
  }
}
/* 🛒 Finale winkelwagen-header: strak, gecentreerd, mooi in balans */
.shop-hero {
  background: #fff;
  text-align: center;
  padding: 3.5rem 1rem 2.5rem;
}

.shop-hero .container {
  max-width: 760px;
  margin: 0 auto;
}

.shop-hero h1 {
  color: #0a5c39; /* donkergroen, rustig maar krachtig */
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.shop-hero p {
  font-size: 1.1rem;
  color: #444;
  margin: 0 auto;
  line-height: 1.6;
  max-width: 620px; /* mooi leesbaar */
}

/* 📱 Mobiel */
@media (max-width: 768px) {
  .shop-hero {
    padding: 2.5rem 1rem 2rem;
  }

  .shop-hero h1 {
    font-size: 1.9rem;
  }

  .shop-hero p {
    font-size: 1rem;
  }
}
/* 🌿 Winkel Hero — lichte frisse stijl */
.shop-hero {
  background: #F5F5F5; /* zacht groen */
  color: #1e6f43;
  text-align: center;
  padding: 4rem 1rem 3rem;
  position: relative;
}

.shop-hero .page-hero-overlay {
  display: none; /* geen donkere laag meer */
}

.shop-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.shop-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
  color: #1e6f43;
}

.shop-hero p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  color: #333;
}

/* 📱 Responsief */
@media (max-width: 768px) {
  .shop-hero {
    padding: 3rem 1rem 2rem;
  }

  .shop-hero h1 {
    font-size: 2rem;
  }

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