/** Shopify CDN: Minification failed

Line 179:17 Expected identifier but found whitespace
Line 179:19 Unexpected "{"
Line 179:29 Expected ":"
Line 180:15 Expected identifier but found whitespace
Line 180:16 Unexpected "0"
Line 180:27 Unexpected "{"
Line 180:37 Expected ":"

**/
.button-container {
    display: flex; /* Use flexbox for horizontal alignment */
    flex-wrap: wrap; /* Allow items to wrap onto multiple lines */
    justify-content: flex-start; /* Distribute space between buttons */
  }
  
  .custombutton {
  border: 1px solid #cbcbcb;
  background-color: white;
  border-radius: 10px;
  display: inline-block;
  color: #111111;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  margin: 0px 2px 5px 0px;
  padding: 4px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  line-height: normal;
  box-sizing: border-box;
  user-select: none; /* Voorkomt dat tekst selecteerbaar is */
  cursor: pointer;    /* Zorgt ervoor dat de knop als een klikbare knop aanvoelt */
    
  }
  
  .custombutton.active {
    background-color: white;
    border: 2px solid #fc5185;
    font-weight: 700;
    padding: 6px;
    box-sizing: border-box;
  }
  .custombutton.inactive {
  background-color: rgb(var( - color-background));
  color: rgb(var( - color-foreground));
  font-weight: 400;
  }

.product-form__radio:checked + label.product-form__label--custom {
  background-color: white; /* Ensure background is consistent */
  border: 2px solid #fc5185;
  font-weight: 700;
  padding: 6px; /* Match original .active padding */
  box-sizing: border-box; /* Ensure padding is included in size */
}

  .custombutton:hover {
  background-color: #F0F0F0;
  }

 .custombutton.soldout {
    opacity: 0.5; /* Reduce opacity for sold out items */
    text-decoration: line-through; /* Add strikethrough */
    cursor: not-allowed; /* Change cursor to indicate not clickable */
  }
  
  .custombutton.soldout:hover {
    background-color: white; /* Prevent hover effect on sold out items */
  }

   .button-container--wide-layout {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between items */
  }
  .bulk-item-wide {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background-color: #ffffff;
    align-items: center;
    transition: box-shadow 0.2s ease-in-out;
  }
  .bulk-item-wide:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .bulk-item-wide__image-column {
    flex-shrink: 0;
    margin-right: 20px;
  }
  .bulk-item-wide__image-column img {
    width: 100px; /* Image display width */
    height: auto;
    display: block;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
  }
  .bulk-item-wide__info-column {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes button to bottom if info is short */
    min-height: 100px; /* Approximate height of image column */
  }
  .bulk-item-wide__info-text {
    margin-bottom: 10px; /* Space between text and button */
  }
  .bulk-item-wide__info-link {
    text-decoration: none;
    color: inherit;
  }
  .bulk-item-wide__title {
    font-weight: 600; /* Semibold */
    font-size: 1.05em; /* Slightly larger title */
    color: #212121; /* Darker text */
    display: block; /* Ensure it takes its own line */
    margin-bottom: 4px;
  }
  .bulk-item-wide__packaging {
    font-size: 0.9em;
    color: #555555;
    display: block;
    margin-bottom: 8px;
  }
  .bulk-item-wide__price-display { /* New container style */
    display: flex;
    text-align: center;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px; /* Add some space above the price */
    line-height: 1.2; /* Adjust line height for price display */
  }
  .bulk-item-wide__price-display .compare-price {
    text-decoration: line-through;
    color: #555; /* Darker grey */
    font-size: 1.4em;
  }
  .bulk-item-wide__price-display .current-price {
    font-size: 1.5em;
    font-weight: 700;
    color: #111111; /* Default color */
  }
  .bulk-item-wide__price-display .current-price.on-sale {
    color: #008000; /* Green for sale price */
  }
  .bulk-item-wide__action .cart-button {
    background-color: #00c800; /* Bright green from image */
    color: white;
    border: 1px solid black;
    padding: 10px 25px; /* Slightly more padding */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    font-weight: 500; /* Medium weight button text */
    border-radius: 25px; /* Fully rounded button */
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-width: 120px; /* Minimum button width */
  }
  .bulk-item-wide__action .cart-button:hover:not(:disabled) {
    background-color: #00a000; /* Darker green on hover */
  }
  .bulk-item-wide__action .cart-button:disabled {
    background-color: #cccccc;
    color: #777777;
    cursor: not-allowed;
    opacity: 0.8;
  }
  .custombutton.bulk-item-wide.inactive {
    /* Styles for inactive state if needed, by default it's just a class marker for JS */
    /* Example: border-color: #aaa; */
  }
  .custombutton.bulk-item-wide.active {
    border-color: {{ settings.color_accent | default: '#007bff' }}; /* Highlight active, using a theme variable or fallback */
    box-shadow: 0 0 0 2px {{ settings.color_accent | default: '#007bff' }};
  }
  
  .cart-button {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;           
    background-color: #ff9800;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .cart-button.smaller-button {
    background-color: #ff9800;  /* Oranje */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 5px;
    padding: 0.8rem 0.8rem;      /* Kleiner dan ‘normale’ knoppen */
    font-size: 1.2rem;
    transition: background-color 0.2s ease;
    width: auto;
  }
  
  .cart-button.smaller-button.placeholder {
    opacity: 0;
    pointer-events: none;
  }
  
  .cart-button.smaller-button:hover {
    background-color: #e68a00;
  }
  
  .custom_slider {
      box-sizing: border-box;
      display: flex;
      overflow-x: auto;
      overflow-y: visible;
      padding-bottom: 10px;
      padding-right: 10px;
      padding-left: 10px;
      width: 100%;
      background-color: #f5f5f5;
  }
  
  .custom_slider::-webkit-scrollbar {
      height: 8px; /* Hoogte van de scrolbalk */
  }
  
  .custom_slider::-webkit-scrollbar-thumb {
      background-color: #cbcbcb; /* Kleur van de "thumb" (het beweegbare deel) */
      border-radius: 10px; /* Maak de scrollbar afgerond */
  }
  
  .custom_slider::-webkit-scrollbar-thumb:hover {
      background-color: #fc5185; /* Kleur als je erover hovert */
  }
  
  .custom_slider::-webkit-scrollbar-track {
      background-color: #f5f5f5; /* Kleur van de achtergrond */
      border-radius: 10px; /* Maak de achtergrond van de scrolbalk afgerond */
  }
  
  /* Voor mobiel */
  @media only screen and (max-width: 599px) {
      .custom_slider {
          overflow-x: scroll;
          justify-content: left;
      }
  }
  
  .custom_slider__item {
      border: 1px solid #cbcbcb;
      background-color: white;
      border-radius: 10px;
      display: inline-block;
      color: #111111;
      margin: .3rem .5rem .3rem 0;
      padding: 10px;
      text-align: center;
      text-transform: uppercase;
      font-size: 14px;
      white-space: nowrap;
      user-select: none; /* Voorkomt dat tekst selecteerbaar is */
      cursor: pointer;    /* Zorgt ervoor dat de knop als een klikbare knop aanvoelt */
      position: relative;
      line-height: normal;
  }
  
  .custom_slider__item.active {
      background-color: white;
      border: 2px solid #fc5185;
      font-weight: 700;
  }
  
  .custom_slider__item.inactive {
      background-color: rgb(var( - color-background));
      color: rgb(var( - color-foreground));
      font-weight: 400;
  }
  
 .textbutton {
  border: 1px solid #e0e0e0; 
  background-color: white;
  border-radius: 10px;
  display: inline-block;
  color: #444444; 
  margin: .3rem .5rem .3rem 0;
  padding: 12px 15px; 
  text-align: center;
  
  font-size: 14px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  line-height: normal;
  user-select: none; 
}

