:root {
    /* =========================
       Brand Colors
       ========================= */
    --brand-green: #006E45;
    --brand-lime: #8BC53D;
    --brand-orange: #F27A24;


    /* =========================
       Secondary Colors
       ========================= */
    --secondary-off-white: #FBFBF6;
    --secondary-orange-dark: #C85E12;
    --secondary-cream: #F4F3EA;
    --secondary-green-dark: #024A2F;
    --secondary-red: #E8241B;

    --secondary-white-green: #F8FAF8;
    --secondary-green: #348E6D;
    --secondary-green-deep: #023321;
    --secondary-lime-10: rgba(139, 197, 61, 0.1);
    --secondary-yellow-white: #FFFFE6;
    --secondary-yellow-light: #FCEDD3;


    /* =========================
       Neutral Colors
       ========================= */
    --neutral-white: #FFFFFF;
    --neutral-lightest: #F2F1F1;
    --neutral-light: #F5F5F5;
    --neutral-gray: #737373;
    --neutral-gray-medium: #848282;

    --neutral-dark-gray: #444141;
    --neutral-light-gray: #E5E5E5;
    --neutral-warm-gray: #F3F2F0;
    --neutral-dark: #3C3C3C;
    --neutral-gray-light: #CBCBCB;

    --neutral-gray-200: #C3C2C2;
    --neutral-gray-600: #6B6868;
    --neutral-gray-400: #FAFAFA;
}

