/** Shopify CDN: Minification failed

Line 20:18 Unexpected "{"
Line 20:27 Expected ":"
Line 20:34 Unexpected "{"
Line 21:21 Expected identifier but found whitespace
Line 21:23 Unexpected "{"
Line 21:32 Expected ":"
Line 33:14 Expected identifier but found whitespace
Line 33:16 Unexpected "{"
Line 33:25 Expected ":"
Line 33:49 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:text-and-images (INDEX:63) */
#shopify-section-{{ section.id }} {
    background-color: {{ section.settings.background_color }};
  }

  .flexible-section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
  }

  .flexible-section-inner {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
  }

  .flexible-section-inner.flex-row-reverse {
    flex-flow: row-reverse;
  }

  .flexible-section-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .flexible-section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .flexible-section-overline {
    margin: 0;
  }

  .flexible-section-heading {
    margin: 0;
  }

  .flexible-section-body {
    font-size: 19px;
    line-height: 1.5;
    color: #808171;
  }

  /* Features */
  .flexible-section-features {
    display: grid;
    gap: 4px;
    max-width: 500px;
  }

  .flexible-section-features.one-column {
    grid-template-columns: 1fr;
  }

  .overlay-features-box.two-columns,
  .flexible-section-features.two-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 16px;
    display: grid;
  }

  .flexible-section-features.with-background {
    background: white;
    min-width: fit-content;
    border-radius: 32px;
    padding: 24px 32px;
  }

  .feature-item {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .feature-icon {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .feature-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--esl-grey-dark);
    flex: 1;
  }

  .flexible-section-button {
    display: flex;
  }

  /* Images */
  .flexible-section-images {
    flex: 1;
  }

  .image-wrapper {
    border-radius: 32px;
    overflow: hidden;
  }

  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Two side by side images */
  .images-two-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .images-two-side .image-wrapper {
    aspect-ratio: 3 / 5;
  }

  /* Grid layout */
  .images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
  }

  .images-grid .image-large {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 2 / 2;
    position: relative;
  }

  .images-grid .image-small {
    aspect-ratio: 1 / 0.69;
  }

  .images-grid .image-small:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .images-grid .image-small:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }

  /* Overlay features on large image */
  .image-overlay-features {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
  }

  .overlay-features-box {
    background: white;
    border-radius: 32px;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  /* Stacked images */
  .images-stacked {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .images-stacked .image-wrapper {
    aspect-ratio: 1 / 0.9;
  }

  .flexible-section-features.has-overlay-features {
    display: none;
  }

  /* Responsive */
  @media (max-width: 1080px) {
    .overlay-features-box.two-columns {
      display: none;
    }
    .flexible-section-features.has-overlay-features {
      display: grid;
    }
    .flexible-section-inner {
      gap: 48px;
    }
    .flexible-section-features.two-columns {
      grid-template-columns: 1fr;
      max-width: fit-content;
    }
    .images-two-side .image-wrapper {
      aspect-ratio: 1.5 / .9;;
    }
    .images-two-side {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 767px) {
    .flexible-section-inner {
      flex-direction: column !important;
      gap: 48px;
    }

    .flexible-section-features.two-columns {
      grid-template-columns: 1fr 1fr;
    }

    .feature-item {
      text-align: start;
    }

    .flexible-section-content,
    .flexible-section-images {
      width: 100%;
    }

    .flexible-section-content {
      align-items: center;
      text-align: center;
    }

    .flexible-section-features.two-columns {
      width: 100%;
      justify-content: center;
      min-width: 330px;
    }

    .images-two-side .image-wrapper {
      aspect-ratio: auto;
      max-height: 176px;
    }

    .flexible-section-heading {
      font-size: 32px;
    }

    /* Grid layout adjustments for mobile */
    .images-grid .image-large {
      aspect-ratio: 1 / 1.2;
    }

    .images-grid .image-small {
      aspect-ratio: 1 / 0.8;
    }
    
  }

  @media (max-width: 479px) {
    .flexible-section-features.two-columns {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:text-and-images */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:collection-card (INDEX:112) */
/* Collection card */
  .collection-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: 32px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
  }
  
  .collection-card .main-button {
    margin-top: 16px;
  }

  .collection-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .collection-card:hover .collection-card-image img {
    transform: scale(1.04);
  }

  .collection-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f0ede8;
  }

  .collection-card-image-placeholder .placeholder-svg {
    width: 100%;
    height: 100%;
  }

  .collection-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    padding: 24px;
  }

  .collection-card-title {
    margin: 0;
  }

  .collection-card-title a {
    color: inherit;
  }

  .collection-card-description {
    margin: 0;
    flex: 1;
  }

  .collection-card-link {
    align-self: flex-start;
  }

  .collection-card-link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 32px;
  }
/* END_SNIPPET:collection-card */