/** Shopify CDN: Minification failed

Line 74:13 Expected identifier but found whitespace
Line 74:15 Unexpected "{"
Line 74:24 Expected ":"
Line 75:8 Expected identifier but found whitespace
Line 75:10 Unexpected "{"
Line 75:19 Expected ":"
Line 85:13 Expected identifier but found whitespace
Line 85:15 Unexpected "{"
Line 85:24 Expected ":"

**/


/* CSS from section stylesheet tags */
.carousel-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.carousel-card {
  flex: 0 0 auto;
  width: calc(50% - 5px);
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-image-link {
  flex: 1;
  display: block;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-text {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-arrow {
  pointer-events: all;
  background: {{ section.settings.arrow_bg }};
  color: {{ section.settings.arrow_color }};
  border: none;
  padding: 10px 16px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-arrow:hover {
  background: {{ section.settings.arrow_hover_bg }};
}