.textbutton.active {
  background-color: white;
  border: 2px solid #fc5185;
  font-weight: 700;
  color: #111111; 
}

.textbutton.inactive {
  background-color: rgb(var( - color-background)); 
  color: rgb(var( - color-foreground)); 
  font-weight: 400;
  border-color: #e0e0e0; 
}

.textbutton.hidden {
  display: none; 
}
  
  
  .brandtext{
      font-family: var(--product-vendor-font);
      font-size: var(--product-vendor-font-size);
      font-weight: var(--product-vendor-font-weight);
      font-style: var(--product-vendor-font-style);
      color: var(--product-vendor-color);
      line-height: 15px;
      letter-spacing: var(--product-vendor-letter-spacing);
      text-transform: var(--product-vendor-text-transform);
  }
  
  
  
  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
  }
  
  .colorchartbutton {
  border: 1px solid #cbcbcb;
  background-color: white;
  border-radius: 10px;
  display: inline-block;
  color: #111111;
  margin: .7rem .5rem .1rem 0;
  padding: 3px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  line-height: normal;
  user-select: none; /* Voorkomt dat tekst selecteerbaar is */
  }
  
  .colorchartbutton.active {
  background-color: white;
  border: 2px solid #fc5185;
  font-weight: 700;
  }
  .colorchartbutton.inactive {
  background-color: rgb(var( - color-background));
  color: rgb(var( - color-foreground));
  font-weight: 400;
  }
  .colorchartbutton:hover {
    background-color: #f0f0f0;
    border: 1px solid #fc5185;
  }
  
  
  .smallertext {
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  cursor: pointer;
  position: relative;
  line-height: normal;
  }
  
  .search-container {
          display: flex;
          justify-content: center;
          margin: 20px 0;
      }
      
  .search-container input[type="text"] {
          width: 200px;
          padding: 10px;
          border: 1px solid #ccc;
          border-radius: 5px;
  }
  
  .search-container button {
          padding: 10px 15px;
          background-color: #3FC1C9;
          color: #fff;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          margin-left: 10px;
  }
  
  .search-container button:hover {
          background-color: #0056b3;
  }
  
  .error-message {
          color: red;
          font-size: 14px;
          margin-top: 5px;
          text-align: center;
  }
  
  .back-to-top {
          display: block;
          margin: 20px 0;
          text-align: center;
          font-size: 16px;
          text-decoration: underline;
          cursor: pointer;
  }
  
  .swatchbutton {
    border: 1px solid #cbcbcb;
    background-color: white;
    border-radius: 10px;
    display: inline-block;
    color: #111111;
    margin: 0px 2px 5px 0px;
    padding: 4px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    line-height: normal;
    box-sizing: border-box;
    user-select: none; /* Voorkomt dat tekst selecteerbaar is */
    cursor: pointer;    /* Zorgt ervoor dat de knop als een klikbare knop aanvoelt */
  }
  
  .swatchbutton.active {
    background-color: white;
    border: 2px solid #fc5185;
    font-weight: 700;
    padding: 6px;
    box-sizing: border-box;
  }
  .swatchbutton.inactive {
  background-color: rgb(var( - color-background));
  color: rgb(var( - color-foreground));
  font-weight: 400;
  }
  .swatchbutton:hover {
  background-color: #F0F0F0;
  }
  
  
  
  .tab-content {
              display: none;
          }
  
  .tab-content.active {
              display: block;
          }
  
  /* Knipperende border stijl */
  .blink-border {
          animation: blink 0.8s infinite;
          border: 2px solid red;
      }
  
  @keyframes blink {
          0%, 50% {
              border-color: red;
          }
          100% {
              border-color: transparent;
          }
      }
  
  /* Tooltip-element */
  .colorchartbutton .color-tooltip {
    display: none; 
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 120px;
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
  
  .colorchartbutton:hover .color-tooltip {
    display: block;
  }
  
  /* Laat actieve/gevonden swatch oplichten */
  .colorchartbutton.active {
    animation: blink-border 1s infinite alternate;
  }
  @keyframes blink-border {
    from { box-shadow: 0 0 5px 2px #ff0000; }
    to { box-shadow: 0 0 2px 1px #ffaaaa; }
  }
  
  /* ------------------ Modal styling ------------------ */
   .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 99;
      justify-content: center;
      align-items: center;
    }
  
    .modal-overlay.active {
      display: flex;
    }
  
    .modal-content {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      max-width: 400px;
      width: 100%;
      position: relative;
    }
  
    .modal-image {
      display: block;
      margin: 0 auto 20px auto;
      max-width: 100%;
      height: auto;
    }
  
    .modal-close {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 4rem;
      font-weight: bold;
      color: #333;
      cursor: pointer;
    }
  
    .modal-close:hover {
      color: #000;
    }
  
    .modal-button {
      margin-top: 10px;
    }
  
  
  /* ------------------ Knoppen in modal ------------------ */
  .modal-button {
    display: inline-block;
    margin-right: 8px;
    padding: 8px 12px;
    border: none;
    background-color: #2e2e2e; 
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
  }
  .modal-button:hover {
    background-color: #555;
  }
  
  /* ------------------ Responsive ------------------ */
  @media (max-width: 600px) {
    .modal-content {
      margin: 60px 10px;
      width: calc(100% - 20px);
    }
    .colorchartbutton .color-tooltip {
      bottom: auto;
      top: 100%; /* Tooltip verschijnt boven in desktop, maar in mobiel kun je 'm onder maken */
    }
  }
/* Hide radio inputs for custom variant picker */
.product-form__radio {
  display: none;
}

 /* Styling voor de FAQ Container */
  .faq-container {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    font-family: inherit;
  }

  /* Styling voor FAQ Items */
  .faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background-color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  .faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Styling voor FAQ Vragen - CSS-only toggle functionaliteit */
  .faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    transition: background-color 0.3s ease;
    outline: none;
  }

  .faq-question:hover {
    background-color: #f9f9f9;
  }

  .faq-question h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: inline-block;
    width: calc(100% - 25px);
  }

  .faq-icon {
    float: right;
    color: #555;
    font-size: 12px;
  }

  /* Styling voor FAQ Antwoorden */
  .faq-answer {
    display: none;
    background-color: #fcfcfc;
    padding: 0 20px;
    border-top: 1px solid #eee;
  }

  .faq-answer p {
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
  }

  .faq-answer a {
    color: #0066cc;
    text-decoration: none;
  }

  .faq-answer a:hover {
    text-decoration: underline;
  }

  /* CSS-only expand/collapse functionality using checkboxes */
  .faq-toggle {
    display: none;
  }

  .faq-toggle:checked+.faq-question .faq-icon {
    transform: rotate(180deg);
  }

  .faq-toggle:checked~.faq-answer {
    display: block;
  }

  /* Responsive aanpassingen */
  @media (max-width: 768px) {
    .faq-question h3 {
      font-size: 15px;
    }

    .faq-answer p {
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .faq-question {
      padding: 15px;
    }

    .faq-question h3 {
      font-size: 14px;
    }
  }
