/** Shopify CDN: Minification failed

Line 23:20 Unexpected "{"
Line 23:29 Expected ":"
Line 23:36 Unexpected "{"
Line 30:20 Unexpected "{"
Line 30:29 Expected ":"
Line 43:2 All "@import" rules must come first
Line 47:20 Unexpected "{"
Line 47:29 Expected ":"
Line 52:20 Unexpected "{"
Line 52:29 Expected ":"
... and 83 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* IMPORTANT: Using !important on key properties to ensure styles apply over theme defaults.
     This is often necessary in Shopify themes with strong default CSS or Tailwind JIT. */

  /* Initial hide for the entire section to prevent FOUC / layout shift */
  #shopify-section-{{ section.id }} {
    opacity: 0 !important; /* Hide completely initially with opacity */
    transition: opacity 0s !important; /* No transition on initial hide */
    min-height: 700px; /* NEW: Increase temporary height to ensure ample space */
  }

  /* Once JS makes it visible, apply full opacity and smooth transition */
  #shopify-section-{{ section.id }}.section-loaded {
    opacity: 1 !important; /* Make it visible */
    transition: opacity 0.5s ease-in-out !important; /* Add fade-in transition */
    min-height: auto !important; /* Remove temporary min-height after content loads */
  }
  
  /* Ensure body font and background are consistently applied for the section's visual context */
  body {
    font-family: 'Inter', sans-serif !important;
    background-color: #FDFBF8 !important;
  }

  /* Force font-display: swap for Inter to prevent text reflow if font loads late */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap') layer(theme-fonts);


  /* Abstract Background Shapes */
  #shopify-section-{{ section.id }} .abstract-bg-shapes {
      position: absolute !important;
      inset: 0px !important;
      z-index: 0 !important;
  }
  #shopify-section-{{ section.id }} .abstract-bg-shapes .shape-top-left {
      position: absolute !important;
      top: -5rem !important;
      left: -10rem !important;
      width: 24rem !important; /* w-96 */
      height: 24rem !important; /* h-96 */
      background-color: rgba(120, 53, 15, 0.1) !important; /* bg-amber-900/10 */
      border-radius: 9999px !important; /* rounded-full */
      filter: blur(40px) !important; /* blur-2xl */
      opacity: 0.8 !important; /* opacity-80 */
  }
  #shopify-section-{{ section.id }} .abstract-bg-shapes .shape-bottom-right {
      position: absolute !important;
      bottom: -8rem !important;
      right: -12rem !important;
      width: 30rem !important; /* w-[30rem] */
      height: 30rem !important; /* h-[30rem] */
      background-color: rgba(120, 53, 15, 0.1) !important; /* bg-amber-900/10 */
      border-radius: 9999px !important; /* rounded-full */
      filter: blur(40px) !important; /* blur-2xl */
      opacity: 0.8 !important; /* opacity-80 */
  }

  #shopify-section-{{ section.id }} .filterable-products-section {
    background-color: #F7F3EE !important;
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
    position: relative !important;
    overflow: hidden !important;
  }
  @media (min-width: 768px) {
    #shopify-section-{{ section.id }} .filterable-products-section {
      padding-top: 6rem !important;
      padding-bottom: 6rem !important;
    }
  }
  #shopify-section-{{ section.id }} .filterable-products-container {
    max-width: 1280px !important; /* Equivalent to container for lg and up */
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1.5rem !important; /* px-6 */
    padding-right: 1.5rem !important; /* px-6 */
    position: relative !important;
    z-index: 10 !important;
  }
  @media (min-width: 1024px) {
    #shopify-section-{{ section.id }} .filterable-products-container {
      padding-left: 2rem !important; /* lg:px-8 */
      padding-right: 2rem !important; /* lg:px-8 */
    }
  }

  #shopify-section-{{ section.id }} .filterable-products-header {
    text-align: center !important;
    max-width: 48rem !important; /* max-w-3xl */
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 3rem !important; /* mb-12 */
  }
   @media (min-width: 768px) {
    #shopify-section-{{ section.id }} .filterable-products-title {
      font-size: 3.1rem !important; /* md:text-4xl */
      line-height: 2.5rem !important;
    }
  }
  #shopify-section-{{ section.id }} .filterable-products-divider {
    width: 9rem !important; /* w-24 */
    height: 0.2rem !important; /* h-0.5, equivalent to 2px */
    background-color: rgba(146, 64, 14, 0.5) !important; /* bg-amber-800/50 */
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 1.5rem !important; /* mt-6 */
    display: block !important; 
    opacity: 1 !important; 
    visibility: visible !important;
  }
  #shopify-section-{{ section.id }} .filterable-products-filters {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem !important; /* gap-2 */
    margin-bottom: 3rem !important; /* mb-12 */
    margin-top: 4rem !important;
  }
   @media (min-width: 768px) {
    #shopify-section-{{ section.id }} .filterable-products-filters {
      gap: 1.5rem !important; /* md:gap-4 */
    }
  }
  #shopify-section-{{ section.id }} .filter-btn {
    background-color: #ffffff !important; /* bg-white */
    color: #1f2937 !important; /* text-gray-800 */
    font-weight: 520 !important; /* font-semibold */
    padding: 1rem 1.5rem !important; /* py-2 px-5 */
    font-size: 1.4rem !important;
    border-radius: 9999px !important; /* rounded-full */
    border: none !important; /* Remove any default button borders */
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important; /* Prevent text wrapping */
    text-decoration: none !important; /* Explicitly remove underline for all buttons */
    box-shadow: none !important; 
  }
  #shopify-section-{{ section.id }} .filter-btn:hover {
    background-color: #f3f4f6 !important; /* hover:bg-gray-100 */
    text-decoration: none !important; /* Ensure no underline on hover */
    box-shadow: none !important;
  }
  #shopify-section-{{ section.id }} .filter-btn.active {
    background-color: #374151 !important; /* bg-gray-800 - The dark blue color you want */
    color: #ffffff !important; /* text-white */
    text-decoration: none !important; /* Crucial: Ensure no underline when active */
    border: none !important; /* Ensure no unwanted borders */
    box-shadow: none !important; /* Ensure no unwanted shadows */
  }
  #shopify-section-{{ section.id }} .filterable-products-grid {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    gap: 2rem !important; /* gap-8 */
  }
  @media (min-width: 640px) {
    #shopify-section-{{ section.id }} .filterable-products-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important; /* sm:grid-cols-2 */
    }
  }
  @media (min-width: 1024px) {
    #shopify-section-{{ section.id }} .filterable-products-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr)) !important; /* lg:grid-cols-4 */
    }
  }
  #shopify-section-{{ section.id }} .product-item {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out !important;
    transform-origin: bottom center !important;
  }
  #shopify-section-{{ section.id }} .product-item.hidden {
    opacity: 0 !important;
    transform: scale(0.95) !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: -1 !important;
    visibility: hidden !important; /* Added visibility for better hiding behavior */
  }
  #shopify-section-{{ section.id }} .product-card-link {
    display: block !important;
    background-color: #ffffff !important; /* bg-white */
    border-radius: 0.5rem !important; /* rounded-lg */
    overflow: hidden !important;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06) !important; /* shadow-md */
    transition: all 0.3s ease !important;
    text-decoration: none !important; /* Remove underline from links */
  }
  #shopify-section-{{ section.id }} .product-card-link:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1) !important; /* hover:shadow-xl */
    transform: translateY(-0.25rem) !important; /* hover:-translate-y-1 */
  }
  #shopify-section-{{ section.id }} .product-card-image-wrapper {
    overflow: hidden !important;
    /* NEW: Ensure image wrapper has a fixed height based on image aspect ratio */
    height: 16rem !important; /* This matches the h-64 Tailwind class (16 * 16px = 256px) */
    /* Or, for responsive aspect ratio, use padding-bottom trick: */
    /* padding-bottom: 100% !important; /* For a 1:1 aspect ratio */
    /* position: relative !important; */
  }
  #shopify-section-{{ section.id }} .product-card-image {
    width: 100% !important;
    height: 16rem !important; /* h-64 */
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
    /* If using padding-bottom for aspect ratio on wrapper, then use: */
    /* position: absolute !important; */
    /* top: 0 !important; */
    /* left: 0 !important; */
  }
  #shopify-section-{{ section.id }} .product-card-link:hover .product-card-image {
    transform: scale(1.05) !important; /* group-hover:scale-105 */
  }
  #shopify-section-{{ section.id }} .product-card-placeholder {
      width: 100% !important;
      height: 16rem !important; /* h-64 */
      object-fit: cover !important;
      background-color: #e5e7eb !important; /* bg-gray-200 */
  }
  #shopify-section-{{ section.id }} .product-card-info {
    padding: 1.25rem !important; /* p-5 */
    text-align: center !important;
  }
  #shopify-section-{{ section.id }} .product-card-title {
    font-size: 1.125rem !important; /* text-lg */
    line-height: 1.75rem !important;
    font-weight: 600 !important; /* font-semibold */
    color: #1f2937 !important; /* text-gray-800 */
  }
  #shopify-section-{{ section.id }} .product-card-price {
    color: #4b5563 !important; /* text-gray-600 */
    font-weight: 500 !important; /* font-medium */
    margin-top: 0.25rem !important; /* mt-1 */
  }
  #shopify-section-{{ section.id }} .shopify-editor-placeholder {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    padding: 4rem 2rem !important;
    border: 2px dashed #d1d5db !important;
    border-radius: 0.5rem !important;
    color: #6b7280 !important;
  }
{{ section.settings.heading_font | font_face }}
  {{ section.settings.body_font | font_face }}

  .how-it-works-container {
    max-width: 1140px;
    margin: 0 auto 40px;
    text-align: center;
    padding: 40px 0; /* Removed horizontal padding */
    background-color: #fcfbf9;
    font-family: {{ section.settings.body_font.family }}, {{ section.settings.body_font.fallback_families }};
  }
  .mobile-slider-wrapper {
    position: relative;
  }
  .section-header {
      padding: 0 20px; /* Add padding here so titles are not edge-to-edge */
  }
  .section-header h1 {
    font-family: {{ section.settings.heading_font.family }}, {{ section.settings.heading_font.fallback_families }};
    font-size: 3.5rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: bold;
  }
  .section-header p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
    color: #5d5d5d;
    font-weight: {{ section.settings.body_font.weight }};
  }
  .steps-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px 80px;
    align-items: start;
    justify-items: center;
    padding: 0 20px; /* Padding for desktop view */
  }
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    width: fit-content;
  }
  .step-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
  .step-2 { grid-column: 2 / 3; grid-row: 2 / 3; margin-top: 20px; }
  .step-3 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .step-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    width: 450px;
    height: 300px;
  }
  .visual-box-image, .visual-box.placeholder {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  .visual-box-image { object-fit: cover; }
  .visual-box.placeholder {
    background-color: #f0ebe5;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .placeholder-svg {
    width: 50px;
    height: 50px;
    color: #c5a992;
  }
  .step-content { width: 450px; }
  .step-content .step-label {
    font-size: 1.2rem;
    color: #b0a091;
    margin-bottom: 8px;
    font-weight: 500;
  }
  .step-content h3 {
    font-family: {{ section.settings.heading_font.family }}, {{ section.settings.heading_font.fallback_families }};
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: bold;
  }
  .step-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0 auto;
    color: #5d5d5d;
  }
  .connector-arrow {
    position: absolute;
    height: auto;
    pointer-events: none;
    width: 140px;
  }
  .arrow-1 { top: 130px; left: 700px; }
  .arrow-2 { top: 600px; left: 250px; transform: scaleX(-1); }

  .slider-nav, .slider-arrows {
      display: none;
  }

  @media (max-width: 1100px) {
    .step-visual, .step-content { width: 400px; }
    .step-visual { height: 267px; }
    .arrow-1 { left: 450px; top: 170px; }
    .arrow-2 { left: 450px; top: 540px; }
  }
  @media (max-width: 900px) {
    .step-visual, .step-content { width: 350px; }
    .step-visual { height: 233px; }
    .arrow-1 { left: 390px; top: 150px; }
    .arrow-2 { left: 390px; top: 500px; }
  }

  /* --- MODIFIED --- Mobile Slider Styles for Centering and Focus */
  @media (max-width: 768px) {
    .steps-wrapper {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      padding: 0; /* MODIFIED: No padding to ensure full width */
      margin: 0;
      grid-gap: 0;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .steps-wrapper::-webkit-scrollbar { display: none; }

    .step, .step-2, .step-3 {
      grid-column: auto;
      grid-row: auto;
      margin-top: 0;
      flex: 0 0 100%; /* Each slide is full width of the container */
      scroll-snap-align: center; /* MODIFIED: Snap to center */
      scroll-snap-stop: always;
      width: 100%;
      padding: 0; /* MODIFIED: No padding on the slide itself */
      /* MODIFIED: Centering content within the slide */
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .step-visual, .step-content {
      /* MODIFIED: Set width to less than 100% to create centered block */
      width: 90%;
      max-width: 450px;
    }
    .step-visual {
      height: 65vw;
      max-height: 350px;
    }
    .step-content {
        /* Add some space between text and dots/arrows */
        margin-bottom: 20px;
    }
    .connector-arrow { display: none; }
    .section-header h1 { font-size: 2.2rem; }
    .section-header p { font-size: 1rem; margin: 0 auto 30px auto; max-width: 90%; }
    .step-content h3 { font-size: 1.6rem; }
    .step-content p { font-size: 1rem; }

    .slider-arrows {
        display: block;
        position: absolute;
        top: calc( (65vw) / 2 );
        transform: translateY(-50%);
        width: 100%;
        left: 0;
        /* MODIFIED: Use padding to position arrows inward from screen edges */
        padding: 0 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        pointer-events: none;
        z-index: 2;
    }
    .slider-arrow {
        pointer-events: all;
        background-color: rgba(255, 255, 255, 0.8);
        border: 1px solid #eee;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.2s, opacity 0.2s;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        color: #333;
    }
    .slider-arrow:hover {
        background-color: #fff;
    }
    .slider-arrow.hidden {
        opacity: 0;
        pointer-events: none;
    }
    .slider-nav {
      display: flex;
      justify-content: center;
      gap: 12px;
      /* MODIFIED: Removed top margin as space is now on .step-content */
      margin-top: 0;
    }
    .slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #d8d8d8;
      transition: background-color 0.3s ease;
    }
    .slider-dot.active {
      background-color: #b0a091;
    }
  }