/** Shopify CDN: Minification failed

Line 16:19 Expected identifier but found whitespace
Line 16:21 Unexpected "{"
Line 16:31 Expected ":"
Line 17:8 Expected identifier but found whitespace
Line 17:10 Unexpected "{"
Line 17:20 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-footer {
  padding: 40px 20px 0;
  background-color: {{ settings.background_color }};
  color: {{ settings.text_color }};
  font-family: sans-serif;
  font-size: 14px;
}
.custom-footer a {
  color: inherit;
  text-decoration: none;
}
.custom-footer a:hover {
  text-decoration: underline;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}
.footer-column h3 {
  font-weight: bold;
  margin-bottom: 10px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin: 6px 0;
}
.footer-brand img {
  max-width: 180px;
  height: auto;
  margin-bottom: 10px;
}
.footer-brand h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.footer-brand p {
  font-size: 13px;
  margin: 0;
}
.footer-contact p {
  margin: 8px 0;
}
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
}
.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.footer-social-icons a img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-social-icons a:hover img {
  opacity: 1;
}
@media (max-width: 768px) {
  .footer-wrapper {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    padding-top: 0;
  }

  .footer-column {
    width: 48%;
    margin-bottom: 20px;
  }

  .footer-column.footer-brand {
    width: 100%;
    margin-bottom: 20px;
    padding-top: 0;
  }

  .footer-column.footer-brand img {
    display: block;
    margin: 0 0 10px 0;
  }

  .custom-footer {
    padding-top: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
  }

  .footer-social-icons {
    margin-top: 10px;
  }
}
.collection-slider {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  background-color: #f9f9f9;
}

.collection-slider h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.collection-slider p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.slider-card {
  flex: 0 0 70%;
  max-width: 70%;
  transition: transform 0.3s ease;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 768px) {
  .slider-card {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (max-width: 767px) {
  .slider-card {
    flex: 0 0 80%;
    max-width: 80%;
  }
}

.slider-card:hover {
  transform: scale(1.02);
}

.slider-card img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.slider-card a {
  display: block;
  padding: 10px;
}

/* Navigation buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}

.nav-btn svg {
  width: 20px;
  height: 20px;
  fill: #333;
}

.nav-btn:hover {
  background-color: #f0f0f0;
}

.nav-btn.prev {
  left: 10px;
}

.nav-btn.next {
  right: 10px;
}
.icon-feature-wrapper {
  padding: 40px 20px;
  text-align: center;
  background-color: white;
}

.icon-feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 30px 40px;
  margin-top: 20px;
}

.icon-feature-block {
  width: 350px;
  text-align: center;
}

.icon-feature-block img {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
}

.icon-feature-block h3 {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.icon-feature-block p {
  font-size: 13px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .icon-feature-grid {
    justify-content: space-around;
  }

  .icon-feature-block {
    width: 90%;
  }
}