@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;    
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(232, 248, 237, 1) 0%, rgba(232, 248, 237, 1) 100%);
}

.meal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.meal-card {
    transition: all 0.3s ease;
}

.ingredient-tag {
    background-color: #e8f8ed;
}

.green-accent {
    color: var(--accent-color);
}

.green-bg-accent {
    background-color: var(--accent-color);
}

.text-accent{
    color: var(--accent-color);
}

.brown-accent {
    color: #8b5a2b;
}

.purple-accent {
    color: #6b46c1;
}

.mobile-menu {
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.filter-dropdown {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.filter-dropdown.active {
    max-height: 500px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.card{
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.loadable{
    position: relative;
}

.loading-overlay{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-overlay::before{
    width: 16px;
    height: 16px;
    border: 2px solid var(--accent-color);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    content: "";
}


@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

.cookie-consent {
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-toggle {
    transition: all 0.3s ease;
}

.cookie-toggle.active {
    background-color: #4a9f66;
}

.cookie-toggle.active .toggle-dot {
    transform: translateX(100%);
}

.classic-loader {
    width: 36px;
    height: 36px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.classic-loader.sm{
    width: 24px;
    height: 24px;
    border-width: 3px;
}

.classic-loader.xs{
    width: 16px;
    height: 16px;
    border-width: 2px;
}

.classic-loader.dark{
    border-color: #888;
    border-bottom-color: transparent;
}

.classic-loader.green{
    border-color: green;
    border-bottom-color: transparent;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

.notie-textbox{
    z-index: 99999;
}

.notie-textbox-inner{
    font-size: 0.7em !important;
}

.error {
	border-color: darkkhaki;
}

.error-message {
	color: darkkhaki;
	font-style: italic;
	margin-bottom: 1em;
}

.main-nav a.nav-item.active,.main-nav a.nav-item:hover{
    color: #abf545;
}

.light-green-bg{
    background-color: #84cc1f;
}

.light-green-color{
    color: #84cc1f;
}

.desk-nav{
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-around;
}

.nav-holder{
    display: flex;
    justify-content: space-between;
}

.unplain-brand{
    display: flex;
    align-items: center;
    padding-right: 50px;
    /*border: 1px solid white;*/
}


.unplain-mobile-brand{
    display: flex;
    align-items: center;
}

.desk-nav a.nav-item{
    /*border: 1px solid white;*/
}

.desk-nav, .unplain-brand{
    /*border: 1px solid white;*/
}



@media( max-width: 1280px ){
    .desk-nav{
        font-size: 0.9em;
    }
    .unplain-brand span{
        font-size: 1.1em;
    }
}

@media (max-width: 1024px){
    .desk-nav{
        font-size: 0.8em;
    }
    
    .desk-nav .explore-btn{
        display: none;
    }
    
    .unplain-brand{
        padding-right: 20px;
    }
    
    .unplain-brand span{
        font-size: 1em;
    }
}

.mobile-menu-holder{
    display: none;
}

@media (max-width: 767px){
    .mobile-menu-holder{
        display: flex;
        gap: 12px;
        align-items: center;
    }
    
    .desk-nav{
        display: none;
    }
    
    .unplain-brand span{
        font-size: 1.3em;
    }
    
    #mobile-menu-button i{
        font-size: 1.8em;
    }
}

@media (max-width: 500px){
    .unplain-brand span{
        font-size: 1em;
    }
    
    .mobile-menu-holder .user-cart{
        text-align: center;
    }

    .mobile-menu-holder .user-cart span.total-qty{
        left: -5px !important;
    }
    
    .mobile-menu-holder .user-cart{
        font-size: 0.9em;
    }

    .mobile-menu-holder .user-cart .total-amount{
        display: block;
    }
}

@media (max-width: 419px){
    .unplain-brand span{
        font-size: 0.8em;
    }
    
    .mobile-menu-holder .user-cart{
        font-size: 0.8em;
    }
    
    .mobile-menu-holder .explore-btn{
        font-size: 0.8em;
        padding: 3px 8px;
    }
}

@media (max-width: 350px){
    .unplain-brand{
        padding-right: 5px;
    }
    .unplain-brand img{
        height: 21px !important;
        width: 24px !important;
    }
}

@media (max-width: 320px){
    .mobile-menu-holder .explore-btn{
        display: none;
    }
}