/* ----------default-------------- */
@keyframes stickySlideDown {
    0% {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.section_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.4em;
}

.sticky{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.section_titles{
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.section_titles > h3{
    font-size: 1.6em;
    font-weight: 600;
    color: var(--brand-orange);
}

.section_titles > h2{
    font-size: 3.4em;
    font-weight: 600;
    color: var(--brand-green);
}

.list_slide{
    position: relative;
}

.slide_next{
    font-size: 1rem;
    position: absolute;
    top: 50%;
    right: -2.1em;
    transform: translateY(-50%);
    width: 4.2em;
    height: 4.2em;
    padding: 0.5em;
    border-radius: 50%;
    background-color: var(--neutral-white);
    color: var(--brand-green);
    z-index: 1;
    box-shadow: 0px 2.8px 8px 0px #6763630D;
}
.slide_next > svg{
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    stroke: var(--brand-green);
}

.slide_prev{
    font-size: 1rem;
    position: absolute;
    top: 50%;
    left: -2.1em;
    transform: translateY(-50%);
    width: 4.2em;
    height: 4.2em;
    padding: 0.5em;
    border-radius: 50%;
    background-color: var(--neutral-white);
    color: var(--brand-green);
    z-index: 1;
    box-shadow: 0px 2.8px 8px 0px #6763630D;
}
.slide_prev > svg{
    width: 100%;
    height: 100%;
    transform: rotate(90deg);
    stroke: var(--brand-green);
}

.see_more{
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 1em;
    gap: 0.8em;
    color: var(--brand-green);
    position: relative;
    transition: 0.3s;
}
.see_more > span{
    font-size: 1.5em;
    font-weight: 500;
}

.see_more > svg{
    width: 1.6em;
    height: 1.6em;
}
.see_more:hover{
    color: var(--brand-orange);
}

/* --------------------- header top --------------------------- */
.header-top{
    font-size: 1rem;
    background-color: var(--secondary-off-white);
    padding: 1em 0;
}

.header-top_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_left{
    font-size: 1.4em;
    font-weight: 600;
    display: flex;
    gap: 1.2em;
}

.header_left > span{
    color: var(--brand-green);
}

.header_left_link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--brand-orange);
    transition: 0.3s;
}

.header_left_link:hover{
    gap: 6px;
    color: var(--brand-green);
}

.header_left_link > svg{
    width: 16px;
    height: 16px;
}

.header_right{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8em;
}

.box-noti{
    font-size: 1rem;
    height: 4em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8em;
    color: var(--brand-green);
}

.noti_item{
    position: relative;
    width: 4em;
    height: 4em; 
    cursor: pointer;
    z-index: 1;
}

.noti_item::after{
    content: "";
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50%;
    background-color: var(--secondary-yellow-light);
    transform: scale(0.8);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

.noti_item:hover::after{
    opacity: 1;
    transform: scale(1);
}

.noti_item > svg{
    width: 2.2em;
    height: 2.2em;
    position: absolute;
    top: 1.124em;
    left: 0.7em;
}

.noti_item_num{
    width: 1.8em;
    height: 1.8em;
    background-color: var(--secondary-red);
    color: var(--neutral-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0.386em; 
    left: 1.7em;
}

.box-login{
    font-size: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.8em;
    padding-left: 1.6em;
    border-left: solid 1px var(--neutral-light-gray);
    height: 4em;
}

.login-avatar{
    width: 4em;
    height: 4em;
    border-radius: 50%;
}

.login-avatar > img{
    width: 100%;
    height: 100%;
}

.login-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.login-info_name{
    font-size: 1.3em;
    color: var(--brand-green);
    font-weight: 600;
}

.login-info_tag{
    background: linear-gradient(90deg, #A4D95E 0%, #78C115 100%);
    color: var(--neutral-white);
    font-size: 1em;
    padding: 2px 8px;
    border-radius: 8px;
}
.login-icon{
    width: 1.6em;
    height: 1.6em;
}
.login-icon >svg{
    width: 100%;
    height: 100%;
    color: var(--brand-green);
}

/* ---------- menus -------- */
.header_menus{
    position: relative;
    font-size: 1rem;
    background-color: var(--neutral-white);
    border-top: solid 1px var(--neutral-lightest);
    border-bottom: solid 1px var(--neutral-lightest);  
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6.6em;
} 

.navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6.6em;
}

.logo{
    display: block;
}

.logo > img{
    width: 100%;
    height: 100%;
}

.nav{
   display: flex;
   align-items: center;
   height: 100%;
}

.menu{
    position: relative;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6em;
    height: 100%;
}

.menu_item{
    padding: 1em;
    color: var(--neutral-gray-medium);
    transition: 0.3s;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu_item.active > a::after{
    content: "";
    position: absolute;
    bottom: -1em;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: var(--brand-lime);
}
.menu_item:hover>a{
    color: var(--brand-orange);
}

.menu_item > a{
    position: relative;
    font-size: 1.4em;
    font-weight: 600;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu_item > a::after{
    font-size: 1rem;
    content: "";
    position: absolute;
    bottom: -1em;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--brand-lime);
    transition: 0.3s;
}

.menu_item:hover > a::after {
    width: 100%;
    left: 0;
    right: auto;
}

.menu_item--dropdown >a{
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
}

.menu_item--dropdown > a > span{
    font-size: 1.4em;
}

.menu_item--dropdown > a > svg{
    width: 1.6em;
    height: 1.6em;
}

.menu_item--dropdown:hover > .menu_sub{
    visibility: visible;
    opacity: 1;
}

.menu_sub{
    font-size: 1rem;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: fit-content;
    z-index: 10;
    transition: clip 0.6s linear, all 0.4s linear;
    visibility: hidden;
    opacity: 0;
}

.menu_sub_wrapper{
    padding: 1.8em 3.4em 2.4em 3.6em;
    display: grid;
    justify-content: center;
    gap: 2.4em;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: var(--neutral-white);
    border-radius: 1.4em;
}
.menu_sub_item{
    font-size: 1rem;
    padding: 0.8em 1.2em;
    width: 18em;
}

.menu_sub_title{
    font-size: 1rem;
    margin-bottom: 1em;
}

.menu_sub_title >a{
    font-size: 1.5em;
    font-weight: 600;
}

.menu_sub_title:hover > a{
    color: var(--brand-orange);
}

.menu_sub_list{
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.menu_sub_list >li{
    font-size: 1.4em;
    font-width: 400;
}

.menu_sub_list >li >a{
    transition: 0.3s;
}

.menu_sub_list >li:hover >a{
    color: var(--brand-orange);
    padding-left: 0.2em;
}


/* ---------box -search--------- */
.box-search{
    position: relative;
    font-size: 1rem;
    background-color: var(--neutral-light);
    max-width: 48.9em;
    width: 30%;
    height: 4em;
    border-radius: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding: 1em 1.6em 1em 1.2em;
}

.search_btn{
    width: 1.35em;
    height: 1.35em;
    border: none;
    background-color: transparent;
}

.search_btn >svg{
    width: 100%;
    height: 100%;
    color: var(--brand-green);
}

.search_input{
    width: 100%;
    height: 100%;
    background-color: transparent;
    color: var(--neutral-gray);
    border:none;
    font-size: 1.5em;
}

.search_input::placeholder{
    color: var(--brand-green);
}

/* ---- slideshow ---- */
.slideshow{
    font-size: 1rem;
    aspect-ratio: 1440 / 520;
    width: 100%;
}

.slide-home{
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-home-img{
    width: 100%;
    height: 100%;
}

.slide-home_content{
    font-size: 1rem;
    position: absolute;
    top:50%;
    left: 50%;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.2em;
}
.slide-home_title{
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4em;
    color: var(--brand-orange);
}

.slide-home_title > span{
    font-size: 4.8em;
    font-weight: 600;
}
.slide-home_title > span:first-child{
    color: var(--brand-green);
}
.slide-home_des{
    font-size: 1.8em;
    font-weight: 300;
}
.slide-home_links{
   padding: 1em 0;
   display: flex;
   align-items: flex-start;
   gap: 1.6em;
}
.slide-home_link{
    position: relative;
    padding: 1.2em 2em;
    border-radius: 1em;
    background-color: var(--brand-green);
    color: var(--neutral-white);
    overflow: hidden;
    z-index: 1;
}
.slide-home_link > span{
    font-size: 1.5em;
}

.slide-home_link::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 50%;
    opacity: 0;
    z-index: -1;
    content: '';
    background-color: var(--brand-orange);
    -webkit-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.slide-home_link:hover::before{
    height: 500%;
    opacity: 1;
}

/* ----- quick action ----- */
.quick-action{
    font-size: 1rem;
    background-color: var(--neutral-white);
    margin-top: -5em;
    margin-bottom: 3.6em;
}

.quick-action-wrapper{   
    width: 100%;
    padding: 2.4em;
    border-radius: 1.6em;
    background-color: var(--neutral-white);
    box-shadow: 0.6em 0.6em 5.4em 0 rgba(0, 0, 0, 0.05);
}

.quick-action-headline{
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    gap: 0.2em;
}

.qaheadline-title{
    font-size: 3.4em;
    color: var(--brand-green);
    font-weight: 600;
}

.qaheadline-title_sub{
    font-size: 1.8em;
    color: var(--brand-orange);
    font-weight: 600;    
    text-transform: uppercase;
}

.qaheadline-viewall{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 1em;
    color: var(--brand-green);
    gap: 0.8em;
}
.qaheadline-viewall > span{
    font-size: 1.5em;
}

.qaheadline-viewall > svg{
    width: 1.6em;
    height: 1.6em;
}

.quick-action-list{
    font-size: 1rem;
    margin-top: 1.6em;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2.4em;
}

.qacard{
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1.2em;
    padding: 1.6em;
    border-radius: 1.2em;
    background-color: var(--neutral-gray-400);
}

.qacard_thumb{
    width: 5.6em;
    height: 5.6em;
    border-radius: 1.6em;
    background-color: var(--neutral-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2em;
}
.qacard_thumb_img{
    width: 100%;
}

.qacard_info{
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.qacard_info_label{
    font-size: 1.4em;
    font-weight: 500;
    color: var(--neutral-dark);
}

.qacard_info_num{
    font-size: 2.4em;
    font-weight: 600;
    color: var(--secondary-green-deep);
}            

/* ------ flash sale ------- */
.flash-sale{
    font-size: 1rem;
    padding: 2.4em 3.6em;
    background: linear-gradient(360deg, #FCECD1 0%, #FFFFFF 100%);
    border: 1.5px solid var(--secondary-yellow-light);
    border-radius: 2em;
    margin-bottom: 3.6em;
}

.flash-sale_header{
    display: flex;    
    align-items: center;
    gap: 2.4em;
    margin-bottom: 2em;
}

.flash-sale_title{
    display: flex;
    align-items: center;
    gap: 0.2em;
}

.flash-sale_title > svg{
    width: 3em;
    height: 3em;
}

.flash-sale_title > span{
    font-size: 3.4em;
    color: var(--brand-orange);
    font-weight: 600;
}

.flash-sale_time{
    font-size: 1rem;
    padding: 0.5em 1.6em;
    border-radius: 1em;
    background: linear-gradient(90deg, #FFA462 0%, #EE7016 100%);
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: var(--neutral-white);    
    min-width: 21em;
    width: 26em;
}

.flash-sale_time > .label{
    font-size: 2em;
    font-weight: 400;
}

.flash-sale_time > .timer{
    font-size: 2em;
    font-weight: 600;
}

.flash-sale_list{
    position: relative;
}

.flash-sale_next{
    font-size: 1rem;
    position: absolute;
    top: 50%;
    right: -2.1em;
    transform: translateY(-50%);
    width: 4.2em;
    height: 4.2em;
    padding: 0.5em;
    border-radius: 50%;
    background-color: var(--neutral-white);
    color: var(--brand-green);
    z-index: 1;
    box-shadow: 0px 2.8px 8px 0px #6763630D;
}
.flash-sale_next > svg{
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    stroke: var(--brand-green);
}

.flash-sale_prev{
    font-size: 1rem;
    position: absolute;
    top: 50%;
    left: -2.1em;
    transform: translateY(-50%);
    width: 4.2em;
    height: 4.2em;
    padding: 0.5em;
    border-radius: 50%;
    background-color: var(--neutral-white);
    color: var(--brand-green);
    z-index: 1;
    box-shadow: 0px 2.8px 8px 0px #6763630D;
}
.flash-sale_prev > svg{
    width: 100%;
    height: 100%;
    transform: rotate(90deg);
    stroke: var(--brand-green);
}
/* ------------- explore_products ------------ */
.explore_products{
    font-size: 1rem;
    padding: 3.6em 0;
}

.explore_products_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.6em;
    width: 100%;
    height: 4.2em;
    margin-bottom: 3.2em;
}
.explore_title{
    width: 22%;
    height: 100%;
    font-size: 3.4em;
    font-weight: 600;
    color: var(--brand-green);
}

.explore_tabs{
    width: 78%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--neutral-light-gray);
}


.explore_tab{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1em;
    color: var(--brand-green);  
}

.explore_tab_item{
    padding-left: 1.6em;
    padding-right: 1.6em;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explore_tab_item.active{
    color: var(--brand-orange);
    border-bottom: 2px solid var(--brand-orange);
}

.explore_tab_item > span{
    font-size: 1.6em;
    font-weight: 600;
}

.explore_products_content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4em;
}
/* -------------best seller -------------- */
.best-seller{
    font-size: 1rem;
    padding: 3.6em 0;
    background-color: var(--secondary-white-green);
}

/* -----------history ----------- */
.history{
    font-size: 1rem;
    padding: 3.6em 0;
    background-color: var(--neutral-light);
}

.faqs{
    font-size: 1rem;
    padding: 3.6em 0;
}

.accordion{
    width: 100%;
}
.accordion_item{
    font-size: 1rem;
    border-bottom: 1px solid var(--neutral-light-gray)
}

.accordion_header{
    font-size: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2em 0;
    color: var(--brand-green);
    background-color: transparent;
    border: none;
}
.accordion_header > span{
    font-size: 1.8em;
    font-weight: 500;
}
.accordion_header > svg{
    width: 2.4em;
    height: 2.4em;
    transition: transform 0.3s ease;
}

.accordion_content{
    font-size: 1.5em;
    display: none;
    color: var(--brand-green);
    padding: 0.5em 0;    
    transition: 0.3s;
}

.accordion_item.active >.accordion_content{
    display: block;
}
.accordion_item.active > .accordion_header > svg{
    transform:rotate(-180deg);
}

.accordion_content ul{
    list-style: disc;
    margin-left: 2em;
}

/* ---------- partner ------------ */
.partner{
    font-size: 1rem;
    padding: 3.6em 0;
}

.title_center{
    font-size: 3.4em;
    color: var(--brand-green);
    text-align: center;
}

.title_center > span{
    color: var(--brand-orange);
}

.partner_list{
    font-size: 1rem;
    margin-top: 3em;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.2em;
}
.partner_card{
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}
.partner_card_thumb{
    width: 4.8em;
    height: 4.8em;
    border-radius: 50%;
    background-color: var(--secondary-white-green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4em;
}

.partner_card_thumb > img{
    max-width: 100%;
}

.partner_card_info{
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.partner_card_info >h3{
    font-size: 1.8em;
    font-weight: 600;
    color: var(--secondary-green-deep);
}

.partner_card_info > p{
    font-size: 1.4em;
    color: var(--neutral-gray-medium);
    width: 90%;
}

.our_partner{
    position: relative;
    font-size: 1rem;
    aspect-ratio: 1440 / 400;
    width: 100%;
    background-image: url("../img/partner-banner.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our_partner_content{
    font-size: 1rem;
    color: var(--neutral-white);
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    padding-left: 1.6em;
}

.our_partner_content >h2{
    font-size: 3.8em;
    font-weight: 600;
}

.our_partner_content > p{
    font-size: 1.8em;
    width: 52%;
}

.our_partner_btns{
    display: flex;
    padding: 2em 0;
    gap: 2em;
}

.retailer_link, .distributor_link{
    padding: 1.2em 2em;
    border-radius: 1em;
    
}
.retailer_link >span, .distributor_link > span{
    font-size: 1.5em;
}

.retailer_link{
    background-color: var(--brand-orange);
}
.distributor_link{
    border: 1px solid var(--neutral-white);
}

/* ----------product ------------ */
.product{
    position: relative;
    font-size: 1rem;
    padding: 1.6em;
    border-radius: 1.6em;
    border: 1px solid var(--neutral-light-gray);
    background-color: var(--neutral-white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6em;
}

.product_tags{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.product_tag{
    font-size: 1rem;
    padding: 0.4em 1em;
    border-radius: 0.6em;
    background-color: var(--secondary-red);
    color: var(--neutral-white);
}

.product_tag >span{
    font-size: 1.3em;
}

.product_liked{
    width: 2.8em;
    height: 2.8em;
}

.product_liked >svg{
    width: 100%;
    height: 100%;
    color: var(--brand-green);
}

.product_thumb{
    aspect-ratio: 1 / 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product_thumb_img{
    max-width: 100%;
    transition: 0.3s;
}

.product_thumb:hover >.product_thumb_img{
    transform: scale(1.1);
}

.product_info{
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5em;
    height: 100%;
}

.product_cates{
    font-size: 1rem;
    display: flex;
    list-style:outside;
    gap: 1.6em;
    font-size: 1.4em;
    color: var(--brand-lime);
    font-weight: 300;
}

.product_cates > li:first-child{
    list-style: none;
}

.product_cates_link:hover >a{
    color: var(--brand-green);
}

.product_name {
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;    
    font-weight: 500;
    color: var(--secondary-green-deep);
}

.product_name >a{
    font-size: 1.6em;
}

.product_prop{
    font-size: 1.2em;
    color: var(--neutral-gray-medium);
    margin-bottom: 0.8em;
}

.product_prices{
    display: flex;
    align-items: baseline;
    gap: 0.8em;
}

.product_price_current{
    font-size: 1.8em;
    font-weight: 600;
    color: var(--brand-orange);
}
.product_price_unit{
    font-size: 1.6em;
    font-weight: 500;
    color: var(--neutral-gray-200);
}

.product_price_old{
    font-size: 1.4em;
    font-weight: 500;
    color: var(--neutral-gray-200);
}

.product_cart{
    font-size: 1rem;
    margin-top: 1em;
    padding: 0.8em 1.6em;
    border-radius: 0.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    color: var(--neutral-white);
    background-color: var(--brand-green);
    border: none;
}
.product_cart > svg{
    width: 2em;
    height: 2em;
}

.product_cart > span{
    font-size: 1.3em;
}

/* ---------------- category --------------- */
.category{
    position: relative;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.2em;
    padding: 1.6em;    
    border-radius: 1.6em;
    background-color: var(--secondary-yellow-white);
    border-bottom: 4px solid var(--brand-lime);
    box-shadow: 0px 2.8px 8px 0px #3E3D3D14;
}

.category_media{
    display: block;
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 1.6em;
    border-radius: 1.6em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.category_media_img{
    width: 100%;
    transition: 0.3s;
    z-index: 1;
}

.category_media:hover > .category_media_img{
    transform: scale(1.02);
}

.category_media_badge{
    width: 5.8em;
    height: 5.8em;
    border-radius: 50%;
    background-color: var(--secondary-yellow-white);
    box-shadow: 0px 2.8px 8px 0px #6763630D;
    display: flex;
    align-items: center;
    justify-content: center;    
    margin-top: -2.8em;
    z-index: 2;
}

.category_media_badge >img{
    max-width: 100%;
}

.category_info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
}

.category_name{
    color: var(--brand-green);
    font-size: 1.8em;
    font-weight: 600;
}

.category_name:hover{
    color: var(--brand-orange);
}

.category_des{
    color: var(--brand-green);
    font-size: 1.4em;
    width: 70%;
    margin: auto;
    text-align: center;
}

.category_link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8em;
    padding: 1em;
    color: var(--brand-orange); 
    transition: 0.3s;
}

.category_link:hover{
    gap: 1.2em
}

.category_link > span{
    font-size: 1.4em;
    font-weight: 500;
}

.category_link >svg{
    width: 1.6em;
    height: 1.6em;
}

/* ------ footer ---- */
.footer{
    font-size: 1rem;
    background-color: var(--secondary-green-dark);
    color: var(--neutral-white);
    padding-top: 4em;
    padding-bottom: 1em;
}

.footer-wrapper{
    font-size: 1rem;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr 1.3fr;
    padding: 1.2em 0;
    gap: 3.6em;
}

.footer-about{
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.footer-logo > img{
    max-width: 100%;
}
.about-text{
    font-size: 1.4em;
}

.social-links{
    display: flex;
    gap: 1.6em;
}

.social-links >a {
    display: block;
    width: 2.4em;
    height: 2.4em;
}
.social-links > a > svg{
    width: 100%;
    height: 100%;
}   

.footer-links, .footer-contact{
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.footer-links > h3, .footer-contact > h3{
    color: var(--brand-lime);
    font-size: 1.6em;
    font-weight: 600;
}

.footer-links > ul, .footer-contact >ul{
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.footer-links > ul >li{
    font-size: 1.4em;
    transition: 0.2s;
}

.footer-links > ul >li:hover,.footer-contact > ul >li:hover{
    color: var(--brand-orange);
    padding-left: 0.2em;
}

.footer-contact> ul >li{
    display: flex;
    align-items: center;
    gap: 0.5em;
    height: 2em;
}
.footer-contact> ul >li >svg{
    width: 2em;
    height: 2em;
}

.footer-contact> ul >li>a,
.footer-contact> ul >li>span{ 
    font-size: 1.4em;
}

.help-card{
    font-size: 1rem;
    background-color:  #8BC53D1A;
    padding: 1.6em 2.4em;
    border-radius: 1.6em;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.6em;
}
.help-card_title{
    font-size: 1.4em;
    font-weight: 500;
}

.help-card_des{
    font-size: 1.2em;
}

.help-card_btn{
    font-size: 1rem;
    display: block;
    padding: 1.2em 2em;
    border-radius: 1em;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 1em;
    color: var(--neutral-white);
    background-color: var(--brand-lime);
}
.help-card_btn >span{
    font-size: 1.5em;
}

.help-card_btn >svg{
    width: 1.8em;
    height: 1.8em;
}

.footer-bottom{
    font-size: 1rem;
    padding: 1.2em 0;
    border-top: 0.5px solid var(--brand-green);
    text-align: center;
}
.footer-bottom > p{
    font-size: 1.4em;
}
