@media (min-width: 768px), print {
   .navigation .level0 > .level-top:hover, .navigation .level0 > .level-top.ui-state-focus
 
{
  color: var(--aaa-color) !important;
	
}

.navigation {
            background: #ffffff !important;
	
}

 @media (min-width: 1000px), print {
 		ul#ui-id-1 {
			 text-align-last:center;
	 		margin-top: -65px;
					}
	}

 .minicart-wrapper {
            z-index: 10;
        }
 



}
 .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
}

 /* Header & Navigation */
  .nav-sections{
    margin-bottom: 0px !important;
}

 /* Hero section */

  .hero {
            padding: 100px 0 100px;
 background: linear-gradient(135deg, rgba(111, 186, 44, 0.1) 0%, rgba(0, 175, 236, 0.1) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-text {
            flex: 1;
            padding-right: 40px;
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--dark);
            line-height: 1.2;
            font-weight: 700;
        }
        
        .hero-text h1 span.aa {
            color: var(--aa-color);
        }
        
        .hero-text h1 span.aaa {
            color: var(--aaa-color);
        }
        
        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--gray);
            max-width: 90%;
        }
        
        .cta-buttons {
            display: flex;
               justify-content: center;
            gap: 20px;
        }
        
        .tocart
        {
             padding: 15px 30px !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
            text-decoration: none !important;
            transition: all 0.3s !important;
            display: inline-block !important;
            font-size: 16px !important;

        }

      .action.primary, .action-primary{
					background: linear-gradient(135deg, var(--aa-color) 0%, var(--aaa-color) 100%) !important;
		  			
		  			 padding: 15px 30px important;
            border-radius: 50px important;
            font-weight: 600 important;
            text-decoration: none important;
            transition: all 0.3s important;
            display: inline-block important;
            font-size: 16px important;
		  			
			}




/* Global button design override */
.action.primary,
button,
.btn {
    border-radius: 50px !important;
    padding: 10px 20px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action.primary:hover,
button:hover,
.btn:hover {
    background-color: var(--aaa-color);
    color: #fff;
}





        .btn {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            font-size: 16px;
        }
        
        .btn-aa {
            background-color: var(--aa-color);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 175, 236, 0.3);
        }
        
        .btn-aa:hover {
            background-color: #0099CC;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 175, 236, 0.4);
        }
        
        .btn-aaa {
            background-color: var(--aaa-color);
            color: white;
            box-shadow: 0 4px 15px rgba(111, 186, 44, 0.3);
        }
        
        .btn-aaa:hover {
            background-color: #5EA024;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(111, 186, 44, 0.4);
        }
        
        .hero-image {
            flex: 1;
            position: relative;
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            transform: perspective(800px) rotateY(-5deg) rotateX(5deg);
            transition: transform 0.5s;
        }
        
        .hero-image img:hover {
            transform: perspective(800px) rotateY(0) rotateX(0);
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
            
.feature-card {
            background-color: var(--light);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid var(--aa-color);
            }
        
.feature-card-2 {
            background-color: var(--light);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid var(--aaa-color);
            }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

       .feature-card-2:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
             background: linear-gradient(135deg, var(--aa-color) 0%, var(--aaa-color) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-card p {
            color: var(--gray);
        }

       .feature-card:nth-child(2) {
            border-top: 4px solid var(--aaa-color);
        }
        
        .feature-card:nth-child(3) {
            border-top: 4px solid var(--aa-color);
        }

/* End  feature Section */

/* Products Section */
        .products {            
            background: linear-gradient(to bottom, rgba(111, 186, 44, 0.05) 0%, rgba(0, 175, 236, 0.05) 100%);
        }
.products-grid .product-item-info:hover, .products-grid .product-item-info.active {
        background: none !important;}

.product-item-name>a, .product.name a>a {
    font-weight: bold;}

      .products-list .product-item-details {
          padding: 0 0 0 18px;
          }

.aa-price .price-container .price {
    font-size: 3.4rem !important;
    color: var(--aa-color);
}


.aaa-price .price-container .price {
    font-size: 3.4rem !important;
    color: var(--aaa-color);
}

/* End Products Section */

 /* How It Works */
        .how-it-works {
            padding: 10px 0;
            background-color: white;
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .step {
            text-align: center;
            /*flex: 1;*/
            padding: 10px 20px;
            position: relative;
        }


       .setup {		   
		      background-color: var(--light);
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid linear-gradient(135deg, var(--aa-color) 0%, var(--aaa-color) 100%);
		   
        }


       
        
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--aa-color) 0%, var(--aaa-color) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            border: 3px solid var(--light-gray);
        }
        
        .step h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .step p {
            color: var(--gray);
        }
        
        .step:not(:last-child):after {
            content: "";
            position: absolute;
            top: 30px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, var(--aa-color) 0%, var(--aaa-color) 100%);
            z-index: -1;
        }


/* end How It Works */

    /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(111, 186, 44, 0.05) 0%, rgba(0, 175, 236, 0.05) 100%);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border-left: 4px solid var(--aa-color);
        }
        
        .testimonial-card:nth-child(2) {
            border-left: 4px solid var(--aaa-color);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--aa-color), var(--aaa-color));
            margin-right: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 14px;
        }
        /* End Testimonials */


        /* Footer */
 /*   @media (min-width: 768px), print { */
        .page-footer{
            background: linear-gradient(135deg, var(--aa-color) 0%, var(--aaa-color) 100%) !important;
            color: white;
            
        }
        

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: rgba(255,255,255,0.3);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
            color: rgba(255, 255, 255, 0.8);
        }

/* END footer */


/*support */

.hero-support {
            padding: 30px 0 30px;
 background: linear-gradient(135deg, rgba(111, 186, 44, 0.1) 0%, rgba(0, 175, 236, 0.1) 100%);
            position: relative;
            overflow: hidden;
        }


.support-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .support-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .support-card:hover {
            transform: translateY(-10px);
        }
        
        .support-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--aa-color) 0%, var(--aaa-color) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
        }
        
        .support-card h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .support-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .support-link {
            color: var(--aa-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 10px;
        }
        
        .support-link:hover {
            color: var(--aaa-color);
        }

        .support-toggle-border
{
	    background: white;
    border-radius: 10px;
	  padding-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;

	
}
</* end support */


        /* Color Coding Labels */
        .color-coding {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 40px 0;
        }
        
        .color-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .color-swatch {
            width: 20px;
            height: 20px;
            border-radius: 50%;
        }
        
        .swatch-aa {
            background-color: var(--aa-color);
        }
        
        .swatch-aaa {
            background-color: var(--aaa-color);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .cta-buttons {
                justify-content: center;
            }
            
            .steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .step:not(:last-child):after {
                display: none;
            }
            
            .color-coding {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .social-links {
                justify-content: center;
            }
        }

