/** Shopify CDN: Minification failed

Line 1180:26 Unexpected "{"
Line 1180:37 Expected ":"
Line 1180:41 Unexpected "{"

**/
/* ============================================================
   CUSTOM.CSS — Carmotec Webshop
   ============================================================
   INHOUDSOPGAVE:
   
   1.  PRODUCT CARD — Titel
   2.  PRODUCT CARD — Rating
   3.  PRODUCT CARD — USPs
   4.  PRODUCT CARD — Prijs
   5.  PRODUCT CARD — Add to Cart button
   6.  PRODUCT CARD — Volgorde elementen
   7.  PRODUCT CARD — Badges
   8.  PRODUCT CARD — Layout & hoogte
   9.  HEADER — Sticky desktop
   10. HEADER — Floating mobile
   11. HEADER — Drawer menu
   12. HEADER — Mega menu
   13. CART DRAWER
   14. PRODUCT PAGINA — Sticky buy button
   15. PRODUCT PAGINA — Tabs & beschrijving
   16. COLLECTION PAGINA
   17. IMAGES WITH TEXT secties
   18. HERO SECTIE
   19. OVERIGE SECTIES
   20. TRUST BADGES
   21. MEDIA QUERIES — Gebundeld
   ============================================================ */


/* ============================================================
   1. PRODUCT CARD — TITEL
   ============================================================ */

.product-card .product-card__title {
  --title-font-size: 16px;
  --title-font-weight: 700;
  --title-line-height: 1.3;
  --title-letter-spacing: 0;
  --title-text-transform: uppercase !important;
  --title-color: inherit;
  font-size: var(--title-font-size) !important;
  font-weight: var(--title-font-weight) !important;
  line-height: var(--title-line-height) !important;
  letter-spacing: var(--title-letter-spacing) !important;
  text-transform: var(--title-text-transform) !important;
  color: var(--title-color) !important;
}


/* ============================================================
   2. PRODUCT CARD — RATING
   ============================================================ */

.product-card .product-card__rating {
  --rating-size: 14px;
  --rating-margin-top: 0rem;
  --rating-padding-top: 0rem;
  --rating-padding-bottom: 0rem;
  font-size: var(--rating-size) !important;
  margin-top: var(--rating-margin-top) !important;
  padding-top: var(--rating-padding-top) !important;
  padding-bottom: var(--rating-padding-bottom) !important;
}

.product-card .product-card__rating svg,
.product-card .product-card__rating .rating__star {
  width: var(--rating-size) !important;
  height: var(--rating-size) !important;
}


/* ============================================================
   3. PRODUCT CARD — USPs
   ============================================================ */

.product-card__usps {
  --usp-font-family: 'Poppins', sans-serif;
  --usp-font-size: 12px;
  --usp-font-weight: 100;
  --usp-line-height: 1.4;
  --usp-letter-spacing: 0.05rem;
  --usp-text-transform: none;
  --usp-text-color: #323436;
  --usp-icon-color: #22c55e;
  --usp-margin-top: 1rem;
  --usp-margin-bottom: 1rem;
  --usp-gap-between-usps: 0.5rem;
  --usp-gap-icon-text: 0.5rem;
  --usp-icon-size: 20px;
  margin-top: var(--usp-margin-top);
  margin-bottom: var(--usp-margin-bottom) !important;
  display: flex;
  flex-direction: column;
  gap: var(--usp-gap-between-usps);
}

.product-card__usp {
  display: flex;
  align-items: center;
  gap: var(--usp-gap-icon-text);
  font-family: var(--usp-font-family);
  font-size: var(--usp-font-size);
  font-weight: var(--usp-font-weight);
  line-height: var(--usp-line-height);
  letter-spacing: var(--usp-letter-spacing);
  text-transform: var(--usp-text-transform);
  color: var(--usp-text-color);
}

.product-card__usp-icon {
  width: var(--usp-icon-size);
  height: var(--usp-icon-size);
  flex-shrink: 0;
  object-fit: contain;
}

.product-card__usp-icon-default {
  width: var(--usp-icon-size);
  height: var(--usp-icon-size);
  flex-shrink: 0;
  color: var(--usp-icon-color);
}


/* ============================================================
   4. PRODUCT CARD — PRIJS
   ============================================================ */

