/** Shopify CDN: Minification failed

Line 15:0 Unexpected "{"
Line 15:1 Expected identifier but found "%"
Line 24:17 Expected identifier but found whitespace
Line 24:19 Unexpected "{"
Line 24:29 Expected ":"
Line 178:15 Unexpected "{"
Line 178:24 Expected ":"
Line 178:31 Unexpected "{"
Line 182:0 Unexpected "{"
Line 182:1 Expected identifier but found "%"

**/
{%- style -%}
/*
================================================================================
// --- NIEUW DESIGN: PRO-COMMERCE PRODUCTPAGINA ---
================================================================================
*/

/* --- 1. ALGEMENE LAYOUT & VARIABELEN --- */
:root {
  --color-accent: {{ settings.accent_color }};
  --color-accent-text: #ffffff; /* Aanpassen als je accentkleur licht is */
  --color-border: #e5e7eb;
  --color-background-card: #f9fafb;
  --color-text-primary: #111827;
  --color-text-secondary: #6b7280;
  --color-success: #16a34a;
}

/* Layout fix voor 2 kolommen */
@media (min-width: 990px) {
  .product {
    display: flex;
    gap: 50px;
    align-items: flex-start;
  }
  .product .product-media {
    flex: 1 1 55%;
    width: 55%;
  }
  .product .product-info {
    flex: 1 1 45%;
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1) !important;
    padding: 50px;
    top: 40px;
  }
}

/* --- 2. PRODUCT INFO KOLOM (TITEL, REVIEWS, USP's) --- */
.product__title h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.rating {
  margin-bottom: 1.5rem;
}
/* Styling voor de pluspunten-lijst (USP's) */
.product-usps ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}
.product-usps li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: var(--color-text-primary);
}
.product-usps li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  font-size: 1.2rem;
}


/* --- 3. DE ACTIE-KAART (KOOPBLOK) --- */
.product-info__sticky .product-info__sticky {
  background-color: var(--color-background-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
}

/* Prijs */
.product-price {
  margin-bottom: 1rem;
}
.price__current {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}
.price__excl-vat-row {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* Voorraad & Levering info */
.delivery-info {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}
.delivery-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-success);
}

/* Aantal-kiezer & Winkelwagenknop */
.product-info__add-to-cart {
  display: flex;
  flex-direction: row; /* Plaats de knop onder de kiezer */
  gap: 1rem;
  margin-top: 1.5rem;
}
.qty-input {
  max-width: 140px; /* Maak de kiezer minder breed */
  border: 1px solid var(--color-border);
  border-radius: 8px;
  height: 48px;
}
.btn-addtocartsmall {
  width: 100%; /* Volledige breedte */
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0rem;
  padding: 15px;
  background-color: black !important;
  color:white !important;
  height: auto;
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-addtocartsmall::after {
  content: 'In winkelwagen';
  margin-left: 8px;
}
.btn-addtocartsmall:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

/* Secundaire acties (vergelijk, etc) */
.secondary-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.secondary-actions a {
  color: var(--color-text-secondary);
  text-decoration: underline;
  font-weight: 500;
}

/* --- De product-tabs sectie (Houdt de bestaande stijl) --- */
.product-tabs-{{ section.id }} {
  margin-top: 60px;
}
/* ... de rest van je bestaande tab-styling blijft hier ongewijzigd ... */
{%- endstyle -%}