/* === Scroll Animation (CSS-only reveal — niet afhankelijk van JS) ===
   Voorheen werd opacity:0 pas door JS (Intersection Observer) op 1 gezet; als die
   JS faalde of (oude versie) gecachet was, bleef inhoud onzichtbaar. Nu onthult
   een pure CSS-animatie de inhoud altijd, ongeacht JS. */
.animate-fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: cmsReveal 0.8s cubic-bezier(.4,0,.2,1) forwards;
}
.animate-up {
  opacity: 0;
  transform: translateY(60px);
  animation: cmsReveal 0.8s cubic-bezier(.4,0,.2,1) forwards;
}
/* JS-pad blijft compatibel (in-view forceert eindstand) */
.animate-fade-in.in-view,
.animate-up.in-view {
  opacity: 1;
  transform: none;
}
@keyframes cmsReveal {
  to { opacity: 1; transform: none; }
}


/* ============================================================
   DONK Slijterij – style.css (v2)
   Bootstrap 5 companion stylesheet
   Fonts: Pontano Sans (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Pontano+Sans:wght@300..700&display=swap');

:root {
  --green:      #B1E639;
  --green-2:    #A8C515;
  --green-dark: #8CA811;
  --dark:       #0E0E0E;
  --dark-2:     #1A1A1A;
  --grey-bg:    #f5f5f5;
  --text-muted: #666666;
  --border:     #eeeeee;
  --white:      #ffffff;

  --font-display: "Pontano Sans", sans-serif;
  --font-body:    "Inter", sans-serif;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  color: var(--dark-2);
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-text h1,
.promo-dark h2,
.leuke-section h2,
.jubileum-section h2,
.page-header h1,
.product-detail-info h1 {
  font-family: var(--font-display);
  font-weight: 500;
}
/* ---------- padding between sections ---------- */
.section-padding { padding: 100px 0; }
/* ===== Custom submenu for Cat A ===== */
.custom-cat-submenu {
  min-width: 180px;
  width: auto;
  background: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 0.25rem 0;
  position: absolute;
  left: 0;
  right: auto;
  top: 100%;
  margin-top: 0;
  z-index: 1000;
}
.custom-cat-submenu-link {
  color: #fff !important;
  padding: 0.5rem 1.5rem;
  transition: background 0.2s;
}
.custom-cat-submenu-link:hover, .custom-cat-submenu-link:focus {
  background: var(--green) !important;
  color: #fff !important;
}
@media (min-width: 992px) {
  .navbar-nav .dropdown.position-static {
    position: relative !important;
  }
  .navbar-nav .dropdown:hover > .dropdown-menu.custom-cat-submenu {
    display: block;
    left: 0;
    right: auto;
    top: 100%;
    margin-top: 0;
  }
}

/* ===== Megamenu (Producten): categorieën in meerdere kolommen ===== */
.custom-mega-menu {
  padding: 0.5rem 0;
}
.custom-mega-cols {
  column-count: 3;
  column-gap: 0;
  min-width: 560px;
}
.custom-mega-link {
  display: block;
  padding: 0.4rem 1.5rem;
  white-space: nowrap;
  break-inside: avoid;      /* voorkom dat een link over 2 kolommen breekt */
}
/* Op tablet iets smaller: 2 kolommen */
@media (max-width: 991.98px) {
  /* Navbar is ingeklapt: megamenu vult de volledige breedte, 1 kolom */
  .custom-mega-cols {
    column-count: 1;
    min-width: 0;
  }
  .custom-mega-menu {
    position: static !important;
    box-shadow: none;
  }
}

