
/* Add some basic styles for the product display */

.shopify-products {
            display: grid;
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .shopify-products.grid-layout {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
        
        .shopify-product {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .shopify-product:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .product-image {
            aspect-ratio: 1/1;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .shopify-product:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-details {
            padding: 1.5rem;
        }
        
        .product-title {
            margin: 0 0 0.5rem;
            font-size: 1.1rem;
        }
        
        .product-price {
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
        }
        
        .add-to-cart-btn {
            display: inline-block;
            background: #000;
            color: #fff;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.3s ease;
        }
        
        .add-to-cart-btn:hover {
            background: #333;
        }
        
        /* List layout */
        .list-layout .shopify-product {
            display: flex;
            align-items: center;
        }
        
        .list-layout .product-image {
            flex: 0 0 150px;
            height: 150px;
        }
        
        @media (max-width: 767px) {
            .list-layout .shopify-product {
                flex-direction: column;
            }
            
            .list-layout .product-image {
                width: 100%;
                flex: none;
            }
        }


/* Header.php styles (Inline ) */

	main {
	  min-height: 64vh;
	}
        .btn-primary-bl a{
            color: #fff;
            text-decoration: none;
        } 
        .nav-fix {
            position: fixed; 
            top: 0; 
            z-index: 100;
            width: 100%;
            padding: 0;
        }
        .nav-container{
            display: flex;
            width: 100%;
            margin-right: calc(-.5 * var(--bs-gutter-x));
            margin-left: calc(-.5 * var(--bs-gutter-x));
        }
        .ea-expand-icon{
            float: right !important;
        }

        .ea-body{
            background-color: #CFE0F9 !important;
            border: none !important;
            color: #2B298D !important;
            margin-bottom: 24px !important;
            border-radius: 20px !important;
        }
        .ea-card {
            background-color: #CFE0F9 !important;
            border: none !important;
            color: #2B298D !important;
            margin-bottom: 24px !important;
            border-radius: 20px !important;
        }

/* Header.php Styles(Inline) End */
        
 /* track Order Popup  Styles  Start*/ 
 	/* Track Order Popup */
    #trackOrderModal .modal-content {
        border-radius: 12px;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    #trackOrderModal .modal-header {
        border-bottom: 1px solid #eee;
        padding: 1.5rem 2rem;
        background-color: #e9cbf0f5;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    #trackOrderModal .modal-title {
        font-weight: 600;
        color: #2B298D;
        margin: 0;
    }

    #trackOrderModal .modal-body {
        padding: 2rem;
    }

    #trackOrderModal .form-label {
        font-weight: 500;
        color: #333;
        margin-bottom: 0.5rem;
    }

    #trackOrderModal .form-control {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        transition: border-color 0.3s;
    }

    #trackOrderModal .form-control:focus {
        border-color: #2B298D;
        box-shadow: 0 0 0 0.25rem rgba(43, 41, 141, 0.1);
    }

    #trackOrderModal .btn-primary {
        background-color: #2B298D;
        border: none;
        padding: 0.75rem 1.5rem;
        font-weight: 500;
        border-radius: 8px;
        transition: background-color 0.3s;
    }

    #trackOrderModal .btn-primary:hover {
        background-color: #1f1b6b;
    }

    /* Tracking Steps */
    .tracking-status {
        display: flex;
        justify-content: space-between;
        position: relative;
        margin: 2rem 0 1.5rem;
    }

    .tracking-status::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 0;
        right: 0;
        height: 4px;
        background-color: #e9ecef;
        z-index: 1;
    }

    .tracking-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
        flex: 1;
    }

    .tracking-step:not(:last-child) {
        margin-right: 10px;
    }

    .tracking-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: #e9ecef;
        color: #6c757d;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        transition: all 0.3s;
    }

    .tracking-step.completed .tracking-icon {
        background-color: #28a745;
        color: white;
    }

    .tracking-step.active .tracking-icon {
        background-color: #2B298D;
        color: white;
    }

    .tracking-text {
        font-size: 0.75rem;
        color: #6c757d;
        text-align: center;
        font-weight: 500;
    }

    .tracking-step.completed .tracking-text,
    .tracking-step.active .tracking-text {
        color: #2B298D;
        font-weight: 600;
    }

    /* Order Summary */
    .order-summary {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .order-summary h6 {
        color: #2B298D;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .order-item {
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .order-item:last-child {
        border-bottom: none;
    }

    .shipping-info {
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 1px solid #eee;
    }

    .shipping-info h6 {
        margin-bottom: 0.75rem;
    }

    .shipping-info p {
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
        color: #495057;
    }
    #orderNumber, #orderEmail {
    	border-bottom-left-radius: 0!important;
  border-top-left-radius: 00!important;
    }

    /* Responsive Adjustments */
    @media (max-width: 576px) {
        .tracking-text {
            font-size: 0.65rem;
        }
        
        .tracking-icon {
            width: 28px;
            height: 28px;
            font-size: 0.75rem;
        }
    }
 
 /* Track Order Popup Styles End       
        
/* All Post Page styles (Banner) */

        .sort-options .btn-outline-primary {
            border-radius: 4px !important;
            margin: 0 2px;
        }
        .sort-options .btn-outline-primary.active {
            background-color: #6f42c1;
            color: #fff !important;
            border-color: #6f42c1;
        }
        .hover-shadow:hover {
            box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
        }
        .transition-all {
            transition: all 0.3s ease;
        }
        .post-thumbnail img:hover {
            transform: scale(1.05);
        }
        .card-title a {
            color: #3d45a5;
            text-decoration: none;
        }
        .card-title a:hover {
            color: #6f42c1;
        }
/* All Post Page Styles (Banner ) End */
        
/* Faq Page Styles */

	.vertical-nav {
        position: relative;
    }
    
    .nav-link {
        position: relative;
        padding: 0.5rem 1rem;
        transition: color 0.3s ease;
        z-index: 1;
    }
    
    .nav-link.active {
        color: #4F80FF !important;
        background: transparent !important;
    }
    
    /* Sliding indicator */
    .vertical-nav-indicator {
        position: absolute;
        right: -20px;; /* Moved 5px to the right */
        width: 3px;
        background-color: #4F80FF;
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 0;
        pointer-events: none;
    }

    .accordion-button{
        color: var(--bs-accordion-active-color);
        background-color:none!important;
        box-shadow: none!important;
        background: transparent;
    }
    .accordion-button:not(.collapsed){
        color: var(--bs-accordion-active-color);
        background-color:none!important;
        box-shadow: none!important;
        background: transparent;
    }
    .accordion-item {
        background: transparent;
        border: none;
        overflow: hidden;
    }
    
    .accordion-content {
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        max-height: 0;
    }
    
    .accordion-content.show {
        max-height: 1000px; /* Adjust based on your content */
        transition: max-height 0.3s ease-in;
    }   
    
    /* Easy Accordion Free Plugin Fixes */
    .sp-ea-single {
        overflow: hidden;
    }
    
    .sp-ea-single .ea-body {
        transition: all 0.3s ease-in-out;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    }
    
    .sp-ea-single.ea-expand .ea-body {
        max-height: 1000px; /* Adjust based on your content */
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }
    
    /* Prevent content shift during animation */
    .sp-ea-single .ea-header {
        position: relative;
        z-index: 2;
    }
    
    .sp-ea-single .ea-body-inner {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .faq-menu-sec{
        border-right: 2px solid #DBBFFF;
    }
    
    faq-item {
	    position: relative;
	    transition: all 0.3s ease;
	    border-radius: 8px;
	}

	.faq-item:hover {
	    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	}

	.faq-question {
	    transition: all 0.3s ease;
	    background: #f8f9fa;
	    border: none;
	    text-align: left;
	    padding: 15px 20px;
	    font-weight: 600;
	    transition: all 0.3s ease;
	}

	.faq-question:hover {
	    background: #e9ecef;
	}

	.faq-answer {
	    background: #fff;
	    padding: 0 20px;
	    max-height: 0;
	    overflow: hidden;
	    transition: max-height 0.3s ease, padding 0.3s ease;
	}

	.faq-item.is-open .faq-answer {
	    padding: 20px;
	    max-height: 1000px;
	}

	.faq-item.is-open .toggle-icon {
	    transform: rotate(45deg);
	}

	.toggle-icon {
	    transition: transform 0.3s ease;
	    display: inline-block;
	}
/* Faq Page Styles End*/
        
/* Product Page Styles */
        
.testing-section-slider {
        width: 100%;
        margin: 0 auto;
      }
      .testing-section-slider .swiper-slide {
        min-height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      
      
      
      
        .lft-wrap {
          display: flex;
          flex-direction: column;
          gap: 20px;
          min-width: 350px;
          font-size: 1.25rem;
          }
          .wbox .imgwrap {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            }
      .wbox  {
        background: #ffffff5c;
        border-radius: 12px;
        padding: 24px;
      }
      .wbox .imgwrap {
            margin-bottom: 15px;
            }
     .kit-item-wrap {
       min-width: 400px;
       font-size: 1.25rem;
     }  
      .kit-items {
    display: flex;
    gap: 18px;
    align-items: center;
}
.kit-items img {
  width: 94px;
}
.kit-items h6 {
  font-weight: 600;
  font-size: 1.25rem;
}
.kit-items p {
  margin: 0;
}
.kit-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}


.tst-box {
  font-size: 1rem;
  flex: 0 0 25%;
  padding-left: 20px;
  border-left: solid 1px #DFC7F0;
}
.tst-box .title {
  font-size: 3rem;
}
.tst-box .sub-title {
  font-size: 1.5rem;
  font-weight: 600;
}
.testimonials.pdt {
  margin-top: 80px;
}
.worldwide-dia-wrap .title {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
  width: 35%;
}
.worldwide-dia-wrap .descr {
  font-size: 1rem;
  color: #fff;
  margin-top: 17px;
  margin: 10px 0 50px 0;
  width: 35%;
}

.order-blk h2 {
  font-size: 1.5rem;
  color: #2B298D;
}
@media (max-width: 575px) { 
  .things, .testing, .worldwide-dia, .order {
    padding: 40px 30px;
  }
  
  .things-wrap {
    flex-direction: column;
    gap: 24px;
  }
  .lft-wrap, .kit-item-wrap {
    min-width: auto;
    font-size: .9rem;
  }
  .kit-item-wrap {
    gap: 24px;
  }
  .kit-items h6 {
   font-size: .9rem;
  }
  .kit-items img {
    width: 100%;
  }
  .wbox.twrap{
    display: flex;
    align-items: center;
  }
  .wbox .imgwrap {
            margin-bottom: 0;
            }
  .testing-wrap {
    display: flex;
    gap: 35px;
    }
  .tst-box {
    flex: 0 0 80%;
  }


  .worldwide-dia-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #FFFFFF;
    background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(195, 184, 255, 1) 60%);
    z-index: 0;
    pointer-events: none;
    height: 100px;
    left: 0;
    border-bottom-right-radius:20px;
    border-bottom-left-radius:20px;
  }
  .worldwide-dia-wrap .title {
    width: 100%;
    font-size: 1.25rem;
  }
  .worldwide-dia-wrap .descr {
    width: 100%;
    font-size: .9rem;
  }
  .order-wrap {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .btn-or {
  display: flex;
  }
  .order-blk {
  margin-bottom: 15px;
}
  .order-blk h2 {
  font-size: 1.25rem; 
  }
}

/* ===================================================================================================== */
.product-section {
      background: #f7f0fd;
      min-height: 100vh;
      padding: 40px 0;
    }
    .vertical-nav {
      /*border-right: 1px solid #d1c4e9;*/
      min-width: 220px;
    }
    .vertical-nav .nav-link {
      color: #2b298d;
      font-weight: 500;
      border-left: 3px solid transparent;
      border-radius: 0;
      margin-bottom: 8px;
      transition: border-color 0.2s, color 0.2s;
    }
    
    .product-content h5 {
      color: #4F80FF;
      font-weight: 600;
      margin-top: 1.5rem;
    }
    .product-content ul {
      list-style: none;
      padding-left: 0;
    }
    .product-content ul li {
      margin-bottom: 1rem;
      position: relative;
      padding-left: 28px;
    }
    .product-content ul li::before {
      content: "✔";
      color: #4F80FF;
      position: absolute;
      left: 0;
      top: 0;
      font-size: 1.1em;
    }
    @media (max-width: 767px) {
      .vertical-nav {
        border-right: none;
        border-bottom: 1px solid #d1c4e9;
        padding-right: 0;
        margin-bottom: 24px;
      }
    }
    
    .testimonial-image {
      float: left;
      flex: 1;
      min-width: 50%;
      background-size: cover;
      background-position: center;
      transition: background-image 0.5s ease-in-out;
      display: flex;
      justify-content: center;
    }

    .tab-pane {
        display: none;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.4s ease;
    }
    .tab-pane.active {
        display: block;
        opacity: 1;
        transform: translateX(0);
        animation: slideInFromBottom 1s cubic-bezier(.77,0,.18,1) both;
    }
    @keyframes slideInFromBottom {
        from {
            opacity: 0;
            transform: translateY(80px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* Vertical Nav Sliding Border */
    .vertical-nav-wrapper {
        position: relative;
        padding-left: 15px;
    }
    
    .nav-indicator {
        float:right;
        left: 0;
        top: 0;
        height: 42px; /* Match your nav link height */
        width: 3px;
        background-color: #4F80FF;;
        transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
    }
    
    .vertical-nav {
        position: relative;
        z-index: 2;
    }
    
    .vertical-nav .nav-link {
        padding: 10px 15px;
        color: #2B298D;
        position: relative;
        transition: color 0.3s ease;
        border-radius: 0;
        margin-bottom: 2px;
    }
    
	.accordion-item .active{
        border-right: 3px solid #4F80FF;
        margin-right: -34px;

    }

    .accordion-button{
        color: var(--bs-accordion-active-color);
        background-color:none!important;
        box-shadow: none!important;
        background: transparent;
    }
    .accordion-button:not(.collapsed){
        color: var(--bs-accordion-active-color);
        background-color:none!important;
        box-shadow: none!important;
        background: transparent;
    }
    .accordion-item {
        background: transparent;
        border: none;
        overflow: hidden;
    }
    
    .accordion-content {
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        max-height: 0;
    }
    
    .accordion-content.show {
        max-height: 1000px; /* Adjust based on your content */
        transition: max-height 0.3s ease-in;
    }   
    
    /* Easy Accordion Free Plugin Fixes */
    .sp-ea-single {
        overflow: hidden;
    }
    
    .sp-ea-single .ea-body {
        transition: all 0.3s ease-in-out;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    }
    
    .sp-ea-single.ea-expand .ea-body {
        max-height: 1000px; /* Adjust based on your content */
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }
    
    /* Prevent content shift during animation */
    .sp-ea-single .ea-header {
        position: relative;
        z-index: 2;
    }
    
    .sp-ea-single .ea-body-inner {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .faq-menu-sec{
        border-right: 2px solid #DBBFFF;
    }
/* Product Page Styles End */
        
        
        
        
        
        
        
        
        
        
        
