/* Header components */
.container-header {
  display: flex;
  flex-direction: column;
  width: 100%;
}

a {
  text-decoration: underline;
  color: #fff;
}

.header {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px 30px;
  border-bottom: 1px solid #eee;
  width: 100%;
}

.header .logo {
  font-weight: bold;
  font-size: 1.5em;
  margin-right: 30px;
}

.header nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.header input[type="text"] {
  margin-left: 30px;
  flex: 1;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

/* USP header */
.usp-bar {
  background: #78A59A;
  width: 100%;
  padding: 8px 0;
  font-family: montserrat;
  color: #ffffff;
}

.usp-slider {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.usp-slide {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.usp-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  object-fit: contain;
  display: block;
}

/* Mobile slider functionaliteit */
@media (max-width: 768px) {
  .usp-bar {
    position: relative;
    overflow: hidden;
  }
  
  .usp-slider {
    position: relative;
    height: 28px;
    justify-content: center;
  }
  
  .usp-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    flex: none;
  }
  
  .usp-slide.active {
    opacity: 1;
  }
}

.checkout-btn {
  width: 100%;
  background: #F26522;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 15px 0;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 16px;
  cursor: pointer;
  font-family: montserrat;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.discount-btn {
  width: 100%;
  color: #000000;
  font-size: 0.95em;
  font-weight: 500;
  margin-bottom: 30px;
  cursor: pointer;
  text-decoration: underline;
  border: none;
  background: none;
  font-family: montserrat;
  font-weight: 400;
}

/* Payment methods */
.payment-methods {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  justify-content: space-evenly;
}

.payment-methods img {
  width: 80px;
  height: 24px;
  justify-content: space-evenly;
}

.payment-methods span {
  margin-right: 10px;
  font-size: 1.2em;
}

.payment-icon {
  width: 48px;
  height: 32px;
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 0;
}

/* Checkout info */
.checkout-info {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #333;
  font-size: 0.97em;
}

.checkout-info li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 7px;
  font-size: 15px;
}

.checkout-info li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="green" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M7.629 15.29a1 1 0 0 1-1.415 0l-4.243-4.243a1 1 0 1 1 1.415-1.415l3.536 3.536 7.778-7.778a1 1 0 1 1 1.415 1.415l-8.486 8.485z"/></svg>');
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Info blocks */
.checkout-info-block {
  margin: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: montserrat;
  font-size: 0.8em;
}

.info-row {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 8px;
  padding: 16px 12px;
  border: 1px solid #eee;
  gap: 16px;
  position: relative;
}

.info-row img {
  width: 25px;
  mix-blend-mode: darken;
}

.info-row-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-row-text {
  flex: 1;
  font-size: 1em;
  color: #222;
}

.info-row-help {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-left: 12px;
  opacity: 0.6;
  cursor: pointer;
}

/* Tooltip styling question circle */
.question-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #222;
  font-weight: bold;
  font-size: 12px;
  border: 1px solid #ccc;
  margin-left: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.question-circle:hover {
  background: #e0e0e0;
  color: #000;
  opacity: 1;
}

.question-circle .tooltip {
  visibility: hidden;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  margin-bottom: 8px;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 1000;
}

.question-circle .tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.question-circle:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* Item actions in cart */
.item-actions {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}
.item-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-family: inherit;
  font-size: 0.9em;
  color: #555;
  transition: color 0.2s;
}
.item-action-btn span {
  text-decoration: underline;
}
.item-action-btn:hover {
  color: #000;
}
.item-action-btn svg {
  stroke: currentColor;
}


/* Cross-Sell Product Cards (Omoda Style, pixel-perfect) */
.cross-sell {
  padding: 32px 0;
  background: #fff;
}
.cross-sell h3 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: left;
}
.cross-sell-list {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 4px 20px 4px; /* Padding voor schaduw en scrollbar */
  justify-content: flex-start;
}
.product-card {
  background: #fff;
  border-radius: 18px;
  border: none;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transform: none;
}
.product-card-image-wrapper {
  position: relative;
  background: #F7F7F7;
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.product-card-main-image {
  width: 80%;
  height: 80%;
  border-radius: 12px;
  background: transparent;
  display: block;
  object-fit: contain;
}
.favorite-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
}
.favorite-btn svg {
  fill: none;
  stroke: #222;
  stroke-width: 1.5;
  transition: fill 0.2s, stroke 0.2s;
  width: 100%;
  height: 100%;
}
.favorite-btn:hover svg {
  fill: #e30613;
  stroke: #e30613;
}
.product-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(255,255,255,0.9);
  color: #222;
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: 500;
}
.sale-badge {
  background: #e30613;
  color: #fff;
}
.product-card-info {
  text-align: left;
  width: 100%;
  margin-top: 4px;
}
.product-card-name {
  font-size: 1.08em;
  margin-bottom: 2px;
}
.product-card-brand {
  color: #888;
  font-size: 1em;
  margin-bottom: 6px;
}
.product-card-price {
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 2px;
}