/* ===== Nieuws: overzicht (berichten onder elkaar, foto links) ===== */
.news-list-item {
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 1.75rem;
  transition: box-shadow .25s ease;
}
.news-list-item:last-child { margin-bottom: 0; }
.news-list-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
/* Foto volledig zichtbaar (niet croppen). */
.news-list-img {
  display: block;
  width: 100%;
  height: auto;
}
.news-list-img-placeholder {
  min-height: 260px;
  background: var(--green);
  color: var(--white);
  font-size: 3.5rem;
}
.news-list-body {
  padding: 1.75rem 2rem;
}
.news-list-date {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.news-list-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}
.news-list-intro {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--dark-2);
}
.news-list-intro p:last-child { margin-bottom: 0; }
.news-list-item:hover .btn-arrow {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
@media (max-width: 767.98px) {
  .news-list-body { padding: 1.25rem 1.25rem 1.5rem; }
  .news-list-title { font-size: 1.25rem; }
}

/* ===== Nieuws: detailpagina ===== */
.news-detail-back {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}
.news-detail-back:hover { text-decoration: underline; color: var(--dark); }
.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.news-detail-tag {
  background: var(--dark);
  color: var(--white);
  padding: 3px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-detail-date { font-size: 0.85rem; color: var(--dark); font-weight: 600; }
.news-detail-img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.news-detail-lead {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.news-detail { font-size: 1rem; line-height: 1.75; color: var(--dark-2); }
.news-detail img { max-width: 100%; height: auto; }
.news-detail h2, .news-detail h3 { margin-top: 1.5rem; }

/* ===== Product badge and heart icon ===== */
.product-card .product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-block;
  border: 1px solid var(--dark);
  background: var(--white);
  color:  var(--dark);
  font-weight: 500;
  padding: 2px 10px;
  font-size: 0.6rem;
  border-radius: 2px;
  letter-spacing: 1px;
  z-index: 2;
}
.product-card .product-heart {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.3rem;
  color: #222;
  background: none;
  border-radius: 50%;
  padding: 0;
  box-shadow: none;
  transition: color 0.2s;
  cursor: pointer;
  z-index: 2;
}
.product-card .product-heart:hover {
  color: #e74c3c;
}
.product-card .product-heart.is-favorite,
.product-card .product-heart .bi-heart-fill {
  color: #e74c3c;
}

/* ===== OP=OP badge (kassa 'op=op' = discontinued) ===== */
/* Container zodat AANBIEDING en OP=OP netjes onder elkaar stapelen. */
.product-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.product-badges .product-badge,
.opop-notice .product-badge {
  position: static;
  top: auto;
  left: auto;
}
/* Zowel losstaand (detailpagina) als binnen .product-card het OP=OP-accent. */
.product-badge-opop,
.product-card .product-badge.product-badge-opop {
  display: inline-block;
  background: #d6482b;
  border: 1px solid #d6482b;
  color: #fff;
  font-weight: 600;
  padding: 2px 10px;
  font-size: 0.6rem;
  border-radius: 2px;
  letter-spacing: 1px;
}
/* Melding op de productdetailpagina. */
.opop-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 14px;
  font-size: 0.9rem;
  color: var(--dark-2);
}
.opop-notice .product-badge-opop { font-size: 0.7rem; }

/* ===== Categorie-omschrijving + afbeelding (boven de productblokjes) ===== */
.category-intro {
  margin-bottom: 24px;
}
.category-intro-inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.category-intro-img {
  flex: 0 0 240px;
  max-width: 240px;
}
.category-intro-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.category-intro-text {
  flex: 1 1 320px;
  text-align: left;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.98rem;
}
@media (max-width: 575.98px) {
  .category-intro-img { flex-basis: 100%; max-width: 100%; }
}

/* ===== Kortingsregel in winkelwagen / bestelproces ===== */
.cart-summary-discount,
.summary-row.summary-discount {
  color: #2e7d32;
  font-weight: 600;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 0.8rem;
  padding: 8px 0;
}
.top-bar a { color: var(--white); text-decoration: none; }
.top-bar .top-bar-btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 3px 14px;
  border-radius: 3px;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all .2s;
}
.top-bar .top-bar-btn:hover { background: var(--green); color: var(--dark); border-color: var(--green); }
.top-bar i { color: var(--green); margin-right: 6px; }

/* Top-bar boven de absolute navbar laten staan zodat de zoekresultaten erover vallen */
.top-bar { position: relative; z-index: 1080; }

/* ========== HEADER PRODUCT SEARCH ========== */
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
}
.header-search .header-search-icon {
  position: absolute;
  left: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  pointer-events: none;
}
.header-search-input {
  width: 240px;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,0.25);
  background: var(--white);
  color: var(--dark-2);
  border-radius: 20px;
  padding: 5px 14px 5px 32px;
  font-size: 0.8rem;
  line-height: 1.4;
  outline: none;
  transition: box-shadow .2s, border-color .2s;
}
.header-search-input::placeholder { color: var(--text-muted); }
.header-search-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(177,230,57,0.35);
}
.header-search-input::-webkit-search-cancel-button { cursor: pointer; }