.product-card .product-card__price .product-card__price-item {
  --price-font-size: 18px;
  --price-font-weight: 700;
  --price-color: #323436;
  font-size: var(--price-font-size) !important;
  font-weight: var(--price-font-weight) !important;
  color: var(--price-color) !important;
}

.product-card__price-item-old {
  font-size: 14px !important;
}

.product-sale-amount-badge {
  border-radius: 3.40282e38px !important;
  padding: 1px 8px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  margin-left: 0px !important;
}


/* ============================================================
   5. PRODUCT CARD — ADD TO CART BUTTON
   ============================================================ */

product-form.product-card__btn-wrapper,
product-form {
  width: 100% !important;
  display: block !important;
}

product-form.product-card__btn-wrapper form,
product-form form {
  width: 100% !important;
}

product-form.product-card__btn-wrapper .btn,
product-form .product-card__btn {
  width: 100% !important;
}


/* ============================================================
   6. PRODUCT CARD — VOLGORDE ELEMENTEN
   ============================================================ */

.product-card__info,
.product-card__content {
  display: flex;
  flex-direction: column;
}

.product-card__title { order: 1; }
.product-card__price { order: 2; }
.product-card__usps  { order: 3; }
.product-card__vendor { order: 4; }
.product-card__color-count { order: 5; }


/* ============================================================
   7. PRODUCT CARD — BADGES
   ============================================================ */

.product-card__badge.product-badge.product-badge--sale {
  border-radius: 20px !important;
  padding: 4px 10px;
  font-weight: 400;
  font-size: 12px;
}

.product-card__badge.product-badge.product-badge--custom-2 {
  border-radius: 20px !important;
  padding: 4px 10px;
  font-weight: 400;
  font-size: 12px;
}


/* ============================================================
   8. PRODUCT CARD — LAYOUT & HOOGTE
   ============================================================ */

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card__inner {
  flex-shrink: 0;
}

.product-card__details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__details-inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__details-inner > .product-card__btns {
  margin-top: auto;
}






@media (min-width: 768px) {
  .header__container {
    grid-template-areas: "logo nav icons" !important;
    grid-template-columns: auto 1fr auto !important;
  }
}
@media (min-width: 768px) {
  .header__nav {
    justify-content: flex-start !important;
  }
}


/* ============================================================
   11. HEADER — DRAWER MENU
   ============================================================ */

.drawer-menu__content {
  background-color: #f8f8f8 !important;
  padding: 0 16px;
}

.drawer-menu__content::before {
  content: "MENU";
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #323436;
  padding: 20px 0 16px;
  margin-bottom: -20px;
}

.drawer-menu__list-body {
  padding-left: 0;
  padding-right: 0;
  display: grid !important;
  grid-template-columns: 1.4fr 1fr !important;
  gap: 2px !important;
  padding: 0 !important;
}

/* Eerste 6 items full width */
.drawer-menu__list-body > *:nth-child(-n+6) {
  grid-column: 1 / -1 !important;
}

/* Items 7-12 in 2 kolommen */
.drawer-menu__list-body > *:nth-child(n+7):nth-child(-n+12) {
  grid-column: span 1 !important;
  margin-bottom: -8px !important;
}

/* Forceer tekst op 1 regel voor items 7-12 */
.drawer-menu__list-body > *:nth-child(n+7):nth-child(-n+12) * {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  padding-left: 4px !important;
  padding-right: 0px !important;
}

/* Menu items 1-6: witte balken */
.drawer-menu__menu-item:nth-child(-n+6) {
  background-color: white;
  border-radius: 12px;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 8px;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 8px #00000005;
}

/* 6e item: oranje */
.drawer-menu__menu-item:nth-child(6) {
  background-color: #f0802b;
}

.drawer-menu__menu-item:nth-child(6) .drawer-menu__menu-item-label {
  color: white;
}

.drawer-menu__menu-item:nth-child(6)::after {
  color: white;
}

/* Items 7+: 2-kolommen grid zonder balken */
.drawer-menu__menu-item:nth-child(n+7) {
  display: inline-block;
  width: calc(50% - 4px);
  background-color: transparent;
  border-radius: 0;
  padding: 8px 0;
  margin-bottom: 0;
  vertical-align: top;
}

