/** Shopify CDN: Minification failed

Line 14:0 Unexpected "<"
Line 112:0 Unexpected "{"
Line 112:1 Expected identifier but found "%"
Line 117:0 Unexpected "{"
Line 117:1 Expected identifier but found "%"
Line 171:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.cc-section {
  background: #f6f2ec;
  padding: 60px 20px;
}

.cc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 5rem;
}

/* Columns */
.cc-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* LEFT COLUMN */
.cc-left {
  text-align: left;
  padding-bottom: 40rem;
  align-items: flex-end;
}
.cc-left-image img {
  width: 100%;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  object-fit: cover;
  margin-left: 10rem;
}
.cc-left-text {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  padding: 0 10rem;
  text-align: end;
}
.cc-left-btn {
  display: inline-block;
  margin-right: 10rem;
  padding: 10px 24px;
  text-decoration: none;
  background: #8b6a48;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  width: auto;
  max-width: fit-content;
}
.cc-left-btn:hover {
  background: transparent;
  color: #8b6a48;
  border: 1px solid #8b6a48;
}

/* RIGHT COLUMN */
.cc-right {
  text-align: left;
}
.cc-right-image img {
  width: 100%;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  object-fit: cover;
  margin-left: -10rem;
}
.cc-right-text {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  padding: 0 10rem;
  text-align: start;
}
.cc-right-btn {
  display: inline-block;
  margin-left: 10rem;
  padding: 10px 24px;
  text-decoration: none;
  background: #8b6a48;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  width: auto;
  max-width: fit-content;
}
.cc-right-btn:hover {
  background: transparent;
  color: #8b6a48;
  border: 1px solid #8b6a48;
}

/* SERIF OPTION */
{% if section.settings.use_serif_heading %}
.cc-left-text strong,
.cc-right-text strong {
  font-weight: 500;
}
{% endif %}

/* RESPONSIVE */
@media (max-width: 899px) {
  .cc-col {
    gap: 0;
  }

  .cc-inner {
    display: grid; /* keep same grid layout */
    grid-template-columns: 1fr 1fr; /* maintain two columns */
    gap: 20px;
    padding: 2rem;
  }

  .cc-left, .cc-right {
    padding: 0;
  }

  .cc-left-image img,
  .cc-right-image img {
    margin: 0;
  }

  .cc-left-text {
      padding: 0;
    text-align: right;
  }

  .cc-right-text {
    padding: 0;
    text-align: left;
  }

  .cc-left-btn,
  .cc-right-btn {
    margin: 0;
  }
}
.cc-section {
  background: #f5f2ec;
}
@media (max-width: 767px) {
  .cc-right-btn,
  .cc-left-btn {
    padding: 7px 15px !important;
    font-size: 12px !important;
  }
    h3 {
    margin: 10px 0 !important;
  }

}

</style>
.slideshow-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: #d1d1d1;
  transition: all 0.3s ease;
  opacity: 0.6;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 2px;
}

.pagination-dot.active {
  width: 24px;
  background-color: #000;
  opacity: 1;
}


.custom-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: auto; /* Ensures the slider takes up space */
}
  
.custom-slideshow .slide:first-child {
  display: block; /* Show the first slide by default */
  opacity: 1;
  position: relative;
}
  
.custom-slideshow .slide {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.custom-slideshow .slide.active {
  display: block;
  opacity: 1;
  position: relative;
}

.custom-slideshow img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.slideshow-pagination {
    display: flex;
    justify-content: center;
    padding: 10px;
    background: #F5F2EC;
}
@media (max-width: 768px) {
  .custom-slideshow .desktop-image {
    display: block !important;
  }
  .custom-slideshow .mobile-image {
    display: block !important;
  }
}

@media (min-width: 769px) {
  .custom-slideshow .desktop-image {
    display: block !important;
  }
  .custom-slideshow .mobile-image {
    display: none !important;
  }
}

.custom-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: auto; /* Prevents collapse */
}