/* Resultaten-dropdown */
.header-search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 340px;
  max-width: 86vw;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
  z-index: 1081;
  max-height: 420px;
  overflow-y: auto;
  padding: 6px;
}
.top-bar .header-search-item,
.header-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--dark-2);
  transition: background .15s;
}
.header-search-item .header-search-title { color: var(--dark-2); }
.header-search-item:hover,
.header-search-item:focus { background: var(--grey-bg); }
.header-search-thumb {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 44px;
  background: var(--grey-bg);
  border-radius: 4px;
}
.header-search-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.header-search-title {
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-search-price {
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 600;
}
.header-search-empty {
  padding: 14px 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.header-search-opop {
  align-self: flex-start;
  margin-top: 2px;
  background: #d6482b;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 1px 6px;
  border-radius: 2px;
}

@media (max-width: 991px) {
  .header-search { width: 100%; }
  .header-search-input { width: 100%; }
  .header-search-results { width: 100%; left: 0; right: auto; max-width: 100%; }
}

/* ========== NAVBAR – TRANSPARENT ========== */
.navbar-wrapper {
  position: absolute;
  top: 40px;     /* below top bar */
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
}
.navbar-wrapper .navbar {
  background: transparent !important;
  padding: 20px 0;
  border: none;
}
.navbar-wrapper .nav-link {
  color: var(--dark-2) !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0.9rem !important;
  letter-spacing: 1px;
}
.navbar-wrapper .nav-link:hover,
.navbar-wrapper .nav-link.active { color: var(--dark-2) !important; opacity: 0.7; }

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: absolute;
  max-width: 350px;
  top: 70px;
}
.navbar-brand-logo .hex-icon {
  width: 54px; height: 54px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.9rem;
  font-family: var(--font-display);
}
.navbar-brand-logo .brand-text {
  line-height: 1;
  color: var(--dark);
  font-family: var(--font-display);
}
.navbar-nav{
  width: 100%;
  background: var(--white);
}
.navbar-brand-logo .brand-text small { font-size: 0.65rem; display: block; font-style: italic; margin-bottom: 2px; }
.navbar-brand-logo .brand-text .brand-main { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.5px; }
.navbar-brand-logo .brand-text .brand-sub { font-size: 1.4rem; font-weight: 800; letter-spacing: -1px; display: block; }

.cart-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  position: relative;
}
.cart-btn .cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--green-2, #A8C515);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px #fff;
}
.account-btn {
  width: 44px; height: 37px;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: #000;
  font-size: 1.4rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  transition: color .2s, background .2s;
}
.account-btn:hover { color: var(--green-2); background: #f3f3f3; }

/* Navbar on solid background pages */
.navbar-solid {
  position: static;
  background: var(--white) !important;
  border-bottom: 1px solid var(--border);
}
.navbar-solid .navbar { padding: 12px 0; }

/* ========== BUTTONS ========== */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
  padding: 10px 22px;
  border-radius: 0px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s ease;
  font-family: var(--font-body);
}
.btn-arrow i { font-size: 1rem; transition: transform .25s; }
.btn-arrow:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-arrow:hover i { transform: translateX(4px); }
 .promo-content .btn-arrow-green{
  background: transparent;
  color: var(--white);
  border-color: var(--white);
 }
/* Green filled arrow button (hero default) */
.btn-arrow-green {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-arrow-green:hover { background: var(--green); border-color: var(--green); color: var(--white); }

/* ---------- Section helpers ---------- */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4rem;
  letter-spacing: 0.5px;
}

/* ========== HERO ========== */
.hero {
  background: url("../img/Hero-Liquore.jpg") no-repeat bottom center/cover;
  min-height: 640px;
  padding: 270px 0 150px;
  position: relative;
  overflow: hidden;
}
.hero-text .eyebrow {
  color: var(--dark);
  letter-spacing: 2px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
  font-family: var(--font-body);
  letter-spacing: -1px;
}
.hero-text p {
  color: var(--dark-2);
  font-size: 1rem;
  max-width: 420px;
  line-height: 1.7;
  margin-top: 1.25rem;
}
.hero-img-wrap img {
  width: 100%;
  max-width: 640px;
  border-radius: 12px;
  object-fit: cover;
}

/* ========== ASSORTIMENT CAROUSEL ========== */
.assort-carousel { position: relative; }
.assort-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow .25s;
}
.assort-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.assort-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.assort-card .assort-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.assort-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}
.assort-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}
.assort-card .btn-arrow { width: 100%; justify-content: center; }
/* On card hover → button turns green */
.assort-card:hover .btn-arrow {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.assort-card:hover .btn-arrow i { transform: translateX(4px); }

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px; height: 55px;
  background: transparent;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  z-index: 5;
  color: var(--dark);
  font-size: 1.1rem;
}
.carousel-arrow:hover { color: var(--green); }
.carousel-arrow.prev { left: -50px; }
.carousel-arrow.next { right: -50px; }

