 
  /* Verberg normale cart op mobiel wanneer popup beschikbaar is */
@media (max-width: 767px) {
    .mobile-cart-icon {
        display: flex;
    }
    
    .left-sidebar .cart-sidebar {
        display: none !important;
    }
}
/* Mobiel Winkelwagen Icon */
.mobile-cart-icon {
    display: none;
    position: fixed;
    left: 20px;
    top: 90px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    font-size: 22px;
    background: none;
    border: none;
    box-shadow: none;
}

.mobile-cart-icon i {
    color: #333333;
    font-size: 24px;
}

.mobile-cart-icon .cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4757;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.mobile-cart-icon:hover i {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Alleen tonen op mobiel */
@media (max-width: 767px) {
    .mobile-cart-icon {
        display: flex;
    }
}

/* Verberg op desktop */
@media (min-width: 768px) {
    .mobile-cart-icon {
        display: none !important;
    }
}

/* MEER FOTO'S PIJL - PRECIES ZELFDE ALS WINKELWAGEN ICON */
.mobile-photos-icon {
    display: none;
    position: fixed;
    right: 20px; /* Rechts tegenover winkelwagen */
    bottom: 360px; /* Onder op main afbeelding */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    text-align: center;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-photos-icon .arrow-container {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-photos-icon .arrow-down {
    font-size: 28px;
    color: #007cba;
    animation: bounceSimple 2s infinite;
}

.mobile-photos-icon .photos-text {
    color: #007cba;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 8px;
    border-radius: 10px;
}

@keyframes bounceSimple {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-5px); 
    }
}

/* Alleen tonen op mobiel */
@media (max-width: 767px) {
    .mobile-photos-icon {
        display: flex;
    }
}

/* Verberg op desktop */
@media (min-width: 768px) {
    .mobile-photos-icon {
        display: none !important;
    }
}

/* Animaties voor smooth scroll */
html {
    scroll-behavior: smooth;
}

/* GIGANTISCHE THUMBNAILS - 100x100 pixels */
.thumbnail-container {
    width: 100px !important;
    height: 100px !important;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

/* Grotere indicators voor grote thumbnails */
.thumbnail-container:has(.thumbnail-personalisatie-overlay)::before {
    content: "✏️";
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 5;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.thumbnail-container.has-gesp::after {
    content: "🔗";
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 4;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.thumbnail-container:has(.thumbnail-gesp-overlay):has(.thumbnail-personalisatie-overlay)::before {
    content: "🔗✏️";
    left: 8px;
    bottom: 8px;
    width: auto;
    padding: 0 8px;
    border-radius: 12px;
    font-size: 11px;
}

/* Aanpassingen voor de grid om grotere thumbnails te accommoderen */
.additional-images-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Container aanpassen voor grotere thumbnails */
.model-additional-images {
  margin-top: 30px;
  padding: 25px;
}

/* Hover effect voor grotere thumbnails */
.thumbnail-container:hover {
    transform: scale(1.05);
    border-color: #007cba;
    box-shadow: 0 5px 15px rgba(0, 124, 186, 0.2);
}

/* Combineren van gesp en personalisatie indicatoren */
.thumbnail-container:has(.thumbnail-gesp-overlay):has(.thumbnail-personalisatie-overlay)::before {
    content: "🔗✏️";
    left: 5px;
    bottom: 5px;
    width: auto;
    padding: 0 5px;
    border-radius: 10px;
}

/* CSS voor thumbnail gesp overlay */
.thumbnail-gesp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

/* Zorg ervoor dat alleen de eerste thumbnail gesp toont */
.thumbnail-container:not(:first-child) .thumbnail-gesp-overlay {
    display: none !important;
}

/* Indicator voor thumbnail met gesp */
.thumbnail-container.has-gesp::after {
    content: "🔗";
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    z-index: 4;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Swipe down indicator */
.swipe-down-indicator {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  text-align: center;
  color: #007cba;
  opacity: 0.8;
  pointer-events: none;
}

.swipe-down-indicator .arrow {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 5px;
  position: relative;
  animation: swipeDown 2s infinite ease-in-out;
}

.swipe-down-indicator .arrow::before,
.swipe-down-indicator .arrow::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 6px;
  background-color: #007cba;
  border-radius: 2px;
  top: 50%;
  left: 50%;
}

.swipe-down-indicator .arrow::before {
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: left center;
}

.swipe-down-indicator .arrow::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: right center;
}

.swipe-down-indicator .text {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeText 2s infinite;
}

@keyframes swipeDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
  0%, 20%, 100% { opacity: 0.7; }
  50%, 70% { opacity: 1; }
}

@keyframes fadeText {
  0%, 70%, 100% { opacity: 0; transform: translateY(5px); }
  50%, 80% { opacity: 1; transform: translateY(0); }
}

/* Verdwijnt op desktop als niet nodig */
@media (min-width: 768px) {
  .swipe-down-indicator {
    display: none;
  }
}

/* Voor mobiel landschap */
@media (max-height: 500px) {
  .swipe-down-indicator {
    display: none;
  }
}

/* Kleine inline CSS voor snelle laadtijd */
body { margin: 0; font-family: Arial, sans-serif; }
.hidden { display: none !important; }

/* Voor bevestigingsberichten */
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

/* Hamburger menu styling */
.hamburger-menu {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #333;
  transition: 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop navigatie */
@media (min-width: 768px) {
  .global-nav {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  
  .global-nav a {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .global-nav a:hover {
    background-color: #f0f0f0;
    color: #007cba;
    transform: translateY(-2px);
  }
}

/* Mobiele navigatie */
@media (max-width: 767px) {
  .hamburger-menu {
    display: block;
  }
  
  .hamburger-menu span {
    background-color: #333;
    width: 30px;
    height: 4px;
  }
  
  .global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: -4px 0 15px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding-top: 80px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  
  .global-nav.active {
    right: 0;
  }
  
  .global-nav a {
    display: block;
    padding: 20px 25px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 22px;
    text-align: left;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
  }
  
  .global-nav a:last-child {
    border-bottom: none;
  }
  
  .global-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #007cba, #005a87);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .global-nav a:hover {
    background-color: #f8f9fa;
    color: #007cba;
    padding-left: 35px;
  }
  
  .global-nav a:hover::before {
    transform: translateX(0);
  }
  
  .header-container {
    position: relative;
    padding-right: 70px;
    min-height: 70px;
    display: flex;
    align-items: center;
  }
  
  /* Logo vergroten op mobiel */
  .logo-container img.logo {
    max-height: 50px;
  }
  
  .site-name {
    font-size: 18px;
    font-weight: 700;
  }
  
  body.menu-open {
    overflow: hidden;
  }
}

/* Header verbeteringen */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo-container img.logo {
  max-height: 60px;
  margin-right: 5px;
}

.site-name {
  margin-right: 25px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

/* Model extra foto's styling */
.model-additional-images {
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #eaeaea;
  display: none;
}

.model-additional-images h3 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.additional-images-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Laag 1: Leer achtergrond */
.thumbnail-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* Laag 2: Model overlay */
.model-thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  background-color: transparent !important;
}

/* Laag 3: GESP OVERLAY */
.thumbnail-gesp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

/* Laag 4: PERSONALISATIE OVERLAY */
.thumbnail-personalisatie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 4;
  pointer-events: none;
  opacity: 0.9;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
  .thumbnail-container {
    width: 75px;
    height: 75px;
  }
  
  .model-additional-images {
    margin-top: 20px;
    padding: 15px;
  }
  
  .model-additional-images h3 {
    font-size: 16px;
  }
}