/** Shopify CDN: Minification failed

Line 45:19 Expected identifier but found whitespace
Line 45:21 Unexpected "{"
Line 45:30 Expected ":"
Line 52:6 Expected identifier but found whitespace
Line 52:8 Unexpected "{"
Line 52:17 Expected ":"
Line 52:40 Expected ":"
Line 350:19 Expected identifier but found whitespace
Line 350:21 Unexpected "{"
Line 350:30 Expected ":"
... and 35 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* === Visibility Logic === */

/* Show by default */
.nf-show-desktop,
.nf-show-mobile,
.nf-show-both {
  display: block;
}

/* Hide desktop-only section on mobile */
@media (max-width: 749px) {
  .nf-show-desktop {
    display: none !important;
  }
}

/* Hide mobile-only section on desktop */
@media (min-width: 750px) {
  .nf-show-mobile {
    display: none !important;
  }
}

/* === Main Styles === */

.category-trio-section {
  background-color: {{ section.settings.background_color }};
  padding: 3rem 1rem;
}

.category-trio-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: {{ section.settings.gap_size }}px;
}

.category-item {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.category-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.4s ease;
}

.category-item:hover a {
  transform: scale(1.02);
}

.category-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.category-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Layout */
@media (max-width: 989px) {
  .category-trio-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 749px) {
  .category-trio-wrapper {
    grid-template-columns: 1fr;
  }

  .category-title {
    font-size: 1rem;
  }
}
.centered-carousel {
  background: #f5f1ec;
  padding: 4rem 1rem;
  overflow: hidden;
}

/* 🔒 Visibility control */
.show-desktop-only {
  display: block;
}
.show-mobile-only {
  display: none;
}
@media (max-width: 990px) {
  .show-desktop-only {
    display: none !important;
  }
  .show-mobile-only {
    display: block !important;
  }
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Slides */
.carousel-slide {
  flex: 0 0 auto;
  position: relative;
  width: 304px;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  opacity: 0.6;
  transform: scale(0.92);
  text-align: center;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1.05);
  z-index: 3;
}

.carousel-slide.prev,
.carousel-slide.next {
  opacity: 0.85;
  transform: scale(0.96);
}

/* Title & Description ABOVE image */
.carousel-text {
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.carousel-slide.active .carousel-text {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Larger text */
.carousel-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #111;
}

.carousel-description {
  font-size: 1.1rem;
  color: #333;
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Image */
.carousel-image img {
  width: 100%;
  height: 348px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Mobile */
@media (max-width: 749px) {
  .carousel-slide {
    width: 260px;
  }
  .carousel-image img {
    height: 300px;
  }
  .carousel-title {
    font-size: 1.25rem;
  }
  .carousel-description {
    font-size: 1rem;
  }
}
.footer {
  background: #faf7f3;
  color: #111;
  padding: 3rem 1.5rem;
}

.footer-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 110px;
  margin-bottom: 0.75rem;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6c1b34;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 1rem;
  color: #333;
  max-width: 400px;
  line-height: 1.5;
}

/* Info Links */
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: #111;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* Newsletter */
.footer-newsletter {
  max-width: 400px;
}

.footer-newsletter h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.footer-form-field {
  display: flex;
  align-items: center;
  border: 1px solid #111;
  border-radius: 4px;
  overflow: hidden;
}

.footer-input {
  flex: 1;
  border: none;
  padding: 0.8rem;
  font-size: 1rem;
  background: transparent;
  outline: none;
}

.footer-submit {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 1rem;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: #111;
  transition: opacity 0.3s ease;
}

.footer-social a:hover svg {
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 749px) {
  .footer-wrapper {
    gap: 2rem;
  }
}
.category-trio-section {
  background-color: {{ section.settings.background_color }};
  padding: 0rem 0rem;
}

.category-trio-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: {{ section.settings.gap_size }}px;
}

.category-item {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.category-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.4s ease;
}

.category-item:hover a {
  transform: scale(1.02);
}

.category-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.category-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ✅ Responsive layout */
@media (max-width: 989px) {
  .category-trio-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 749px) {
  .category-trio-wrapper {
    grid-template-columns: 1fr;
  }

  .category-title {
    font-size: 1rem;
  }
}
.for-every-rhythm-single {
  background: {{ section.settings.background_color }};
  padding: 4rem 1rem;
  text-align: center;
}

.for-every-heading {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: #111;
}

.for-every-grid-single {
  display: flex;
  flex-direction: column;
  gap: {{ section.settings.gap_size }}px;
}

.rhythm-item-single {
  position: relative;
  text-align: center;
}

.rhythm-item-single a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.4s ease;
}