.product-card img {
  width: 40%;
  height: 100%;
  object-fit: contain;
}
.sale-price {
  color: #e30613;
}
.original-price {
  text-decoration: line-through;
  color: #888;
  font-weight: 400;
}
.color-swatches {
  margin-top: 10px;
  display: flex;
  gap: 6px;
}
.color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
}
/* Rating components */
.item-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}

.rating-count {
  color: #666;
  font-size: 0.9em;
}

.shop-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-rating .stars {
  display: flex;
  gap: 2px;
}

.shop-rating .star {
  color: #ddd;
  font-size: 20px;
}

.shop-rating .star.filled {
  color: #FFB800;
}

.shop-rating span {
  color: #333;
  font-size: 15px;
}

/* Cross-Sell container */
.container-cross-sell {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Footer styling */
.footer {
  background: #f7f7f7;
  color: #222;
  font-family: montserrat, Arial, sans-serif;
  font-size: 15px;
  margin-top: 48px;
}
.footer-top {
  max-width: 1300px;
  margin: 0 auto;
  padding: 48px 24px 0 24px;
}
.footer-cols {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
  margin-bottom: 24px;
}
.footer-title {
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 1.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-icon {
  font-size: 1.1em;
  vertical-align: middle;
}
.footer-contact-block {
  line-height: 1.7;
}
.footer-open {
  color: #1bbf3a;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0 8px 0;
}
.footer-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #1bbf3a;
  border-radius: 50%;
  margin-right: 3px;
}
.footer-link {
  color: #222;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 2px;
}
.footer-link:hover {
  color: #0057b8;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 6px;
}
.footer-list a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-list a:hover {
  color: #0057b8;
}
.footer-vacatures {
  font-size: 0.98em;
}
.footer-vacatures a {
  color: #0057b8;
  text-decoration: underline;
}
.footer-row {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid #e5e5e5;
  padding-top: 32px;
  margin-bottom: 24px;
}
.footer-merken {
  flex: 1 1 180px;
  min-width: 160px;
}
.footer-merken ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-merken li {
  color: #222;
  font-size: 0.98em;
}
.footer-socials {
  flex: 1 1 180px;
  min-width: 160px;
}
.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.footer-social-icons a {
  color: #222;
  font-size: 1.5em;
  transition: color 0.2s;
}
.footer-social-icons a:hover {
  color: #0057b8;
}
.footer-newsletter {
  flex: 2 1 340px;
  min-width: 260px;
  max-width: 420px;
}
.footer-newsletter-text {
  font-size: 0.97em;
  margin-bottom: 10px;
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 6px;
}
.footer-newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  font-size: 1em;
  outline: none;
}
.footer-newsletter-form button {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 10px 22px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-newsletter-form button:hover {
  background: #0057b8;
}
.footer-bottom {
  background: #f2f2f2;
  padding: 24px 0 16px 0;
  text-align: center;
  border-top: 1px solid #e5e5e5;
}
.footer-payments {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-payments img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-payments img:hover {
  opacity: 1;
  filter: grayscale(0);
}
.footer-links {
  color: #888;
  font-size: 0.97em;
  margin-bottom: 8px;
}
.footer-links a {
  color: #888;
  text-decoration: none;
  margin: 0 2px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #0057b8;
}
.footer-legal {
  color: #aaa;
  font-size: 0.93em;
}

.add-to-cart-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: #111;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s;
  z-index: 2;
}

.add-to-cart-btn img {
  width: 28px;
  height: 28px;
}

.add-to-cart-btn:hover {
  background: #222;
}

.product-card-thumbnails-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  width: 100%;
}

.thumb-arrow {
  background: none;
  border: none;
  color: #888;
  font-size: 1.5em;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.thumb-arrow:hover {
  background: #f5f5f5;
  color: #222;
}

.product-card-thumbnails {
  display: flex;
  gap: 8px;
}

.product-card-thumbnails img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  object-fit: cover;
  transition: border 0.2s;
}

.product-card-thumbnails img.active {
  border-color: #111;
}


/* Step indicator */

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 18px 0 10px 0;
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
  min-height: 60px;
  box-sizing: border-box;
}
.step-indicator .logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.step-indicator .logo img {
  height: 48px;
  width: auto;
  display: block;
}
.step-indicator .cart-icon img {
  height: 48px;
  width: auto;
  display: block;
}
.steps-center {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.steps-center .step {
  background: #f6f6f6;
  color: #bbb;
  font-weight: 500;
  font-size: 1em;
  padding: 8px 0;
  width: 180px;
  text-align: center;
  border-radius: 4px;
  margin: 0 4px;
}
.steps-center .step.active {
  background: #fff;
  color: #222;
  font-weight: bold;
  border: 1.5px solid #222;
}
.step-indicator .cart {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}




