/** Shopify CDN: Minification failed

Line 52:12 Expected identifier but found whitespace
Line 52:14 Unexpected "{"
Line 52:23 Expected ":"
Line 63:2 Unexpected "}"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:about-text (INDEX:0) */
.about-section {
    width: 100%; 
    margin-top: 0;
    margin-bottom: 50px;
    overflow: hidden; /* Ensures full-width content doesn't cause horizontal scroll */
  }

  /* Full-width container override for web/desktop */
  .about-section .page-width {
    max-width: 100%; /* Makes the inner container full width */
    padding-left: 0;
    padding-right: 0;
  }

  /* Desktop/Web Layout (side-by-side) */
  @media screen and (min-width: 1200px) {
    .about-section__grid {
      display: grid;
      grid-template-columns: 40% 60%; /* Equal width columns */
      align-items: Top;
    }

    .about-section__text-column {
      padding-left: 30px; /* Generous padding on desktop for alignment */
      padding-right: 10px;
    }

    .about-section__image-column {
      height: 100%;
      overflow: hidden;
    }

     .about-section__heading {
      font-size: 12px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
      color: {{ section.settings.heading_color }};
      justify-content: left;
    }

  }

  .about-section__text-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    justify-content: left;
  }
  }

  /* Mobile Layout (stacked and padded) */
  @media screen and (max-width: 749px) {
    .about-section__grid {
      display: block; /* Stacks columns */
    }

    /* Apply the 0.8cm (8px) margin/padding on the text content */
    .about-section__text-column {
      padding: 40px 8px; /* Vertical padding + 8px horizontal padding */
    }

    /* Ensure the image is full width on mobile (no padding/margin) */
    .about-section__image-column {
      padding:0;
      margin: 0;
    }
  }

  .about-section__image {
    display: block;
    width: 96%;
    height: 100%;
    padding-left: 40%;
    object-fit: cover; /* Ensures image covers its area */
  }

  .about-section__heading {
    font-size: 12px;
    margin-bottom: 1em;
    padding-left: 0.4cm;
    padding-right: 0.4cm;
  }

  .about-section__text-content p {
    font-size: 20px;
    margin-bottom: 1.5em;
    line-height: 1.6;
    padding-left: 0.4cm;
    padding-right: 0.4cm;
  }
/* END_SECTION:about-text */

/* START_SECTION:return-refund-policy (INDEX:110) */
.full-width-bg {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background-color: #FDFBF8;
  padding-top: 4rem;
  padding-bottom: 4rem;
  box-sizing: border-box;
}
.content-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: #374151;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.content-container h1 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 1.5rem;
  border-left: 6px solid #D4AB7A;
  padding-left: 1rem;
  text-align: left;
}
.content-container p.lead {
  font-size: 1.125rem;
  color: #6B7280;
  margin-bottom: 3rem;
}
.content-container h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #111827;
  margin-top: 3rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #E5E7EB;
  padding-bottom: 0.5rem;
}
.content-container ul, 
.content-container ol {
  margin-left: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.75;
  color: #4B5563;
}
.content-container a {
  color: #D4AB7A;
  text-decoration: underline;
}
.content-container a:hover {
  color: #a68663;
}
.btn-contact {
  display: inline-block;
  background-color: #D4AB7A;
  color: white !important;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 2rem;
  text-align: center;
  text-decoration: none !important;
}
.btn-contact:hover {
  background-color: #a68663;
  text-decoration: none !important;
}
/* END_SECTION:return-refund-policy */