/** Shopify CDN: Minification failed

Line 25:14 Expected identifier but found whitespace
Line 25:16 Unexpected "{"
Line 25:25 Expected ":"
Line 25:51 Expected ":"
Line 26:17 Expected identifier but found whitespace
Line 26:19 Unexpected "{"
Line 26:28 Expected ":"
Line 26:57 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-full-slide (INDEX:14) */
.custom-full-slide-section {
  position: relative;
  overflow: hidden;
}
.custom-full-slide-container {
  width: 100%;
  height: calc({{ section.settings.section_height }}vh - {{ section.settings.padding_top }}px - {{ section.settings.padding_bottom }}px);
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  position: relative;
}
.custom-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: opacity 0.6s ease;
}
.custom-slide.active {
  display: block;
  opacity: 1;
  z-index: 1;
}
.custom-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  max-width: 90%;
}
.slide-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
.slide-content p {
  font-size: 1rem;
  margin-bottom: 1em;
}
.slide-content a {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: #ffffff;
  color: #000;
  text-decoration: none;
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .slide-content h2 {
    font-size: 1.5rem;
  }
  .slide-content p {
    font-size: 0.9rem;
  }
}
.custom-slide-nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.custom-slide-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  border: none;
  opacity: 0.5;
  cursor: pointer;
}
.custom-slide-nav button.active {
  opacity: 1;
}
/* END_SECTION:custom-full-slide */

/* START_SECTION:full-slideshow (INDEX:21) */
.fullscreen-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.fullscreen-slideshow .slide-wrapper {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.fullscreen-slideshow .slide {
  flex: 0 0 100%;
  position: relative;
  height: var(--slide-height);
  max-height: var(--max-slide-height);
  cursor: pointer;
}

.fullscreen-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fullscreen-slideshow .slide-content {
  position: absolute;
  color: white;
  text-align: center;
  padding: 1rem;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.fullscreen-slideshow .dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.fullscreen-slideshow .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.fullscreen-slideshow .dot.active {
  background: white;
}

.fullscreen-slideshow .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  z-index: 10;
}
.fullscreen-slideshow .arrow.left { left: 10px; }
.fullscreen-slideshow .arrow.right { right: 10px; }
/* END_SECTION:full-slideshow */

/* START_SECTION:fullscreen-slideshow (INDEX:22) */
.custom-full-slide-section {
  position: relative;
  overflow: hidden;
}
.custom-full-slide-container {
  width: 100%;
  height: calc({{ section.settings.slideshow_height }}vh);
  position: relative;
}
.custom-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: opacity 0.6s ease;
}
.custom-slide.active {
  display: block;
  opacity: 1;
  z-index: 1;
}
.custom-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  max-width: 90%;
}
.slide-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
.slide-content p {
  font-size: 1rem;
  margin-bottom: 1em;
}
.custom-slide-nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.custom-slide-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  border: none;
  opacity: 0.5;
  cursor: pointer;
}
.custom-slide-nav button.active {
  opacity: 1;
}
/* END_SECTION:fullscreen-slideshow */

/* START_SECTION:slideshow-fullscreen (INDEX:58) */
.fullscreen-slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 1; /* Ensures the slideshow doesn't overlay other content */
}

.slideshow-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

.slide {
  flex: 0 0 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  text-align: center;
}

.slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.slide-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

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

.slideshow-button {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  pointer-events: all;
  user-select: none;
}

.navigation-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: white;
}

@media (max-width: 767px) {
  .fullscreen-slideshow {
    height: 80vh; /* Adjust for mobile height */
  }
}
/* END_SECTION:slideshow-fullscreen */