/** Shopify CDN: Minification failed

Line 85:31 Unexpected "{"
Line 199:29 Expected "}" to go with "{"

**/
        /* 4's Icon in product start */
    .tab-containermw {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
      width: 100%;
    }

    /* TAB HEADERS */
    .tab-headers {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 10px;
    }

    .tab-header {
      flex: 1 1 20%;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
    }

    .tab-header:hover,
    .tab-header.active {
     
    }

    .tab-header img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      padding: 5px;
      margin: 5px auto;
    }

    .tab-header h3 {
      font-size: 14px;
      color: #212219;
      font-weight: 700;
      margin: 0;
    }
 .tab-header.active h3 {
      color: #67863B;
    }
    /* TAB CONTENT */
    .tab-content {
      display: none;
      text-align: center;
      font-size: 13px;
      color: #212219;
      line-height: 1.4;
       animation: fadeIn 0.4s ease;
    }

    .tab-content.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .tab-header {
      flex: 1 1 18% !important;
      
    }
    .tab-header img {
      width: 60px;
      height: 60px;
      padding: 3px;
     
    }
    }

    @media (max-width: 480px) {{
      .tab-header {
      flex: 1 1 18% !important;
      
    }
    .tab-header img {
      width: 50px;
      height: 50px;
      padding: 3px;
     
    }
    }

        /* 4's Icon in product end */

 /* social proof icon start */
   /* ===== General Layout ===== */
    .info-tabs-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      width: 100%;
     
    }


    /* ===== Tab Buttons ===== */
    .info-tabs-buttons {
      display: flex;
      justify-content: space-between;
      flex-wrap: nowrap;
      margin-bottom: 15px;
      gap: 10px;
    }

    .info-tab-button {
      flex: 1 1 25%;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
    }

  
    .info-tab-button img {
    width: 70px;
    height: 70px;
    margin-bottom: 8px;
    pointer-events: none;
    margin: 5px auto;
}

    .info-tab-button h3 {
      font-size: 14px;
      color: #212219;
      font-weight: 700;
      margin: 0;
    }

    /* ===== Active / Hover States ===== */
    .info-tab-button:hover img,
    .info-tab-button.active img {
      border-color: #67863B;
      transform: scale(1.05);
    }

    .info-tab-button.active h3 {
      color: #67863B;
    }

    /* ===== Tab Content ===== */
    .info-tab-content {
      display: none;
      text-align: center;
      font-size: 13px;
      color: #212219;
      line-height: 1.5;
      padding-top: 10px;
      animation: fadeIn 0.4s ease;
    }

    .info-tab-content.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
      .info-tab-button {
        flex: 1 1 22% !important;
      }

      .info-tab-button img {
        width: 60px;
        height: 60px;
      }

      .info-tab-button h3 {
        font-size: 12px;
      }
    }

     @media (max-width: 768px) {
      .info-tab-button {
        flex: 1 1 18% !important;
      }
      .info-tab-button img {
        width: 45px;
        height: 45px;
      }
    }
  /* social proof icon end */