.drawer-menu__menu-item:nth-child(n+7) .drawer-menu__menu-item-label {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Verwijder chevrons van items 7+ */
.drawer-menu__menu-item:nth-child(n+7)::after {
  display: none;
}

.drawer-menu__menu-item.active .drawer-menu__menu-item-label {
  background-size: 100% 0rem !important;
}

/* Menu item labels */
.drawer-menu__menu-item-label {
  color: #323436;
  padding-left: 0;
  font-weight: 450;
  font-size: 14px;
  letter-spacing: 0.28px;
}

/* Chevrons voor items 1-5 */
.drawer-menu__menu-item:nth-child(-n+5)::after {
  content: "" !important;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M311.1 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L243.2 256 73.9 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z" fill="%23323436"/></svg>') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  width: 12px !important;
  height: 12px !important;
  position: absolute;
  right: 16px;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: inline-block !important;
}

/* Witte chevron voor item 6 */
.drawer-menu__menu-item:nth-child(6)::after {
  content: "" !important;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M311.1 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L243.2 256 73.9 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z" fill="%23ffffff"/></svg>') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  width: 12px !important;
  height: 12px !important;
  position: absolute;
  right: 16px;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: inline-block !important;
}

/* Menu item flex layout */
.drawer-menu__menu-item svg,
.drawer-menu__menu-item .icon {
  margin-left: auto;
}

drawer-menu-page {
  background-color: #f8f8f8 !important;
}

.drawer-menu__settings {
  background-color: white !important;
  border-radius: 8px !important;
  margin: 8px 16px 16px 16px !important;
  padding: 0px 16px !important;
  border-top: none !important;
  border: 1px solid #e0e0e0 !important;
}

.drawer-menu__account-link {
  color: #323436 !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  font-size: 14px !important;
}

.localization-dropdown-toggle.drawer-menu__localization-dropdown-toggle {
  background-color: white !important;
  color: #323436 !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  border: none !important;
}


/* ============================================================
   12. HEADER — MEGA MENU
   ============================================================ */

.mega-menu__inner-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 40px !important;
}

