/** Shopify CDN: Minification failed

Line 53:13 Expected identifier but found whitespace
Line 53:15 Unexpected "{"
Line 53:25 Expected ":"
Line 54:8 Expected identifier but found whitespace
Line 54:10 Unexpected "{"
Line 54:20 Expected ":"

**/


/* CSS from section stylesheet tags */
.hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  display: none;
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
  color: white;
}
.hero-slide.active {
  display: block;
}
.hero-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-slide .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
}
.hero-slide .slide-content h2 {
  font-size: 2rem;
  margin: 0 0 10px;
}
.hero-slide .slide-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.hero-slide .slide-content a.button {
  padding: 10px 20px;
  background: {{ settings.button_background }};
  color: {{ settings.button_text_color }};
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.hero-slide .slide-content.empty {
  background-color: transparent;
  padding: 0;
}
.hero-slider .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1; /* Ensure arrows are above everything else */
}
.hero-slider .nav-arrow.left {
  left: 10px;
}
.hero-slider .nav-arrow.right {
  right: 10px;
}
.slide-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  z-index: 1; /* Ensure indicators are above everything else */
}
.slide-indicators .indicator {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.slide-indicators .indicator.active {
  background-color: #333;
}