/* === ALGEMENE STIJL (voor blogs, winkel en FAQ) === */
body, .entry-content {
  font-family: "Nunito Sans", system-ui, sans-serif;
  color: #2f2f2f;
  background-color: #fffdf8;
}

/* Links & knoppen */
a { color: #bfa37a; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }

button, .button, .woocommerce a.button, .woocommerce button.button {
  background: #bfa37a;
  color: #fff;
  border-radius: 10px;
  padding: 8px 16px;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(191,163,122,.25);
  transition: filter .2s ease, transform .2s ease;
}
button:hover, .button:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
}

/* === BLOG GRID === */
.hm-bloggrid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 12px;
}
@media (min-width: 768px) {
  .hm-bloggrid { grid-template-columns: repeat(2, 1fr); }
}

.hm-bloggrid .card {
  background: #fff;
  border: 1px solid #eadfc7;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(191,163,122,.10);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hm-bloggrid .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(191,163,122,.16);
}

.hm-bloggrid .card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.hm-bloggrid .card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 190px;
}
.hm-bloggrid .card__title a {
  color: #242424;
  text-decoration: none;
  font-size: 1.15rem;
}
.hm-bloggrid .card__title a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hm-bloggrid .card__meta {
  color: #6a6a6a;
  font-size: 0.9rem;
}
.hm-bloggrid .card__excerpt {
  color: #555;
  font-size: 0.98rem;
}
.hm-bloggrid .card__more {
  margin-top: auto;
  align-self: flex-start;
  background: #bfa37a;
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(191,163,122,.25);
}

/* === WINKEL GRID (WooCommerce kaarten) === */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px auto !important;
  max-width: 1100px;
  padding: 0 12px;
  list-style: none;
}
@media (min-width: 768px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
}
.woocommerce ul.products li.product {
  background: #fff;
  border: 1px solid #eadfc7;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(191,163,122,.10);
  padding: 14px 16px 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(191,163,122,.16);
}
.woocommerce ul.products li.product a img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin: 0 0 10px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.15rem;
  color: #242424;
  margin-bottom: 6px;
}
.woocommerce ul.products li.product .price {
  color: #bfa37a;
  font-weight: 700;
  margin-bottom: 8px;
}

/* === FAQ ACCORDION (als je mijn FAQ-HTML gebruikt) === */
.hm-faq {
  max-width: 850px;
  margin: 40px auto;
  padding: 0 12px;
}
.hm-faq details {
  background: #fff;
  border: 1px solid #eadfc7;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(191,163,122,.08);
}
.hm-faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 18px;
  font-size: 1.05rem;
  color: #2f2f2f;
}
.hm-faq p {
  margin: 0;
  padding: 0 18px 16px;
  color: #5a544b;
  line-height: 1.6;
  font-size: 1rem;
}
.hm-faq summary::-webkit-details-marker { display: none; }

/* Kleine hover accent bij open FAQ */
.hm-faq details[open] summary {
  color: #bfa37a;
}