/* ========== PRODUCT CARD ========== */
.product-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s;
  background: var(--white);
}
.product-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.10); }
.product-card .card-img-top {
  height: 300px;
  width: 100%;
  object-fit: contain;
  padding: 8px;
  background: var(--grey-bg);
}
.product-card .card-body { padding: 1rem; }
.product-card .product-name {
  font-size: 1rem;
  color: var(--dark-2);
  margin-bottom: 4px;
  font-weight: 500;
  text-align: center;
}
.product-card .price {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--dark-2);
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-body);
  text-align: center;
  margin-top: 15px;
  margin-bottom: 20px;
}
.product-card .btn-arrow {
  width: 100%;
  justify-content: center;
  padding: 8px 14px;
  font-size: 0.75rem;
}
.product-card:hover .btn-arrow {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.product-card:hover .btn-arrow i { transform: translateX(4px); }

/* ========== DARK PROMO SECTION ========== */
.promo-dark {
  /*background: url("../img/theeenbg.jpg") no-repeat center center/cover;*/
  background: #000;
  color: var(--white);
}
.promo-dark h2 { font-size: 2.2rem; font-weight: 700; color: var(--white); }
.promo-dark p { color: #ababab; max-width: 420px; line-height: 1.7; margin: 18px 0 24px; }

/* Ensure promo image fills the left column and both columns match height */
.promo-dark .row { align-items: stretch; }

/* Make the image cover the left half fully and apply left-side rounding */
.promo-dark .image-col {
  padding: 0; /* ensure no extra spacing from column */
}
.promo-dark .image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px 0 0 12px;
}
.promo-dark .promo-content img{
  margin-bottom: 50px;
}
.promo-dark .promo-content .btn-arrow{
  margin-top: 20px;
}
/* Right column: dark panel padding and right-side rounding */
.promo-dark .promo-content {
  padding: 68px 60px;
  display: block;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 12px 12px 0;
}

/* Reduce heading width on smaller screens to avoid overflow */
.promo-dark h2 { max-width: 560px; }

/* ========== LEUKE CADEAUS SECTION ========== */
.leuke-section { background: #f2f2f2 }
.leuke-section h2 { font-size: 2.2rem; font-weight: 700; }
.leuke-section p { color: var(--text-muted); max-width: 420px; line-height: 1.7; margin: 18px 0 24px; }
.leuke-section img { width: 100%; border-radius: 10px; object-fit: cover; max-height: 420px; }

/* ========== USP BAR ========== */
.usp-bar { background: var(--green); padding: 40px 0; }
.usp-item { color: var(--white); }
.usp-item i { font-size: 1.7rem; display: block; margin-bottom: 8px; }
.usp-item span { font-weight: 500; font-size: 1.3rem; display: block; margin: 15px 0;}
.usp-bar p{max-width: 320px;}
/* ========== PAGE HEADER (category pages) ========== */
.page-header { background: var(--green); padding: 80px 0 60px; color: var(--dark); margin-top: 0; }
.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--font-body);
  letter-spacing: -1px;
}
.page-header p { text-align: center; max-width: 640px; margin: 12px auto 0; color: var(--dark-2); }