.mega-menu__columns {
  flex: 1 !important;
  order: 1 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.mega-menu__block--featured-collection {
  order: 2 !important;
  flex-shrink: 0 !important;
  margin-left: auto !important;
  max-width: 600px !important;
}

.mega-menu__block--featured-collection .product-card {
  max-width: 180px !important;
}

.mega-menu__block--featured-collection .product-card__price {
  margin-top: 4px !important;
}

.mega-menu__block--featured-collection .product-card__btn {
  margin-bottom: -10px !important;
}

.mega-menu__block--featured-collection .product-card__image {
  height: 180px !important;
}

/* USPs verkleinen in mega menu */
.header__dropdown-menu .product-card__usp,
header .product-card__usp {
  font-size: 10px !important;
  line-height: 1.3 !important;
}

.header__dropdown-menu .product-card__usp svg,
.header__dropdown-menu .product-card__usp img,
header .product-card__usp svg,
header .product-card__usp img {
  width: 16px !important;
  height: 16px !important;
}

.header__dropdown-menu .product-card__usp + .product-card__usp,
header .product-card__usp + .product-card__usp {
  margin: 0px !important;
}

.mega-dropdown {
  padding-bottom: 0 !important;
}

.mega-dropdown__container {
  padding-bottom: 0 !important;
}

.header__menu-item-content {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
}

.header__menu-collection-image {
  width: 50px !important;
  height: 50px !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  flex-shrink: 0 !important;
}

.header__menu-item-label {
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.8px !important;
}

.mega-menu .mega-menu__view-all {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  z-index: 100 !important;
  display: block !important;
}

.mega-menu .mega-menu__view-all a {
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-block !important;
}

.mega-menu__list {
  display: grid !important;
  grid-template-columns: 300px 300px !important;
  gap: 16px 0px !important;
  align-items: start !important;
  margin-top: 0 !important;
}

.mega-menu__nav {
  padding-bottom: 1.6rem !important;
  padding-top: 1.6rem !important;
  padding-right: 0rem !important;
  padding-left: 2rem !important;
}

/* Menu label button */
.menu-label-button {
  display: inline-block !important;
  align-items: center !important;
  margin-top: 8px !important;
  padding: 10px 30px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  background-color: #f0802b !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  transition: all 0.2s ease !important;
  grid-column: 1 !important;
  grid-row: 4 !important;
  margin-top: 16px !important;
  justify-self: left !important;
  margin: 0 !important;
  width: fit-content !important;
}

.menu-label-button:hover {
  background-color: rgb(212, 102, 0) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.menu-label-button__icon {
  width: 16px !important;
  height: 16px !important;
  margin-left: 4px !important;
  transition: transform 0.2s ease !important;
  filter: brightness(0) invert(1) !important;
  transform: translateY(2px) !important;
}

.menu-label-button:hover .menu-label-button__icon {
  transform: translateX(4px) !important;
}

/* USP badge */
.menu-usp-badge {
  grid-column: 1 !important;
  grid-row: 4 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 16px !important;
  margin-top: 16px !important;
  background-color: transparent !important;
  border: 1px solid rgb(157, 157, 157) !important;
  border-radius: 10px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  justify-self: left !important;
  margin: 0 !important;
  width: fit-content !important;
}

.menu-usp-badge__icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
}

.menu-usp-badge__text {
  color: #323436 !important;
  line-height: 1.3 !important;
  font-weight: 300 !important;
}

.menu-usp-badge__text strong {
  color: #323436 !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
}

/* Bottom wrapper: button + badge naast elkaar */
.menu-bottom-wrapper {
  grid-column: 1 / -1 !important;
  grid-row: 4 !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-top: 16px !important;
}

/* Featured products header */
.featured-products-header {
  position: relative !important;
  margin-bottom: 8px !important;
  min-height: 24px !important;
  padding: !important;
}

.featured-products-title {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #323436 !important;
  margin: 0 !important;
}

.featured-products-link {
  position: absolute !important;
  top: 0 !important;
  right: 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #323436 !important;
  text-decoration: underline !important;
}

.featured-products-link:hover {
  opacity: 0.7 !important;
  text-decoration: none !important;
}

.menu-labels-title {
  display: block !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #323436 !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
  text-align: left !important;
  width: 100% !important;
}


/* ============================================================
   13. CART DRAWER
   ============================================================ */

/* Verberg "Ga naar winkelwagen" button */
.cart-drawer__footer a[href="/cart"]:not([name="checkout"]),
.cart__view-cart-button {
  display: none !important;
}

/* Checkout button */
.cart-drawer__footer [name="checkout"] {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  line-height: 1 !important;
}

/* Gerelateerde producten carousel */
.cart-drawer__card-carousel--with-horizontal-cards {
  --gsc-slide-width: 48% !important;
}

/* Gerelateerde product button */
.horizontal-product-card__button-text {
  color: white !important;
}

/* NOTE: Onderstaande selector stond twee keer — tweede (font-size: 1rem) overschreef de eerste.
   Samengevoegd tot de effectieve versie: */
.horizontal-product-card--with-background .horizontal-product-card__button {
  font-size: 1rem !important;
  padding: 0.5rem 0.8rem !important;
  min-height: auto !important;
  height: auto !important;
  gap: 1rem !important;
  line-height: 1.2 !important;
}

.horizontal-product-card--with-background {
  padding: 0.4rem !important;
}

/* Cart items block — samengevoegd (stond twee keer) */
.cart-drawer__block--items {
  border-bottom: 0.8px solid rgba(0, 0, 0, 0.1) !important;
  padding-bottom: 1.5rem !important;
  margin-bottom: 1.5rem !important;
  padding-top: 0rem !important;
  margin-top: 0 !important;
}

/* USP message */
.cart-usp-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.6rem;
  padding: 0 !important;
  font-size: 1rem;
  color: rgb(var(--color-foreground));
  width: 100% !important;
  clear: both !important;
}

cart-drawer-buttons-block {
  display: block !important;
}

.cart-drawer-subtotal__btn {
  display: block !important;
  width: 100% !important;
  margin-bottom: 0 !important;
}

.cart-usp-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.cart-drawer-subtotal__main-content {
  padding-bottom: 0.6rem !important;
  border-top: 0.8px solid rgba(0, 0, 0, 0.1);
}

/* Cart drawer header & totaal */
.cart-drawer__header-title {
  font-size: 20px !important;
}

.cart-drawer-subtotal__totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 18px !important;
}