.rhythm-item-single:hover a {
  transform: scale(1.02);
}

.rhythm-image-single {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.rhythm-title-single {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ✅ Responsive adjustments */
@media (max-width: 749px) {
  .for-every-heading {
    font-size: 1.6rem;
  }

  .rhythm-title-single {
    font-size: 0.9rem;
  }
}
.for-every-rhythm-section {
  background: {{ section.settings.background_color }};
  padding: 4rem 1rem;
  text-align: center;
}

.for-every-rhythm-section {
  background: {{ section.settings.background_color }};
  padding: 4rem 1rem;
  text-align: left !important;  /* IMPORTANT: override center */
}

/* Visibility */
.visibility-desktop {
  display: block;
}
.visibility-mobile {
  display: none;
}
@media (max-width: 749px) {
  .visibility-desktop {
    display: none;
  }
  .visibility-mobile {
    display: block;
  }
}

/* Heading */
.for-every-heading {
  text-align: left !important;
  font-size: clamp(1.8rem, 4vw, 2.4rem);

  /* FORCE BOLD EXACTLY LIKE SCREENSHOT */
  font-weight: 800 !important;          /* Stronger than 700 */
  font-family: inherit !important;

  color: #111;
  margin-bottom: 1.5rem;
}


/* Default: Desktop = 3 columns */
.for-every-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 3 columns */
  gap: {{ section.settings.gap_size }}px;
}

/* Mobile: 2 columns */
@media (max-width: 749px) {
  .for-every-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 10px;
  }
}


/* Item styling */
.rhythm-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.4s ease;
}
.rhythm-item:hover a {
  transform: scale(1.02);
}

.rhythm-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Title */
.rhythm-title {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mobile refinements */
@media (max-width: 749px) {
  .for-every-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .rhythm-title {
    font-size: 0.9rem;
  }
  .for-every-heading {
    font-size: 1.5rem;
  }
}
.centered-carousel {
  background: #f5f1ec;
  padding: 4rem 1rem;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Slides */
.carousel-slide {
  flex: 0 0 auto;
  position: relative;
  width: 304px;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  opacity: 0.6;
  transform: scale(0.92);
  text-align: center;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1.05); /* smoother, subtle enlarge */
  z-index: 3;
}

.carousel-slide.prev,
.carousel-slide.next {
  opacity: 0.85;
  transform: scale(0.96);
}

/* Title & Description ABOVE image */
.carousel-text {
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.carousel-slide.active .carousel-text {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.carousel-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.carousel-description {
  font-size: 0.9rem;
  color: #444;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Image */
.carousel-image img {
  width: 100%;
  height: 348px;
  object-fit: cover;
  border-radius: 0px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Mobile */
@media (max-width: 749px) {
  .carousel-slide {
    width: 260px;
  }
  .carousel-image img {
    height: 300px;
  }
  .carousel-title {
    font-size: 1rem;
  }
  .carousel-description {
    font-size: 0.8rem;
  }
}
.hero-slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 80vh;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0);
}

.slide-content {
  color: white;
  padding: 2rem;
  max-width: 700px;
  z-index: 3;
}

.slide-button {
  background: white;
  color: black;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
}

.slideshow-dots {
  text-align: center;
  position: absolute;
  bottom: 2rem;
  width: 100%;
  z-index: 5;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  width: 10px;
  height: 10px;
  border-radius: 0px;
}

@media (max-width: 749px) {
  .slide {
    height: 80vh;
  }
}
/* ------------------------------- */
/* TITLE                          */
/* ------------------------------- */
.in-focus-section .in-focus-title {
  font-size: 2rem !important;
  font-weight: 900 !important; /* ultra bold like screenshot */
  margin-bottom: 2rem;
  color: #111;
  text-align: left !important;
  letter-spacing: 0;
}

/* ------------------------------- */
/* VISIBILITY                     */
/* ------------------------------- */
.show-desktop-only {
  display: block;
}
.show-mobile-only {
  display: none;
}
@media (max-width: 990px) {
  .show-desktop-only {
    display: none !important;
  }
  .show-mobile-only {
    display: block !important;
  }
}

/* ------------------------------- */
/* LAYOUT                         */
/* ------------------------------- */
.in-focus-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.in-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.in-focus-item {
  text-align: center;
  text-decoration: none;
  color: #111;
  transition: transform 0.3s ease;
}

.in-focus-item:hover {
  transform: translateY(-5px);
}

.in-focus-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ------------------------------- */
/* TEXT BELOW IMAGE               */
/* ------------------------------- */
.in-focus-name {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1rem;
}

.in-focus-price {
  font-size: 1rem;
  color: #333;
  margin-top: 0.25rem;
}

/* ------------------------------- */
/* MOBILE GRID (2 columns)        */
/* ------------------------------- */
@media (max-width: 749px) {
  .in-focus-section .in-focus-title {
    font-size: 1.5rem;
    font-weight: 900 !important;
  }

  .in-focus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .in-focus-name {
    font-size: 1rem;
  }

  .in-focus-price {
    font-size: 0.95rem;
  }
}
.in-two-tones {
  background: #fff;
  padding: 4rem 1rem;
  text-align: center;
}

/* 🔒 Visibility Control */
.show-desktop-only {
  display: block;
}
.show-mobile-only {
  display: none;
}
@media (max-width: 990px) {
  .show-desktop-only {
    display: none !important;
  }
  .show-mobile-only {
    display: block !important;
  }
}

.two-tones-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.in-two-tones .two-tones-title {
  font-size: 2rem !important;
  font-weight: 700 !important; /* FORCE BOLD */
  text-align: left !important; /* FORCE LEFT */
  margin-bottom: 1rem;
  color: #000;
}

.in-two-tones .two-tones-description {
  font-size: 1.15rem !important;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: left !important; /* FORCE LEFT */
  color: #111;
  max-width: 700px;
}


/* 🟦 2-column grid on all screens */
.two-tones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  justify-items: center;
  align-items: center;
}

.two-tone-block {
  width: 100%;
  max-width: 400px;
}

.two-tone-link {
  display: block;
  transition: transform 0.3s ease;
}

.two-tone-link:hover {
  transform: scale(1.03);
}

.two-tone-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0px;
  object-fit: cover;
}






.in-two-tones {
  background: #ffffff;
  padding: 3rem 1rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left; /* IMPORTANT */
}

.two-tones-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- TEXT STYLING ---------- */
.two-tones-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  text-align: left;
}