/* ========== AUTH / ACCOUNT FORMS (login, registreren) ========== */
.auth-form .form-label { font-weight: 500; color: var(--dark-2); margin-bottom: 4px; }
.auth-form .form-label .req { color: #d9534f; margin-left: 2px; }
.auth-form .form-control,
.auth-form .form-select {
  border-radius: 0;
  border: 1px solid var(--border, #ddd);
  padding: 10px 12px;
  font-size: 0.95rem;
}
.auth-form .form-control:focus,
.auth-form .form-select:focus {
  border-color: var(--green-2, #A8C515);
  box-shadow: 0 0 0 0.15rem rgba(177,230,57,0.30);
}
.auth-form .cfield { display: none !important; }
.auth-alert {
  background: #fdecea;
  border: 1px solid #f5c6cb;
  color: #a33;
  padding: 10px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}
.auth-switch { margin-top: 18px; font-size: 0.9rem; color: var(--text-muted); }
.auth-switch a { color: var(--green-dark, #8CA811); font-weight: 600; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

/* Account-pagina (profiel) */
.account-bar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  margin-bottom: 24px; font-size: 0.95rem; color: var(--text-muted);
}
.account-bar-actions { display: inline-flex; gap: 10px; flex-wrap: wrap; }
.account-bar .account-logout { padding: 7px 16px; font-size: 0.75rem; }
.account-card {
  border: 1px solid var(--border, #eee);
  background: var(--white);
  padding: 26px 28px;
  margin-bottom: 26px;
}
.account-card h2 {
  font-size: 1.3rem;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border, #eee);
}
.account-radio { margin-right: 18px; font-weight: 400; cursor: pointer; }
.account-radio input { margin-right: 5px; }

/* ========== FILTER SIDEBAR ========== */
.filter-sidebar h5 {
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  color: var(--dark-2);
  border-bottom: 2px solid var(--green);
  padding-bottom: 6px;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.filter-section-title {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--dark-2);
  margin-bottom: 8px;
}
.filter-sidebar .form-check-label { font-size: 0.88rem; color: #444; }
.filter-sidebar .form-check-input:checked { background-color: var(--green); border-color: var(--green); }
.btn-filter {
  background: var(--green);
  color: var(--dark);
  border: none;
  padding: 9px 20px;
  border-radius: 3px;
  font-size: 0.85rem;
  width: 100%;
  font-weight: 600;
  transition: background .2s;
}
.btn-filter:hover { background: var(--green-dark); }

/* Sort bar */
.sort-bar {
  background: var(--grey-bg);
  padding: 11px 16px;
  border-radius: 6px;
  font-size: 0.88rem;
}

/* Pagination */
.page-link { color: var(--dark); }
.page-item.active .page-link { background: var(--green); border-color: var(--green); color: var(--dark); }
.page-link:hover { color: var(--green-dark); }

/* ========== JUBILEUM SECTION ========== */
.jubileum-section { padding: 80px 0; background: var(--white); }
.jubileum-section h2 { font-size: 2.2rem; font-weight: 700; }
.jubileum-section p { color: var(--text-muted); max-width: 460px; line-height: 1.7; margin: 18px 0 24px; }
.jubileum-section img { width: 100%; border-radius: 10px; object-fit: cover; }

/* ========== PRODUCT DETAIL ========== */
.breadcrumb-plain { font-size: 0.85rem; color: var(--text-muted); padding: 14px 0; }
.breadcrumb-plain a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-plain a:hover { color: var(--dark); }
.breadcrumb-plain .sep { margin: 0 6px; }

.product-gallery-main {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
.product-gallery-main img { width: 100%; object-fit: cover; max-height: 460px; }
.product-gallery-thumb { display: flex; gap: 10px; margin-top: 12px; }
.product-gallery-thumb img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s;
}
.product-gallery-thumb img:hover,
.product-gallery-thumb img.active { border-color: var(--green); }

.product-detail-info h1 { font-size: 2rem; font-weight: 700; font-family: var(--font-body); letter-spacing: -0.5px; }
.product-detail-info .price-big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-2);
  margin: 12px 0;
}
.product-detail-info .description { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.qty-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
}
.qty-wrapper button {
  background: var(--grey-bg);
  border: none;
  width: 40px; height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s;
}
.qty-wrapper button:hover { background: #e0e0e0; }
.qty-wrapper input {
  border: none;
  width: 56px; height: 44px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  outline: none;
}
.btn-add-cart {
  background: var(--green);
  color: var(--dark);
  border: 1.5px solid var(--green);
  padding: 11px 30px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .25s;
}
.btn-add-cart:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--dark); }
.btn-add-cart i { transition: transform .25s; }
.btn-add-cart:hover i { transform: translateX(4px); }
.free-shipping-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 8px; }
.free-shipping-note i { color: var(--green-dark); }

/* ========== FOOTER ========== */
footer { background: var(--dark); color: #ababab; padding: 55px 0 22px; }
footer h6 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}
footer a { color: var(--white); text-decoration: none; font-size: 0.85rem; display: block; margin-bottom: 15px; }
footer a:hover { color: var(--green); }
footer .footer-logo-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
footer .footer-logo-brand .hex-icon {
  width: 44px; height: 44px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.8rem;
  font-family: var(--font-display);
}
footer .footer-logo-brand .brand-text { color: var(--white); line-height: 1.1; }
footer .footer-logo-brand .brand-text small { font-size: 0.6rem; font-style: italic; opacity: 0.7; display: block; }
footer .footer-logo-brand .brand-text .brand-main { font-size: 0.95rem; font-weight: 700; }
footer .footer-logo-brand .brand-text .brand-sub { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.5px; }
footer p.small { font-size: 0.85rem; line-height: 1.6; color: var(--white); }
footer .social-icons { display: flex; gap: 14px; margin-top: 14px; }
footer .social-icons a { font-size: 1.25rem; display: inline-block; margin-bottom: 0; }
footer .footer-check a { display: flex; align-items: center; gap: 6px; }
footer .footer-check i { color: var(--green); }
footer .footer-bottom {
  margin-top: 36px;
  font-size: 0.8rem;
  text-align: center;
  color: var(--white);
}
.contact-col-margins a, .contact-col-margins p{
  margin-left: 40px;
}
.contact-col-margins i{
  position: absolute;
  margin-left: -40px;
  width: 25px;
  height: 25px;
  background: var(--green);
  text-align: center;
  border-radius: 50%;
  align-content: center;
  color: var(--dark);
}
.contact-col-margins a:hover i{
  background: var(--white);
}
/* ========== cADEAUS PAGE CSS ========== */
.cadeaus-hero-desc{
  color: var(--dark);
  max-width: 600px;
  margin: auto;
}

/* ========== cADEAUS PAGE CSS ========== */
.product-detail-info h1{
  font-size:2.3rem; 
  font-weight:600; 
  letter-spacing:0.01em; 
  margin-bottom:18px;
  text-transform: uppercase;
}
.product-detail-info .price-css{
  font-size:2.5rem; font-weight:700; color: var(--dark-2);;
}
.product-detail-info .sale-css{
  font-size:1.5rem; color:#bbb; text-decoration:line-through;
}
.product-detail-info .quantity-css{
  max-width:100%; border:1px solid #bbb; border-radius:2px;
}
.product-detail-info #qtyMinus{
  background:none; border:none; font-size:2rem; width:56px; height:56px; color:#7a4b5a;
}
/* ========== RESPONSIVE ========== */
@media (min-width: 991px){
  .mobileshowsection { display: none; }
}
@media (max-width: 991px) {
  .hero { padding: 100px 0 60px; min-height: auto; background: var(--green) !important;}
  .hero-text h1 { font-size: 2.6rem; }
  .navbar-wrapper .nav-link { color: var(--dark-2) !important; }
  .navbar-wrapper .navbar-collapse {
    background: var(--white);
    margin-top: 10px;
    padding: 16px;
    border-radius: 6px;
    text-align: left;
    position: absolute;
    width: 100%;
    max-width: 100%;
    left: 0;
  }
  .promo-dark{ background: var(--dark) !important;}
  .leuke-section{ background: #F2F2F2 !important;}
  .carousel-arrow.prev { left: 6px; }
  .carousel-arrow.next { right: 6px; }
  .product-card .btn-arrow{
    font-size: 0.6rem;
  }
  .promo-dark .promo-content{
    padding: 68px 0px;
  }
  .section-padding { padding: 60px 0; }
  .section-title{ font-size: 1.8rem; margin-bottom: 2.3rem; }
  .navbar-brand-logo{
    max-width: 170px;
    top: 10px;
  }
  .menu-align-css{
    text-align: right;
  }
  .navbar-wrapper{
    top: 70px;
  }
  .section-padding { padding: 60px 0; }
  .section-title{ font-size: 1.8rem; margin-bottom: 2.3rem; }
  .navbar-brand-logo{
    max-width: 170px;
    top: 10px;
  }
  .menu-align-css{
    text-align: right;
  }
  .navbar-wrapper{
    top: 70px;
  }
}

/* ===== MOBIELE HEADER FIX ===== */
/* De navbar/logo stonden absoluut gepositioneerd (ontworpen voor een korte top-bar).
   Op mobiel is de top-bar hoog (openingstijden + knop + zoekbalk), waardoor de
   absolute navbar over het logo viel én de top-bar de navigatie afdekte.
   Oplossing: op mobiel alles normaal laten stromen (static). */
@media (max-width: 991px) {
  .navbar-wrapper {
    position: static !important;
    top: auto !important;
  }
  .navbar-wrapper .navbar { padding: 10px 0; }
  .navbar-brand-logo {
    position: static !important;
    top: auto !important;
  }
  .navbar-wrapper .navbar-collapse { z-index: 1000; }
  .top-bar { z-index: 5; }
}

/* ===== HERO-TITEL VS LOGO (middelgrote schermen) ===== */
/* Tussen 992px en 1199px staat het logo nog absoluut linksboven, maar is het
   venster smal genoeg dat de gecentreerde hero-<h1> ertegenaan loopt. We duwen
   de titel dan onder het logo. Alleen de groene "kleine" hero's (inline stijl),
   niet de homepage-hero met afbeelding. */
/* Desktop/tablet: hero-titel naast het logo, links uitgelijnd met de navigatiebalk erboven */
   @media (min-width: 992px) {
     .hero[style*="--green"] {
       padding-top: 125px !important;   /* terug naar normaal: titel naast i.p.v. onder logo */
     }
     .hero[style*="--green"] .container {
       text-align: left !important;     /* overschrijft Bootstrap .text-center */
       padding-left: 33.333%;           /* gelijk met start van de menukolom (col-lg-4 + col-lg-8) */
     }
   }

.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  line-height: 1;
}

//Webshop
.cart-wrap {
  padding-top: 40px;
  padding-bottom: 60px;
}
.cart-row {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  transition: opacity 0.3s ease;
}
.cart-row.is-removing {
  opacity: 0;
}
.cart-row-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #eee;
}
.cart-row-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cart-row-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 4px;
}
.cart-row-title a {
  color: inherit;
  text-decoration: none;
}
.cart-row-title a:hover {
  color: #7a4b5a;
}
.cart-row-size {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 8px;
}
.cart-row-stock-warning {
  color: #d9534f;
  font-size: 0.85rem;
  margin-top: 6px;
  display: block;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  background: #fff;
}
.cart-qty button {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  color: #7a4b5a;
  cursor: pointer;
}
.cart-qty button:disabled {
  color: #bbb;
  cursor: not-allowed;
}
.cart-qty .qty-value {
  min-width: 36px;
  text-align: center;
  font-weight: 600;
  color: #222;
}
.cart-qty.is-updating {
  opacity: 0.5;
  pointer-events: none;
}
.cart-row-price {
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
  text-align: right;
}
.cart-row-delete {
  background: none;
  border: none;
  color: #999;
  font-size: 1.3rem;
  padding: 4px 8px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.cart-row-delete:hover {
  color: #d9534f;
}

/* Totaalblok rechts */
.cart-summary {
  background: #f7f7f7;
  padding: 24px;
  position: sticky;
  top: 100px;
}
.cart-summary h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
}
.cart-summary-row.total {
  border-top: 1px solid #ddd;
  margin-top: 10px;
  padding-top: 14px;
  font-weight: 700;
  font-size: 1.15rem;
}
.cart-summary-note {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  text-align: right;
  margin-top: 4px;
}
.btn-checkout {
  display: block;
  width: 100%;
  background: #B1E639;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 0;
  border: none;
  border-radius: 0;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  margin-top: 18px;
  transition: opacity 0.2s ease;
}
.btn-checkout:hover {
  opacity: 0.9;
  color: #fff;
}
.btn-continue {
  display: block;
  width: 100%;
  background: #fff;
  color: #7a4b5a;
  border: 2px solid #7a4b5a;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 0;
  border-radius: 0;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-continue:hover {
  background: #7a4b5a;
  color: #fff;
}

/* Lege winkelwagen */
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty .bi {
  font-size: 3rem;
  color: #ccc;
  margin-bottom: 16px;
}

/* Toast (hergebruik van productpagina-style) */
.cart-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #B1E639;
  color: #fff;
  padding: 14px 20px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
}
.cart-toast.show {
  opacity: 1;
  transform: translateX(0);
}
.cart-toast.error {
  background: #d9534f;
}

