/** Shopify CDN: Minification failed

Line 204:2 "mrgin" is not a known CSS property
Line 237:73 Unexpected "{"
Line 237:82 Expected ":"
Line 237:89 Unexpected "{"
Line 241:75 Unexpected "{"
Line 241:84 Expected ":"
Line 241:91 Unexpected "{"
Line 291:0 Expected "}" to go with "{"

**/
/* --------------------------------
  VOLUME CARD – GESTYLED ALS COMPLEMENTARY
-------------------------------- */
.volume-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  border-radius: var(--card-border-radius);
  color: var(--color-card-foreground);
  background: var(--color-card-background);
  box-shadow:       0 0 0 1px rgba(0, 0, 0, 0.4),   /* donkere rand */
    0 4px 12px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
  margin-bottom: 24px; /* ruimte tussen kaarten */
}

.volume-card:hover,
.volume-card:focus-within {
  background: #94bdaa80;
  box-shadow:
    0 0 0 2px #94bdaa,             /* mintkleurige rand */
    0 0 8px #94bdaa,               /* eerste gloed */
    0 0 20px rgba(148, 189, 170, 0.8); /* extra glow */
  transform: translateY(-2px);     /* kleine lift */
}

/* --------------------------------
  MEDIA
-------------------------------- */
.volume-card-media {
  position: relative;
  overflow: hidden;
}
.volume-card-media figure {
 /* border-radius: calc(var(--card-border-radius) / 1.5); */
  overflow: hidden;
  margin: 0;
}
.volume-card-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --------------------------------
  BODY
-------------------------------- */
.volume-card-body {
  padding: var(--card-body-padding);
  text-align: left;
}

.volume-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 8px 0 0;
}

.volume-card-body .badges {
  margin-bottom: 8px;
  gap: 8px;
  flex-wrap: wrap;
}
  
.volume-card-body .price {
  margin-top: 4px;
}

/* --------------------------------
  THUMBNAIL LAYOUT (zoals complementary)
-------------------------------- */
.layout--volume-thumbnail {
  --thumbnail-width: 70px;
  display: grid;
  grid-template-columns: var(--thumbnail-width) auto auto;
  align-items: center;
  padding-left: 16px;
}

.layout--volume-thumbnail .volume-card-body {
  padding: min(16px, var(--card-body-padding));
  text-align: left;
}

.layout--volume-thumbnail .volume-card-media-overlay,
.layout--volume-thumbnail .card-vendor,
.layout--volume-thumbnail .swatches {
  display: none;
}

.layout--volume-thumbnail .hotspot {
  margin-left: auto;
  margin-right: 16px;
  width: 30px;
  height: 30px;
}

/* --------------------------------
  RESPONSIVE
-------------------------------- */
@media only screen and (max-width: 767px) {
  .volume-card {
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .layout--volume-thumbnail {
    grid-template-columns: 80px auto;
    gap: 12px;
  }

  .volume-card-media img {
    width: 80px;
  }

  .volume-card-title {
    font-size: 1.3rem;
  }
}


/* -----------------------------------
  PRICE
------------------------------------*/
.price-per-piece {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  display: inline-block;
}
@media (max-width: 767px) {
  .price-per-piece {
    font-size: 1.2rem;
  }
}

.volume-card-price-wrapper {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.volume-card-price-wrapper .main-price {
  white-space: nowrap;
}

.volume-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
}

.volume-price-row .main-price {
  white-space: nowrap;
}

.volume-price-row .price-per-piece {
  font-size: 1.4rem;
  color: #6c6c6c;
  white-space: nowrap;
  padding-right: 4px; /* optioneel: kleine buffer van de rand */
}

@media only screen and (max-width: 767px) {
  .volume-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .volume-price-row .price-per-piece {
    padding-right: 0;
  }
}

.main-price {
  font-weight: bold;
}

/* ------------------------------------
DIVIDER
-------------------------------------*/

.divider-with-text {
  display: flex;
  align-items: center;
  text-align: center;
  mrgin: 24px 0;
}
.divider-with-text hr {
  flex: 1;
  border: none;
  border-top: 1px solid #DDE2E6;
  margin: 0 12px;
}
.divider-with-text span {
  font-size: var(--font-size);
  font-weight: var(--font-heading-weight);;
  white-space: nowrap;
  font-family: var(--font-heading-family);
}

/* -----------------------------
SELECTED CARD
------------------------------*/

.volume-card.selected {
  background: #94bdaa80;
  outline: 2px solid #94bdaa;
  box-shadow:
    0 0 0 2px #94bdaa,
    0 0 10px #94bdaa,
    0 0 25px rgba(148, 189, 170, 0.9);
}

.volume-card[role="button"] {
  cursor: pointer;
}

/* 1) Originele prijs verbergen zodra volume-selector actief is */
[data-volume-selector-active="true"] ~ .pdp-content #orig-product-price-{{ section.id }} {
  display: none;
}
/* 2) Bundle-prijs tonen in datzelfde geval */
[data-volume-selector-active="true"] ~ .pdp-content #bundle-product-price-{{ section.id }} {
  display: block;
}

.selected-bundle-output {
  margin-top: 24px;
  font-weight: bold;
  font-size: 1.3rem;
  text-align: center;
}


/* ---------------------------------------
TEXT SIZE (FORMAAT)
-----------------------------------------*/

.volume-card-formaat {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}


/*-----------------------------------------
BEST CHOICE BADGE
-----------------------------------------*/

.meest-gekozen-badge {
.volume-card {
  position: relative;
}

.meest-gekozen-fixed-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  background-color: #1cbf7a;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 16px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}



