/** Shopify CDN: Minification failed

Line 48:9 Expected identifier but found whitespace
Line 48:11 Unexpected "{"
Line 48:20 Expected ":"
Line 49:19 Expected identifier but found whitespace
Line 49:21 Unexpected "{"
Line 49:30 Expected ":"
Line 144:19 Expected identifier but found whitespace
Line 144:21 Unexpected "{"
Line 144:30 Expected ":"
Line 145:8 Expected identifier but found whitespace
... and 18 more hidden warnings

**/


/* CSS from section stylesheet tags */
.accessories-section {
  margin: 2rem auto;
  padding: 0 20px;
  max-width: 1400px;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accessories-grid {
  display: flex;
  gap: 1rem;
  width: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
}

.accessories-card {
  flex: 0 0 calc(25% - 1rem); /* 4 items for desktop */
  min-width: 250px;
  max-width: 350px;
  border: {{ section.settings.show_card_border | if: '1px solid #e0e0e0', 'none' }};
  background-color: {{ section.settings.card_background }};
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 450px;
  scroll-snap-align: start;
}

.accessories-card-image {
  max-width: 100%;
  height: 250px;
  object-fit: contain;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.accessories-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.accessories-card-title {
  font-weight: bold;
  min-height: 3.6em;
/*  margin-bottom: 0.5rem;
  
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; */
}

.accessories-card-price {
  font-weight: 600;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.accessories-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: whitesmoke;
  box-shadow: 1px 1px 10px 2px #222;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0;
  color: black;
  font-weight: bolder;
}

.prev-arrow {
  left: -30px;
}

.next-arrow {
  right: -20px;
}

  @media(max-width: 700px){
    .next-arrow{
      right: 45px;
    }
  }

.carousel-arrow:hover {
  background: #f5f5f5;
}

.carousel-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.accessories-view-btn {
  display: inline-block;
  background-color: {{ section.settings.button_color }};
  color: {{ section.settings.button_text_color }};
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.accessories-view-btn:hover {
  opacity: 0.8;
}

/* Protected Add to Cart Button - uses unique class name to avoid third-party interference */
.accessories-purchase-btn {
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: {{ section.settings.add_to_cart_color }};
  color: {{ section.settings.add_to_cart_text_color }};
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-family: inherit;
  font-size: inherit;
}

.accessories-purchase-btn:hover:not(:disabled) {
  opacity: 0.8;
}

.accessories-purchase-btn:disabled {
  background-color: #cccccc !important;
  color: #666666 !important;
  cursor: not-allowed;
  opacity: 0.6;
}

.accessories-purchase-btn:focus {
  outline: 2px solid {{ section.settings.add_to_cart_color }};
  outline-offset: 2px;
}

.accessories-empty-state {
  text-align: center;
  color: #666;
  padding: 2rem;
}

.options-style {
  text-align: center;
  margin-bottom: 1rem;
}

/* Tablet view (3 items) */
@media (max-width: 1024px) {
  .accessories-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

/* Mobile view (1 item) */
@media (max-width: 700px) {
  .accessories-card {
    flex: 0 0 100%;
    min-height: 400px;
  }
  
  .carousel-arrow {
    width: 32px;
    height: 32px;
  }
  
  .prev-arrow {
    left: -16px;
  }
  
  .next-arrow {
    right: -16px;
  }
}
.vallkree-usp-section {
  padding: 4rem 0;
  background-color: {{ section.settings.background_color }};
  color: {{ section.settings.text_color }};
}

.vallkree-usp-section__headline {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

.vallkree-usp-section__description {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vallkree-usp-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-inline: 1rem;
  background-color: #0C0B09;
}

  @media(max-width: 700px){
    .vallkree-usp-grid{
          flex-direction: column;
      padding-inline: 1rem;
    }

  }

.vallkree-usp-item {
  flex: 1;
  text-align: center;
  padding: 2rem;
  background-color: #0C0B09;
  color: #ffffff;
  border: solid 1px #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.vallkree-usp-item:hover {
  transform: translateY(-10px);
}

.vallkree-usp-item__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0C0B09;
  border-radius: 50%;
}

.vallkree-usp-item__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.vallkree-usp-item__description {
  color: #fef;
}