/** Shopify CDN: Minification failed

Line 110:0 Unexpected "<"
Line 143:0 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-fullwidth-section-footer-navigation (INDEX:12) */
.custom-fullwidth-wrapper {
  /*width: 100vw ; removed this attribute on 05-06-2026*/ 
  margin: 0;
  padding: 0;
  background-color: #000000; /* adjust as needed */
  overflow-x: hidden;
}

.custom-fullwidth-wrapper .inner-content {
  /* max-width: 100% !important; removed this attribute on 05-06-2026*/ 
  padding: 20px 0;
  text-align: center;
  color: white;
}

.custom-fullwidth-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-fullwidth-wrapper a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.custom-fullwidth-wrapper a:hover {
  color: #c4a77d;
}
/* END_SECTION:custom-fullwidth-section-footer-navigation */

/* START_SECTION:feed-cards (INDEX:20) */
.feed-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 20px;
}

.feed-scroll-container {
  display: flex;
  gap: 24px;
  width: max-content;
}

.feed-card {
  flex: 0 0 auto;
  width: 350px;
  background: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}

.feed-card img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.feed-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 0 16px;
}

.feed-card p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
  padding: 0 16px;
}

.feed-card a {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
  padding: 0 16px 16px;
  transition: color 0.2s ease;
}

.feed-card a:hover {
  color: #c4a77d;
}
/* END_SECTION:feed-cards */

/* START_SECTION:footer-links (INDEX:22) */
<style>
.footer-links-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-align: center;
  padding: 20px 0;
}

.footer-links-wrapper a {
  text-decoration: none;
  color: #000;
  padding: 0 8px;
  border-right: 1px solid #ccc;
}

.footer-links-wrapper a:last-child {
  border-right: none;
}

@media (max-width: 600px) {
  .footer-links-wrapper {
    flex-direction: column;
    gap: 6px;
  }

  .footer-links-wrapper a {
    border-right: none;
  }
}
</style>
/* END_SECTION:footer-links */

/* START_SECTION:testimonials-carousel (INDEX:79) */
.testimonials-carousel-wrapper {
  margin: 0 auto;
  max-width: 1200px;
  padding: 40px 20px;
}

.testimonials-carousel .testimonial-card {
  display: flex !important; /* Required for Slick */
  align-items: center;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  gap: 20px;
  margin: 0 10px; /* spacing between slides */
}

.testimonial-image {
  flex-shrink: 0;
  width: 150px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.testimonial-stars {
  color: #d9c299;
  font-size: 18px;
  margin-bottom: 8px;
}

.testimonial-name {
  font-weight: bold;
  font-size: 18px;
  margin: 0;
}

.testimonial-role {
  color: grey;
  margin-bottom: 10px;
  font-size: 16px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.5;
}

.testimonials-carousel .slick-list {
  margin: 0 -10px; /* counteracts card margin to align edges */
}

.testimonials-carousel .slick-dots {
  margin-top: 20px;
  text-align: center;
}

.testimonials-carousel .slick-dots li button:before {
  font-size: 12px;
  color: #ccc;
}

.testimonials-carousel .slick-dots li.slick-active button:before {
  color: #c4a77d;
}

@media (max-width: 767px) {
  .testimonials-carousel .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-image {
    width: 100%;
    max-width: 250px;
    height: auto;
  }

  .testimonial-content {
    text-align: center;
  }
}
/* END_SECTION:testimonials-carousel */