/** Shopify CDN: Minification failed

Line 17:22 Unexpected "{"
Line 17:31 Expected ":"
Line 17:38 Unexpected "{"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 49:8 Expected identifier but found whitespace
Line 49:10 Unexpected "{"
Line 49:19 Expected ":"
Line 74:8 Expected identifier but found whitespace
... and 16 more hidden warnings

**/

#shop-by-design-room-{{ section.id }} {
  background-color: {{ section.settings.background_color }};
  padding: 40px 0;
}


.shop-by-design-room-inner {
  margin: 0 auto;
  padding: 0 20px;
}


.shop-by-design-room-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px; 
}


.carousel-column {
  width: 100%;
  /* max-width: 48%; */
  max-width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
}


.carousel-title {
  font-size: 24px;
  font-weight: bold;
  color: {{ section.settings.title_color }};
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: center;
}


.carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.carousel-arrow {
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: {{ section.settings.arrow_color }};
  transition: color 0.2s ease-in-out;
}
.carousel-arrow:hover {
  color: {{ section.settings.arrow_hover_color }};
}


.carousel-arrow--prev {
  margin-right: 10px;
}

.carousel-arrow--next {
  margin-left: 10px;
}


.carousel-list {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
  width: 100%;
}

.carousel-list::-webkit-scrollbar {
  display: none; 
}


.carousel-item {
  flex: 0 0 auto;
  text-align: center;
  margin-right: 20px;
  max-width: 150px;
}


.carousel-image-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto 8px;
}

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

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

.carousel-label {
  font-size: 14px;
  color: {{ section.settings.label_color }};
  line-height: 1.2;
}

.carousel-label,
.carousel-label a {
  color: #000; 
  text-decoration: none; 
}


@media screen and (max-width: 768px) {
  .shop-by-design-room-columns {
    flex-direction: column;
    align-items: center;
  }
  .carousel-column {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .carousel-column:last-child {
    margin-bottom: 0;
  }
}


#shop-by-design-room-{{ section.id }} .carousel-link {
  text-decoration: none !important;
}


#shop-by-design-room-{{ section.id }} .carousel-link:hover,
#shop-by-design-room-{{ section.id }} .carousel-link:focus {
  text-decoration: none !important;
}


#shop-by-design-room-{{ section.id }} .carousel-label {
  text-decoration: none !important;
}