/* Verberg accordeon subtotaal */
.cart-drawer-subtotal__subtotals {
  display: none;
}

/* Oranje savings box */
.cart-drawer-subtotal__savings {
  background-color: #f0802b;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
  margin-left: auto;
  margin-right: 0.5rem;
  text-transform: none;
}

.cart-drawer-subtotal__price {
  font-weight: bold;
  flex-shrink: 0;
}

.cart-drawer-subtotal__label {
  flex-shrink: 0;
}

.cart-item__discounts {
  display: none !important;
}


/* ============================================================
   14. PRODUCT PAGINA — STICKY BUY BUTTON
   ============================================================ */

/* Mobile */
@media screen and (max-width: 749px) {
  .product-form__sticky-buy-button {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-top: none !important;
  }

  .product-form__sticky-buy-button.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .product-form__sticky-buy-button .horizontal-product-card {
    display: none !important;
  }

  .product-form__sticky-buy-button .product-form__btn-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 8px;
  }

  .product-form__sticky-buy-button .product-form__btn {
    width: 100%;
    padding: 12px 24px !important;
    font-size: 16px !important;
  }

  .product-form__sticky-buy-button .shopify-payment-button {
    display: none !important;
  }

  .product-form__sticky-buy-button .product-form__btn::after {
    content: "";
    position: absolute;
    right: 25%;
    top: 50%;
    transform: translateY(-52%);
    width: 20px;
    height: 20px;
    background-image: url('/cdn/shop/files/turn_left.png?v=1766484672');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}

/* Desktop */
@media screen and (min-width: 750px) {
  .product-form__sticky-buy-button {
    padding: 16px 16px !important;
    display: flex;
    flex-direction: column;
    gap: 4px !important;
    align-items: flex-start;
    width: fit-content !important;
  }

  .product-form__sticky-buy-button .horizontal-product-card {
    display: flex !important;
    order: 1;
    align-self: flex-start !important;
    align-items: flex-start !important;
  }

  .product-form__sticky-buy-button .horizontal-product-card__inner {
    width: 100px !important;
    height: 100px !important;
    flex-shrink: 0;
    border-radius: 10px !important;
    overflow: hidden;
  }

  .product-form__sticky-buy-button .horizontal-product-card__inner img {
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    width: 100px !important;
    height: 100px !important;
    border-radius: 10px !important;
  }

  .product-form__sticky-buy-button .horizontal-product-card__title,
  .product-form__sticky-buy-button .horizontal-product-card__title a {
    font-size: 18px !important;
    text-transform: uppercase !important;
    margin: 0 !important;
  }

  .product-form__sticky-buy-button .product-form__btn-wrapper {
    width: auto !important;
    max-width: none !important;
    order: 2;
    align-self: flex-start;
  }

  .product-form__sticky-buy-button .product-form__btn {
    width: auto !important;
    min-width: 320px;
    padding: 10px 30px 10px 30px !important;
    font-size: 14px !important;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px !important;
  }

  .product-form__sticky-buy-button .shopify-payment-button {
    display: none !important;
  }

  .product-form__sticky-buy-button .product-form__btn::after {
    content: "";
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: 4px;
    background-image: url('/cdn/shop/files/turn_left.png?v=1766484672');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
  }

  .product-form__sticky-buy-button .horizontal-product-card__info {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px;
  }

  .product-form__sticky-buy-button .horizontal-product-card__shipping {
    display: flex;
    align-items: flex-start;
    gap: 0px !important;
    font-size: 12px;
    color: #323436;
    font-weight: 500;
  }

  .product-form__sticky-buy-button .horizontal-product-card__shipping svg,
  .product-form__sticky-buy-button .horizontal-product-card__shipping img {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: block;
    position: relative;
    top: -6px;
    margin-top: 10px;
    margin-right: 0px;
  }

  .product-form__sticky-buy-button .horizontal-product-card__shipping span {
    line-height: 14px;
    display: block;
    font-family: 'Poppins', sans-serif;
    margin-top: 12px;
    margin-left: -8px;
  }
}


/* ============================================================
   15. PRODUCT PAGINA — TABS & BESCHRIJVING
   ============================================================ */

.rte {
  overflow: hidden;
  --gsc-paragraph-spacing: 0rem !important;
}

.rte > *:last-child *:last-child,
.rte > *:last-child {
  margin-bottom: -0px !important;
}

