/** Shopify CDN: Minification failed

Line 94:19 Expected identifier but found whitespace
Line 94:21 Unexpected "{"
Line 94:30 Expected ":"
Line 103:19 Expected identifier but found whitespace
Line 103:21 Unexpected "{"
Line 103:30 Expected ":"

**/


/* CSS from section stylesheet tags */
.luxury-panels {
  background-color: #fff;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.panel-container {
  display: flex;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  height: 600px;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.panel-container::-webkit-scrollbar {
  display: none;
}

.panel {
  position: relative;
  flex: 0 0 85%;
  width: 85%;
  height: 600px;
  overflow: hidden;
  scroll-snap-align: center;
}

.video-wrapper, .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper video, .panel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-wrapper {
  background: linear-gradient(145deg, {{ section.settings.border_color }}, {{ section.settings.border_color | color_modify: 'alpha', 0.6 }});
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.slide-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  text-align: center;
}

.navigation-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.nav-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: {{ section.settings.nav_button_color | color_modify: 'alpha', 0.3 }};
  border: none;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-button.active {
  background-color: {{ section.settings.nav_button_color }};
}

@media screen and (min-width: 769px) {
  .panel-container {
    padding: 0;
  }

  .panel {
    flex: 0 0 32%;
    width: 32%;
  }
}
.section--hero {
    background-color: #fffef2;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }

  .hero-image img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center center;
  }
  
  .hero-content {
    background-color: #cbc7aa;
    max-width: 100%;
    color: #fff;
    padding:24px;
    display: flex;
    align-items: center;
  }
  .hero-content h1 {margin-bottom: 24px;}
  
  
  @media screen and (min-width: 768px) {
    .hero-content {
      min-width: 420px;
      max-width: 420px;
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      padding:32px 40px;
    }
    .hero-image {
      margin-left: auto;
      width: calc(100% - 420px);
    }
    .hero-image img{
      height: 350px;
    }
  }

  @media screen and (min-width: 992px) {
    .hero-content {
      min-width: 600px;
      max-width: 600px;
    }
     .hero-image {
      width: calc(100% - 600px);
    }
    .hero-image img{
      height: 550px;
    }
  }