@media (max-width: 767px) {
  .cart-summary {
    position: static;
    margin-top: 30px;
  }
  .cart-row-price {
    text-align: left;
  }
}

.checkout-wrap {
  padding-top: 40px;
  padding-bottom: 60px;
}
.checkout-intro {
  margin-bottom: 30px;
  color: #555;
}
.checkout-intro a {
  color: #7a4b5a;
  font-weight: 500;
}

/* Form cards */
.checkout-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 24px 28px;
  margin-bottom: 20px;
}
.checkout-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
  color: #222;
}
.checkout-card h2 .step-num {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: #7a4b5a;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 0.85rem;
  line-height: 26px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Form inputs */
.checkout-card .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 4px;
}
.checkout-card .form-label .req {
  color: #d9534f;
  margin-left: 2px;
}
.checkout-card .form-control,
.checkout-card .form-select {
  border-radius: 0;
  border: 1px solid #ddd;
  padding: 10px 12px;
  font-size: 0.95rem;
}
.checkout-card .form-control:focus,
.checkout-card .form-select:focus {
  border-color: #7a4b5a;
  box-shadow: 0 0 0 0.15rem rgba(122,75,90,0.15);
}
.checkout-card textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

/* Radio-cards voor verzendwijze */
.send-method-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.send-method-option {
  border: 2px solid #e5e5e5;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.send-method-option:hover {
  border-color: #c0a0aa;
}
.send-method-option input[type="radio"] {
  margin-top: 4px;
  accent-color: #7a4b5a;
}
.send-method-option.is-active {
  border-color: #7a4b5a;
  background: #faf6f7;
}
.send-method-option strong {
  display: block;
  font-size: 0.95rem;
  color: #222;
  margin-bottom: 2px;
}
.send-method-option small {
  color: #777;
  font-size: 0.82rem;
}