.product-content-tab .block-description_qyBNkp {
  margin-bottom: 0px !important;
}

.product-content-tab__rte ul,
.product-content-tab__rte ol {
  padding: 0 0 0 0rem !important;
}

/* Betalingsiconen */
.product-form__payment-icons-label {
  display: none;
}

.product-form__payment-icons {
  margin-top: 0px;
}

/* Product dots */
.dynamic-dot__inner {
  background-color: #f4f4f4 !important;
}

.dynamic-dot.--active .dynamic-dot__inner {
  background-color: #ff6600 !important;
}

.dynamic-dots--bg-light {
  background-color: rgba(255, 255, 255, 0.95) !important;
}


/* ============================================================
   16. COLLECTION PAGINA
   ============================================================ */

#shopify-section-template--26972515107200__collection_list_KkdGWj .collection-card__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#shopify-section-template--26972515107200__collection_list_KkdGWj .collection-card__title::after {
  content: "➞";
  margin-left: auto;
}


/* ============================================================
   17. IMAGES WITH TEXT SECTIES
   ============================================================ */

/* Specifieke sectie */
#shopify-section-template--26972515369344__images_with_text_cV3miR .btn.btn--primary.images-with-text__button {
  width: 100% !important;
  max-width: none !important;
  min-width: 100% !important;
  flex: 1 1 100% !important;
  display: block !important;
}

#shopify-section-template--26972515369344__images_with_text_cV3miR .images-with-text__buttons {
  width: 100% !important;
}

/* Alle images_with_text secties */
[id*="images_with_text"] .btn.images-with-text__button {
  width: 100% !important;
  max-width: none !important;
  min-width: 100% !important;
  flex: 1 1 100% !important;
  display: block !important;
}

[id*="images_with_text"] .images-with-text__buttons {
  width: 100% !important;
}


/* ============================================================
   18. HERO SECTIE
   ============================================================ */

@media screen and (max-width: 749px) {
  #template--26972515107200__ss_hero_pro_EyxUeX {
    background: transparent !important;
    max-width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .hero-template--26972515107200__ss_hero_pro_EyxUeX,
  .hero-media-template--26972515107200__ss_hero_pro_EyxUeX {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-heading-heading_JnJc7y * {
    text-align: center !important;
  }

  .hero-media-template--26972515107200__ss_hero_pro_EyxUeX {
    --overlay-opacity: 0.2;
  }
}


/* ============================================================
   19. OVERIGE SECTIES
   ============================================================ */

/* Banner sectie */
@media screen and (max-width: 749px) {
  [id*="image_banner_QqKDJY"] .banner__heading,
  [id*="image_banner_QqKDJY"] h2 {
    max-width: 65% !important;
  }

  [id*="image_banner_QqKDJY"] .banner__text,
  [id*="image_banner_QqKDJY"] p {
    max-width: 70% !important;
  }
}

#template--26972515107200__image_banner_QqKDJY p {
  font-weight: 600 !important;
}

/* Multicolumn */
.multicolumn__column {
  border: 1px solid #f2f4f6 !important;
  padding: 20px !important;
  border-radius: 8px !important;
}

.multicolumn__column-text p {
  text-align: center;
}

/* Tekst uitlijning */
.h3 {
  text-align: left;
}

p {
  text-align: left;
}

.testimonials__content {
  margin-left: 0 !important;
  margin-right: auto;
  text-align: left !important;
}

/* Custom liquid block */
.block-custom_liquid_LHdqrc {
  margin-top: 15px !important;
  margin-bottom: -30px !important;
}

/* Template 4 block */
.template_4_block__cbmain--content--left h4 {
  border-radius: 30px !important;
}

/* AI collection card */
[class*="ai-collection-card-title"] {
  text-align: left !important;
}

.ai-collection-card-icon-{{ ai_gen_id }} {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Bottom title block */
.block__bottomtitle {
  display: none !important;
}

/* Shop products grid */
@media (min-width: 750px) {
  .shop__products-grid {
    column-gap: 0.5rem;
    row-gap: 2rem !important;
  }
}

/* Tablet — specifieke grid sectie */
@media screen and (min-width: 750px) and (max-width: 989px) {
  #shopify-section-template--26972515107200__1764854423dea2102a {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  #shopify-section-template--26972515107200__1764854423dea2102a .grid {
    grid-template-columns: repeat(6, 1fr) !important;
    column-gap: 0.8rem !important;
    row-gap: 1.5rem !important;
  }

  #shopify-section-template--26972515107200__1764854423dea2102a .media {
    transform: scale(0.85);
  }
}

