/** Shopify CDN: Minification failed

Line 208:20 Expected identifier but found whitespace
Line 208:22 Unexpected "{"
Line 208:31 Expected ":"
Line 208:64 Expected ":"
Line 209:23 Expected identifier but found whitespace
Line 209:25 Unexpected "{"
Line 209:34 Expected ":"
Line 209:70 Expected ":"

**/
   .eira-why-choose--full-width {
      width: 100%;
    }

    .eira-why-choose {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .eira-why-choose h2 {
      margin-bottom: 70px;
      font-family: "Americana", serif;
    }

    .eira-why-choose p {
      line-height: 1.6;
      color: #333;
      margin: 1.2rem 0;
      font-family: "Americana", serif;
    }

    .italic-script {
      font-family: "Pinyon Script", "lucia BT", serif !important;
      font-style: italic;
      font-size: 18px !important;
    }

    .bold-uppercase {
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.04em;
    }

    .brush-underline {
      position: relative;
      display: inline-block;
      z-index: 1;
    }

    .brush-underline::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0.1em;
      width: 100%;
      height: 0.5em;
      background: url('/cdn/shop/files/brush-painting.png?v=1752145913') no-repeat center bottom;
      background-size: 100% 100%;
      z-index: -1;
      pointer-events: none;
    }

    .eira-container {
      max-width: 900px;
      margin: 0 auto;
    }
    .eira-container--full-width{
      max-width: 90% !important;
    }
    .eira-offers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap:1.5rem 4.5rem;
      justify-content: center;
    }
    

    .eira-offers-glow-container {
      position: relative;
    }
    
    .eira-offers-glow-container::before {
      content: '';
      position: absolute;
      top: -50px;
      bottom:-50px;
      left: 50%;
      width: 100%;
      transform: translateX(-50%);
      background: radial-gradient(
          circle at center,
        rgba(234, 184, 140, 0.7) 5%,
        rgba(234, 184, 140, 0.6) 15%,
        rgba(234, 184, 140, 0.5) 25%,
        rgba(234, 184, 140, 0.4) 60%,
        rgba(234, 184, 140, 0) 80%
      );
      z-index: 0;
      border-radius: 50%;
      filter: blur(80px);
    }
  

    .eira-offers-grid .eira-card {
      background: #fff;
      border: 2px solid #000;
      border-top-left-radius: 0;
      border-top-right-radius: 20px;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 20px;
      text-decoration: none;
      color: inherit;
      padding: 10px;
      z-index: 3;
      justify-content: center;
      align-items: center;
      display: flex;
    }
    
    .offer-button-container {
      margin-top: 70px;
    }
    
    .eira-cards-grid .eira-card {
      background: #fff;
      border: 2px solid #000;
      border-top-left-radius: 0;
      border-top-right-radius: 20px;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 20px;
      text-decoration: none;
      color: inherit;
      padding: 20px;
      z-index:3;
      justify-content: center;
      align-items: center;
      display: flex;
    }
    
    .eira-offers-grid .eira-card:hover {
      opacity: 0.8;
      cursor:pointer;
    }

    .eira-card-content {
      position: relative;
      z-index: 3;
    }

    .eira-offer-section {
      padding: 3rem 1rem;
      border-radius: 1.5rem;
    }

    .offer-heading {
      text-align: center;
      font-size: 1.8rem;
      margin-bottom: 2rem;
      font-family: "Americana", serif;
    }
    .eira-cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
      position: relative;
    }
    
    .who-we-serve-image-left,
    .who-we-serve-image-right {
      position: absolute;
      width: 150px;
      z-index: 1;
    }
    
    .who-we-serve-image-left {
      bottom:-43px;
      left: -68px;
      transform: scale(-1,-1);
    }
    
    .who-we-serve-image-right {
      top:-43px;
      transform: scaleY(-1);
      right: -68px;
    }
    
    @media (max-width: 767px) {
      .who-we-serve-image-left {
        bottom:-43px;
        left: -25px;
        transform: scale(-1,-1);
      }
    
      .who-we-serve-image-right {
        top:-43px;
        transform: scaleY(-1);
        right: -25px;
      }
    }
    @media (min-width: 768px) {
      .eira-offers-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .eira-why-choose {
        padding-top: {{ section.settings.offset_top_desktop }}px !important;
        padding-bottom: {{ section.settings.offset_bottom_desktop }}px !important;
      }
      .eira-cards-grid {
        grid-template-columns: repeat(2, 1fr); 
        max-width: 900px;
        margin: 0 auto;
      }
      .eira-offers-grid > :nth-child(n+4):nth-child(-n+6) {
        transform: translateX(50%);
      }
    }
