@media (min-width: 768px), print {
   .navigation .level0 > .level-top:hover, .navigation .level0 > .level-top.ui-state-focus
 
{
  color: var(--aaa-color) !important;
	
}
.nav-sections {
	        background: #ffffff !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);
        }
 /*end  Color Coding Labels */
        
/* 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;
            }
			
			   .logo {    
                   margin-left: 45px !important;
	              }
			
			   .block-search .control {
                border-top: none;  
			}
        }

/*End  Responsive Design */



  
/* add sticky bar */	
	
	.page-header {
    position: relative; // important for fixed children
	  
}


.logo img {    
    max-width: none !important;
	}

@media (min-width: 992px) {
    .logo
	   {
		   margin: 0 !important;
      }
}
	
.header-wrapper {
    background: #fff;
    z-index: 999;
    transition: all 0.3s ease;
    width: 100%;

    &.fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        animation: fadeInDown 0.4s;
    }

    .header.content {
        /* max-width: 100px !important; //adjust to your content width  */
        margin: 0 auto; 
        padding: 0 15px;

        .header-primary-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;

            .header-left { flex: 0 0 auto; }
            .header-center {
                flex: 1;
                text-align: center;

                .sections { justify-content: center; margin: 0; }
            }
            .header-right {
                flex: 0 0 auto;
                display: flex;
                align-items: center;				      
                
                gap: 10px;

                .block-search { margin: 0; }
                .minicart-wrapper { margin: 0; }
            }
        }
    }
}

/* Body padding to prevent content jump when header becomes fixed */
body.has-sticky-header {
    padding-top: 100px; // adjust to your header height (e.g. 80-120px)
}

/* Animation */
@keyframes fadeInDown {
    from { top: -100px; opacity: 0; }
    to { top: 0; opacity: 1; }
}


/* Mobile: keep Luma default (hamburger) */
@media (max-width: 1023px) {
    .header-primary-row {
        flex-wrap: wrap;
        .header-center { order: 0; width: 100%; margin: 10px 0; text-align: left; }
    }
}
	
/* se the gap between Top manu and breadrums*/
.breadcrumbs
	{
	padding-top: 20px;	
	}
	
	
/*Move the toggle menu icon position*/
.nav-toggle {	    
	     margin-left: -10px;
}

/* Set the Search Result background color white*/
.search.results .products.list.items.product-items{
    background: white !important;
}




/* coffee_store/web/css/custom.css */




/* Login icon styles */
.header-login-icon {
    /* display: none;  Hide on mobile by default */
}

@media (min-width: 768px) {
    .header-login-icon {
        display: flex;
        align-items: center;
    }

    .login-icon-link {
        color: var(--dark); /* Match your theme's text color */
        text-decoration: none;
        font-size: 22px; /* Icon size */
        padding: 0 10px; /* Spacing around the icon */
        transition: color 0.3s ease;
    }

    .login-icon-link:hover {
        color: var(--aaa-color); /* Hover color (matches your theme's accent) */
    }

    /* Hide tooltip by default, show on hover (optional) */
    .login-tooltip {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: var(--dark);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        margin-top: 5px;
        z-index: 100;
    }

    .login-icon-link {
        position: relative; /* Required for tooltip positioning */
    }

    .login-icon-link:hover .login-tooltip {
        opacity: 1;
        visibility: visible;
    }

    /* Adjust spacing between elements in the header */
    .header-right {
        gap: 10px; /* Reduce gap if needed */
    }

    .block-search {
        margin-right: 5px;
    }

    .minicart-wrapper {
        margin-left: 5px;
    }
}



/* Full-width base styles */
.fullwidth-page {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Top Navigation Bar - Full Width */
.header-wrapper,
.custom.header.wrapper,
.nav-sections {
    /*width: 100% !important;*/
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove default container padding from header elements */
.header-right.actions,
.navigation.sections,
.logo {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Optional: Add inner padding for content (adjust as needed) */
.header-inner {
    padding: 0 20px; /* Adds space inside the header without restricting width */
    max-width: 1200px; /* Optional: Limits content width inside the full-width bar */
    margin: 0 auto; /* Centers content inside the full-width bar */
}

/* Footer - Full Width */
.fullwidth-footer,
.page-footer {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Optional: Add inner padding to footer content */
.footer.content {
    padding: 40px 20px !important; /* Adds space inside the footer */
    max-width: 1200px; /* Optional: Limits content width inside the full-width footer */
    margin: 0 auto; /* Centers content inside the full-width footer */
}

/* Fix sticky header full-width issue */
.header-wrapper.fixed {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
}

/* Set the padding for the navigation menu*/

@media (min-width: 1000px) {
 .page-header {
        padding: 30px;
	 }
}
@media (max-width: 1000px), print {
 .page-header {
        padding: 10px;
  }
}}
/* -end-*/