/* AV checkbox */
.av-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: #f7f7f7;
  border-left: 3px solid #7a4b5a;
}
.av-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #7a4b5a;
  flex-shrink: 0;
}
.av-row label {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
}
.av-row a {
  color: #7a4b5a;
  font-weight: 500;
}

/* Submit knop */
.btn-checkout-submit {
  display: block;
  width: 100%;
  background: #B1E639;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 0;
  border: none;
  border-radius: 0;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  margin-top: 20px;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.btn-checkout-submit:hover {
  opacity: 0.9;
  color: #fff;
}
.btn-checkout-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Cart-samenvatting (hergebruik van winkelwagenpagina) */
.checkout-summary {
  background: #f7f7f7;
  padding: 24px;
  position: sticky;
  top: 100px;
}
.checkout-summary h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
}
.summary-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}
.summary-item:last-of-type {
  border-bottom: none;
  padding-bottom: 16px;
}
.summary-item-img {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 1px solid #eee;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.summary-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.summary-item-info {
  flex: 1;
  min-width: 0;
}
.summary-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 2px;
  line-height: 1.3;
}
.summary-item-meta {
  font-size: 0.8rem;
  color: #888;
}
.summary-item-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: #222;
  text-align: right;
  white-space: nowrap;
}
.summary-totals {
  margin-top: 14px;
  border-top: 1px solid #ddd;
  padding-top: 14px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.92rem;
}
.summary-row.total {
  border-top: 1px solid #ddd;
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}
.summary-edit-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: #7a4b5a;
  text-decoration: none;
}
.summary-edit-link:hover {
  text-decoration: underline;
  color: #7a4b5a;
}

