#sticky-order-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

#sticky-order-btn button {
  font-size: 18px;
  padding: 10px 30px;
  background-color: #007bc4;
  color: #fff;
  border: none;
  border-radius: 6px;
}

#sticky-order-btn.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  #sticky-order-btn button {
    width: 90%;
    font-size: 16px;
  }
}


.stock-warning {
color: hsl(120, 32%, 39%) !important;
}

.vm-stock-msg {
  white-space: nowrap;
  font-size: 1.1em; /* of 1.2em of 1.25em */
  font-weight: bold; /* optioneel: extra opvallend */
  color: green;
}
.vm-stock-msg i {
  margin-right: 5px;
}

.vm-stock-msg-low {
  white-space: nowrap;
  font-size: 1.1em; /* of 1.2em of 1.25em */
  font-weight: bold; /* optioneel: extra opvallend */
  color: brown;
}
.vm-stock-msg-low i {
  margin-right: 5px;
}
.vm-stock-later {
  font-size: 1.1em;
  font-weight: bold;
color: #a66f00;
  white-space: nowrap;
}
.vm-stock-later i {
  margin-right: 5px;
}


.let-op {
  color: red;
  font-size: 1rem; /* Iets groter dan de standaardlettergrootte */
  font-weight: bold;
  background-color: #fff3f3; /* Lichtrode achtergrond voor extra nadruk */
  padding: 5px;
  border: 1px solid red;
  border-radius: 5px;
}

.btn-custom {
  background-color: #007BFF;      /* frisse blauwe kleur */
  color: white !important;
  padding: 6px 15px;              /* minder verticale en horizontale padding */
  border-radius: 4px;             /* iets minder afgerond */
  font-size: 0.9rem;              /* iets kleiner lettertype */
  font-weight: 600;               /* net wat minder dik */
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #0056b3;     /* donkere hover */
}

.product-faq-accordion {
  margin-top: 2rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
  padding: 1.5rem;
}

.product-faq-accordion h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2a2a2a;
}

.faq-item {
  border-top: 1px solid #ddd;
}

.faq-item:first-of-type {
  border-top: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  background: none;
  border: none;
  padding: 1rem 0;
  cursor: pointer;
  position: relative;
  color: #005b82;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:focus {
  outline: 2px solid #005b82;
}

.faq-icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding-bottom: 1rem;
  color: #333;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
}

/* Open status */
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg); /* van + naar x */
}

/* Mobiel */
@media (max-width: 768px) {
  .product-faq-accordion h2 {
    font-size: 1.25rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}


/* Add-to-cart input met icoon links */
input.addtocart-button.btn.btn-primary.btn-lg {
  /* ruimte voor icoon links */
  padding-left: 2.4rem; /* pas aan naar smaak */
  /* het icoon */
  background-image: url("/images/icons/bag-outline-white.svg");
  background-repeat: no-repeat;
  background-position: 12px calc(50% + -1px); /* 12px van links, verticaal gecentreerd */
  background-size: 20px 20px;
}

/* Optioneel: dezelfde look bij :hover/:focus/:active (bootstrap verandert bg soms) */
input.addtocart-button.btn.btn-primary.btn-lg:hover,
input.addtocart-button.btn.btn-primary.btn-lg:focus,
input.addtocart-button.btn.btn-primary.btn-lg:active {
  background-image: url("/images/icons/bag-outline-white.svg");
  background-repeat: no-repeat;
  background-position: 12px calc(50% + -1px);
  background-size: 20px 20px;
}

/* Als je een disabled-staat gebruikt */
input.addtocart-button.btn.btn-primary.btn-lg[disabled],
input.addtocart-button.btn.btn-primary.btn-lg.disabled {
  background-image: url("/images/icons/bag-outline-white.svg");
  background-repeat: no-repeat;
  background-position: 12px calc(50% + -1px);
  background-size: 20px 20px;
  opacity: .65; /* of wat je thema gebruikt */
}