.two-tones-description {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 2.8rem; /* More spacing like screenshot */
  color: #111;
  text-align: left;
}

/* ---------- IMAGE GRID ---------- */
.two-tones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem; /* Proper gap like screenshot */
}

.two-tone-block {
  width: 100%;
}

.two-tone-link {
  display: block;
}

.two-tone-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 749px) {
  .in-two-tones {
    padding: 2rem 1rem 3rem;
  }

  .two-tones-title {
    font-size: 1.6rem;
  }

  .two-tones-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .two-tones-grid {
    gap: 1.2rem;
  }
}

/* Visibility controls stay same */
.show-desktop-only { display: block; }
.show-mobile-only { display: none; }

@media (max-width: 990px) {
  .show-desktop-only { display: none !important; }
  .show-mobile-only { display: block !important; }
}














/* Responsive text */
@media (max-width: 749px) {
  .two-tones-title {
    font-size: 1.5rem;
  }
  .two-tones-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .two-tone-block {
    max-width: 100%;
  }
}
/* ----------------------------------------- */
/* VISIBILITY (Show/Hide Entire Section)     */
/* ----------------------------------------- */

.visibility-desktop {
  display: block;
}

.visibility-mobile {
  display: none;
}

.visibility-both {
  display: block;
}

@media (max-width: 749px) {
  .visibility-desktop {
    display: none !important;
  }
  .visibility-mobile {
    display: block !important;
  }
}

/* ----------------------------------------- */
/* ORIGINAL STYLES                           */
/* ----------------------------------------- */

.intro-image-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: {{ section.settings.background_color }};
  padding: {{ section.settings.padding_y }}rem 1rem;
}

.intro-image {
  max-width: {{ section.settings.max_width }}px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 749px) {
  .intro-image-section {
    padding: 0.5rem 0.1rem;
  }
}
.swipe-carousel {
  background: {{ section.settings.background_color }};
  padding: 4rem 1rem;
  overflow: hidden;
  text-align: center;
}

.carousel-heading {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 2rem;
}

.carousel-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.carousel-item {
  flex: 0 0 80%;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.6;
  transform: scale(0.95);
  text-align: center;
}

.carousel-item img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.carousel-item.active {
  transform: scale(1.05);
  opacity: 1;
}

.carousel-title {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carousel-item.active .carousel-title {
  opacity: 1;
}

/* ✅ Mobile fine-tuning */
@media (max-width: 749px) {
  .carousel-item {
    flex: 0 0 75%;
  }
  .carousel-title {
    font-size: 0.9rem;
  }
}