@media (max-width: 991px) {
  .checkout-summary {
    position: static;
    margin-top: 30px;
  }
}

//Fix
/* Effen zwart i.p.v. de gecombineerde achtergrondfoto */
.promo-dark {
  background: #000;          /* of var(--black) als je die hebt */
  color: var(--white);
}

/* Desktop-foto standaard verborgen; mobiel toont de <img> */
.promo-foto-desktop {
  display: none;
}

/* Desktop (lg en hoger, Bootstrap-breakpoint 992px) */
@media (min-width: 992px) {

  /* Mobiele afbeelding verbergen op desktop */
  .promo-foto .mobileshowsection {
    display: none;
  }

  /* Kolom strekt mee met de hoogte van de tekstkolom (flex stretch) */
  .promo-foto {
    position: relative;
  }

  /* CMS-foto als cover, vult de hele linkerkolom */
  .promo-foto-desktop {
    display: block;
    position: absolute;
    inset: 0;
    background-size: cover;
  }
}

.leuke-foto-desktop { display: none; }

@media (min-width: 992px) {
  .leuke-foto-desktop {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;          /* of vervang door een min-height naar wens */
    background-size: cover;
    background-position: center;
    border-radius: 1rem;          /* alleen als blok 4 dat ook heeft */
  }
}

.cfield { display: none; }
/* ========== PRODUCT REVIEWS ========== */
.product-rating { display: flex; align-items: center; gap: 10px; margin: -6px 0 14px; font-size: 0.95rem; }
.product-rating .stars { color: #f5a623; letter-spacing: 1px; }
.product-rating .rating-text { color: var(--text-muted); }
.product-rating .rating-text a { color: var(--green-dark, #8CA811); text-decoration: none; }
.product-rating .rating-text a:hover { text-decoration: underline; }
.product-rating-empty .rating-text { font-size: 0.85rem; }

.product-reviews { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border, #eee); }
.product-reviews h3 { font-size: 1.2rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.product-reviews .review-avg-badge { font-size: 0.85rem; font-weight: 600; color: #f5a623; background: #fff8ec; padding: 3px 10px; border-radius: 4px; white-space: nowrap; }
.review-item { background: #f5f5f5; border-radius: 6px; padding: 14px 16px; margin-bottom: 12px; }
.review-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.review-head .review-name { font-weight: 600; }
.review-head .review-stars { color: #f5a623; letter-spacing: 1px; font-size: 0.9rem; }
.review-date { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; }
.review-text { font-size: 0.92rem; color: var(--dark-2); }
.review-empty { color: var(--text-muted); font-size: 0.92rem; }
.review-add-btn { margin-top: 18px; }

.black a { color: #fff; }
.black p { max-width: 100% !important; color: #fff !important; }