/** Shopify CDN: Minification failed

Line 149:21 Expected identifier but found whitespace
Line 149:23 Unexpected "{"
Line 149:32 Expected ":"
Line 176:14 Expected identifier but found whitespace
Line 176:16 Unexpected "{"
Line 176:25 Expected ":"
Line 176:54 Expected ":"
Line 198:21 Expected identifier but found whitespace
Line 198:23 Unexpected "{"
Line 198:32 Expected ":"
... and 17 more hidden warnings

**/
.about-hero-wrapper{
  background:url('/cdn/shop/files/hero-5-bg.jpg?v=1758287858')no-repeat center center;
  background-size: cover;
  width: 100%
}
.about-hero-section {
    /* background-color: #f8f4f3; */
    padding: 55px 20px;
    text-align: center;
  }

  .about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-hero-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 45px !important;
    color: #2c2c2c;
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
  }

  .about-hero-line3{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #2D5F54;
    margin: 0;
  }

  .about-hero-highlight {
    color: #34ac90;
    font-weight: 500;
    font-size:20px;
    line-height:20px;
  }

  .about-features-section {
    /* background-color: #f8f4f3; */
    padding: 0 20px 80px;
  }

  .about-features-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
  }

  .about-feature-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  }

  .about-feature-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
  }

  .about-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .about-feature-card:hover .about-feature-image {
    transform: scale(1.05);
  }

  .about-feature-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
  }

  .about-feature-placeholder svg {
    width: 80px;
    height: 80px;
  }

  .about-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .about-feature-card:hover .about-feature-overlay {
    background: rgba(0, 0, 0, 0.4);
  }

  .about-feature-title {
    color: white !important;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: system-ui, -apple-system, sans-serif;
  }
  
  .about-2-section {
    background-color: {{ section.settings.background_color }};
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-2-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }

  .about-2-logo-wrapper {
    text-align: center;
    margin-bottom: 100px;
  }

  .about-2-logo {
    margin: 0 0 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-2-logo-image {
    max-width: {{ section.settings.logo_max_width }}px;
    width: 100%;
    height: auto;
    display: block;
  }

  .about-2-logo-descriptions {
    display: flex;
    justify-content: center;
    gap: 200px;
    margin-top: 40px;
  }

  .about-2-description-left,
  .about-2-description-right {
    text-align: center;
    max-width: 300px;
  }

  .about-2-description-line {
    width: 200px;
    height: 1px;
    background-color: {{ section.settings.accent_color }};
    margin: 0 auto 20px auto;
  }

  .about-2-description-text {
    font-family: {{ section.settings.body_font }}, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: {{ section.settings.text_color }};
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
  }

  .about-2-mission-wrapper {
    background-color: {{ section.settings.mission_bg_color }};
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .about-2-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
  }

  .about-2-mission-text {
    font-family: {{ section.settings.body_font }}, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: {{ section.settings.mission_text_color }};
    line-height: 1.6;
    margin: 0;
  }

  .about-2-mission-text a{
    text-decoration:none;
    color:#2D5F54;
    font-weight:700;
  }

  
  .about-last-community {
    background-color: #ddfaf3;
    padding: 80px 20px;
  }

  .about-last-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about-last-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .about-last-image-item {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
  }

  .about-last-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .about-last-content {
    padding-left: 40px;
  }

  .about-last-small-title {
    color: #8B4513;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px 0;
  }

  .about-last-main-title {
    color: #8B4513;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px 0;
  }

  .about-last-description {
    color: #8B4513;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 40px 0;
  }

  .about-last-newsletter {
    margin-bottom: 32px;
  }

  .about-last-form-group {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
  }

  .about-last-email-input {
    flex: 1;
    padding: 16px 20px;
    border: unset;
    border-radius: 5px 0 0 5px;
    border-right: none;
    font-size: 16px;
    outline: none;
    background: white;
    color: #2D5F54;
  }

  .about-last-email-input::placeholder {
    color: #2D5F54;
    opacity: 0.7;
    font-weight: 500;
  }

  .about-last-email-input:focus {
    border-color: #2D5F54;
  }

  .about-last-submit-btn {
    padding: 16px 32px;
    background: #2D5F54;
    color: white;
    border-radius: 0 5px 5px 0;
    border:unset;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .about-last-submit-btn:hover {
    background: #34ac90;
    transform: translateY(-1px);
  }

  .about-last-disclaimer {
    color: #34ac90;
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
    font-style: italic;
  }

  .about-last-social {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .about-last-social-handle {
    color: #2D5F54;
    font-size: 18px;
    font-weight: 600;
  }

  .about-last-social-links {
    display: flex;
    gap: 12px;
  }

  .about-last-social-links a {
    color: #2D5F54;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }

  .about-last-social-links a:hover {
    color: #34ac90;
    transform: translateY(-2px);
  }

  /* Success/Error Messages */
  .about-last-form .form__message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
  }

  .about-last-form .form__message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }

  .about-last-form .form__message--error {
    background: #ddfaf3;
    color: #2D5F54;
    border: 1px solid #f5c6cb;
  }
    @media (max-width: 1024px) {
      .about-2-logo-image {
        max-width: calc({{ section.settings.logo_max_width }}px * 0.8);
      }
      
      .about-2-logo-descriptions {
        gap: 100px;
      }
      
      .about-2-description-line {
        width: 150px;
      }
      
      .about-2-mission-content {
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .about-2-section {
        padding: 60px 15px;
      }
      
      .about-2-logo-wrapper {
        margin-bottom: 60px;
      }
      
      .about-2-logo-image {
        max-width: calc({{ section.settings.logo_max_width }}px * 0.6);
      }
      
      .about-2-logo-descriptions {
        flex-direction: column;
        gap: 40px;
        align-items: center;
      }
      
      .about-2-description-line {
        width: 120px;
      }
      
      .about-2-mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .about-2-mission-wrapper {
        padding: 75px 20px;
      }
      .about-last-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }
      
      .about-last-content {
        padding-left: 0;
      }
      
      .about-last-main-title {
        font-size: 36px;
      }
      
      .about-last-form-group {
        flex-direction: column;
      }
      
      .about-last-email-input {
        border-radius: 5px;
        border-right: unset;
        margin-bottom: 12px;
      }
      
      .about-last-submit-btn {
        border-radius: 5px;
      }
      
      .about-last-social {
        justify-content: center;
        flex-wrap: wrap;
      }
    }

  @media (max-width: 480px) {
    .about-hero-section {
      padding: 55px 20px;
      margin: 0 auto;
      width:100%;
    }
    .about-hero-title{font-size:32px;}
    .about-hero-line3{font-size:20px;}

    .about-features-section {
      padding: 0 20px 55px;
      margin:0 auto;
      width:100%;
    }

    .about-feature-image-wrapper {
      height: 200px;
    }

    .about-feature-title {
      font-size: 18px;
    }
    
    .about-2-section {
      padding: 55px 20px;
      margin:0 auto;
      width:100%
    }
    
    .about-2-logo-image {
      max-width: calc({{ section.settings.logo_max_width }}px * 0.5);
    }
    
    .about-2-description-text {
      font-size: 12px;
    }
    
    .about-2-mission-text {
      font-size: 14px;
    }
    .about-last-community {
      padding: 55px 20px;
      width:100%;
      margin:0 auto;
    }
    
    .about-last-images-grid {
      gap: 15px;
    }
    
    .about-last-main-title {
      font-size: 24px;
    }
  }