/* Specific product buy button */
#product-buy-btn-15290104512896-template--28104007942528__main---MainSection {
  width: 100%;
  height: 100%;
  margin-top: 12px;
}


/* ============================================================
   20. TRUST BADGES
   ============================================================ */

.ss-trust-badges-list-template--27452742566272__ss_trust_badges_3_cVKnhx {
  padding: 0px !important;
  row-gap: 0.4rem;
}

.ss-trust-badges-list-template--26972515369344__ss_trust_badges_3_kfqXCK {
  padding: 0px !important;
  row-gap: 0.4rem;
}


/* ============================================================
   21. MEDIA QUERIES — MOBIEL GEBUNDELD
   ============================================================ */

@media screen and (max-width: 749px) {
  /* Product card button spacing */
  .product-card,
  .card-wrapper .card {
    display: flex !important;
    flex-direction: column !important;
  }

  .product-card__content,
  .card__content {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    padding-bottom: 16px !important;
  }

  .product-card__btn-wrapper,
  product-form.product-card__btn-wrapper,
  .product-card__buttons {
    margin-top: auto !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .product-card__btn-wrapper .btn,
  product-form.product-card__btn-wrapper .btn {
    margin-bottom: 0 !important;
  }

  /* Prijs mobiel */
  body[class*="collection"] .product-card .product-card__price .product-card__price-item,
  main#MainContent .product-card .product-card__price .product-card__price-item {
    --price-font-size: 16px !important;
  }

  .product-card__price-item-old {
    font-size: 12px !important;
  }

  /* Betalingsiconen */
  .product-form__payment-icons {
    transform: scale(0.85);
    transform-origin: center;
  }

  /* Cart drawer header & totaal */
  .cart-drawer__header-title {
    font-size: 18px !important;
  }

  .cart-drawer-subtotal__totals {
    font-size: 18px !important;
  }

  /* Sectie headings */
  .section h2,
  .section .heading,
  [class*="section"] h2,
  [class*="template"] h2,
  .images-with-text h2,
  .content-section h2 {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }

  /* Prijzen op mobiel */
  .product-card .product-card__price .product-card__price-item {
    --price-font-size: 16px;
    --price-font-weight: 700;
  }

  /* Titel op mobiel */
  .product-card .product-card__title {
    --title-font-size: 16px;
    --title-font-weight: 700;
    --title-line-height: 1.1;
  }

  /* Rating op mobiel */
  .product-card .product-card__rating {
    --rating-size: 12px;
    --rating-margin-top: 0rem;
    --rating-padding-top: 0rem;
    --rating-padding-bottom: 0rem;
  }

  /* USPs op mobiel */
  .product-card__usps {
    --usp-font-size: 12px;
    --usp-font-weight: 100;
    --usp-letter-spacing: 0.03rem;
    --usp-margin-top: 0.6rem;
    --usp-margin-bottom: 0.4rem;
    --usp-gap-between-usps: 0.4rem;
    --usp-gap-icon-text: 0.4rem;
    --usp-icon-size: 16px;
  }

  /* PDP sticky bar */
  #block-template--26972515369344__main__price {
    margin: 0 !important;
  }

  /* PDP tabs tekst */
  .pdp-tabs__description .body3,
  .pdp-tabs__content--item .body3,
  .body3 {
    font-size: 15px !important;
  }

  /* Contact formulier */
  .section-template--26972515271040__ss_contact_form_3_UCMChK {
    background-color: #f4f4f4 !important;
  }

  .section-template--27544900993408__ss_contact_form_3_UCMChK-settings {
    background-color: #f4f4f4 !important;
  }

  .contact-submit-template--27544900993408__ss_contact_form_3_UCMChK {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }

  /* Trust badges tekst */
  .ss-trust-badge-text-template--27452742566272__ss_trust_badges_3_cVKnhx * {
    font-size: 15px !important;
  }

  .ss-trust-badges-list-template--26972515369344__ss_trust_badges_3_kfqXCK * {
    font-size: 15px !important;
  }
}

/* Trust badge tekst uitlijning (alle formaten) */
div.trust-budges-text-template--27760056598912__ss_trust_badges_7_36WLdk p { text-align: center !important; }
div.trust-budges-body-template--28104007942528__trust_badges_custom_y9ikgU p { text-align: center !important; }
div.trust-budges-text-template--28475328594304__ss_trust_badges_7_36WLdk p { text-align: center !important; }
div.trust-budges-text-template--28468170097024__ss_trust_badges_7_36WLdk p { text-align: center !important; }
div.trust-budges-text-template--28596480115072__ss_trust_badges_7_36WLdk p { text-align: center !important; }






------------------------------------------------

/* Carmotec upsell kaarten - wrapper reset */
.cart-drawer__in-cart-related-products-viewport,
.cart-drawer__in-cart-related-products-viewport .slider-grid-track {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
}

.cart-drawer__in-cart-related-products-slide {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Kaart zelf */
.cmt-card {
  position: relative;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.15s;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.cmt-card:hover {
  border-color: #E07B00;
}

/* Klikbare overlay */
.cmt-card__link {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

/* Afbeelding */
.cmt-card__img {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cmt-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info */
.cmt-card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cmt-card__name {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1a1a1a;
}

.cmt-card__reason {
  font-size: 11px;
  color: #E07B00;
  margin: 0;
  line-height: 1.3;
}

.cmt-card__prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 2px;
}

.cmt-card__price {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.cmt-card__old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

/* Knop */
.cmt-card__action {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cmt-card__btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #E07B00;
  border: none;
  color: #fff !important;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-weight: 300;
}

.cmt-card__btn:hover {
  background: #C06800;
}



/* ============================================================
   22. STICKY ATC BAR — MOBIEL
   ============================================================ */

.cmt-sticky-atc {
  display: none;
}

@media screen and (max-width: 749px) {
  .cmt-sticky-atc {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: transparent;
    border-top: none;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0, 0.16, 1),
                background 0.35s ease,
                border-color 0.35s ease;
    padding: 10px 16px env(safe-area-inset-bottom, 12px);
    pointer-events: none;
  }

  .cmt-sticky-atc.is-visible {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    pointer-events: auto;
  }

  .cmt-sticky-atc__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .cmt-sticky-atc product-form,
  .cmt-sticky-atc product-form form {
    display: block !important;
    flex-shrink: 0 !important;
    width: auto !important;
  }

  .cmt-sticky-atc__info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
    min-width: 0;
  }

  .cmt-sticky-atc__img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .cmt-sticky-atc__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .cmt-sticky-atc__title {
    font-size: 14px;
    font-weight: 700;
    color: #323436;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.2px;
    text-transform: uppercase;
  }

  .cmt-sticky-atc__price {
    font-size: 13px;
    font-weight: 600;
    color: #323436;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .cmt-sticky-atc__old {
    font-size: 14px;
    font-weight: 400;
    color: #bbb;
    text-decoration: line-through;
  }

  .cmt-sticky-atc__btn {
    display: block;
    flex-shrink: 0;
    background: #E07B00;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .cmt-sticky-atc__btn:active {
    transform: scale(0.97);
    background: #C06800;
  }

  .cmt-sticky-atc__btn:disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
  }

  .product-form__sticky-buy-button {
    display: none !important;
  }
}


/* Hide breadcrumbs on mobile and tablet */
@media screen and (max-width: 1023px) {
  #shopify-section-template--28104007942528__breadcrumbs_xWYD9Q .product-breadcrumbs {
    display: none !important;
  }
}

/* Breadcrumbs - subtle styling */
.product-breadcrumbs {
  font-size: 8px !important;
  letter-spacing: 0.04em;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.product-breadcrumbs:hover {
  opacity: 0.75;
}

.product-breadcrumbs a {
  color: currentColor;
  text-decoration: none;
}

.product-breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hide on mobile and tablet */
@media screen and (max-width: 1023px) {
  #shopify-section-template--28104007942528__breadcrumbs_xWYD9Q .product-breadcrumbs {
    display: none !important;
  }
}

.product-price__old-price {
  color: #999 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}
.product-price__old-price {
  text-decoration-color: currentColor !important;
}