html, body{
    height: 100%;
}
/*body {
  animation: bgCycle 30s infinite alternate;
  transition: background-color 5s ease-in-out;
}*/

/* Define your pastel colors here */
/*@keyframes bgCycle {
  0%   { background-color: #fce4ec; }  /* light pink */
  20%  { background-color: #e8f5e9; }  /* light green */
  40%  { background-color: #e3f2fd; }  /* light blue */
  60%  { background-color: #fff3e0; }  /* light orange */
  80%  { background-color: #f3e5f5; }  /* light purple */
  100% { background-color: #f9fbe7; }  /* light yellow */
}*/
section.content {
    background: #f4f4f4;
    -webkit-transition: 0s ease all;
    -o-transition: 0s ease all;
    -moz-transition: 0s ease all;
    transition: 0s ease all;
}
.container{
    max-width: 1400px;
}
.container-fluid{
    margin: auto;
    max-width: 1600px;
    width: 100%;
}
.drag_indicator{
    cursor: move;
}

section{
    padding: 50px 10px;
}
.section_header{
    margin-bottom: 20px;
    text-align: center;
}
.section_header h3{
    display: inline-block;
    position: relative;
}
.section_header h3:before{
    content: '';
    display: block;
    margin: auto;
    height: 2px;
    width: 70%;
    background: var(--color-primary);
    transition: width .5s ease, background-color .5s ease;
}
.breadcrumb:before{
    font-family: 'Material Symbols Outlined';
}
.hook .section_header{
    margin-bottom: 5px;
}
.hook section{
    margin-bottom: 0;
    padding-bottom: 0;
}
.hook p{
    text-align: center;
    font-size: 1.6rem;
    margin: 0 auto;
    max-width: 1000px;
}

@media (max-width: 600px){
    section{
        padding: 20px 0;
    }
    .hook p{
        font-size: 1.4rem;
    }
}

/*----------------------------------------------------
    HEADER
------------------------------------------------------*/
header nav {
    background-color: #eeeef6;
    box-shadow: none;
    width: 100%;
}
header .navbar-fixed,
header nav,
header nav a.sidenav-trigger,
header nav .nav-wrapper ul.right a.account_dropdown_trigger i,
nav .nav-wrapper i, nav a.sidenav-trigger, nav a.sidenav-trigger i{
    height: 90px;
    line-height: 90px;
}
header nav a.sidenav-trigger{
    margin: 0 7px;
}
header nav .nav-wrapper{
    padding: 0 10px;
}
header nav img{
    width: 26px;
}
header nav .brand-logo img{
    width: 240px;    
}
header nav .brand-logo img,
header nav img{
    vertical-align: middle;
}

header nav .cart_wrapper{
    position: relative;
}
header nav .cart_wrapper .cart_items_count{
    background-color: #00a651;
    border-radius: 5px;
    color: white;
    font-size: 0.9rem;
    line-height: 21px;
    height: 22px;
    width: 22px;
    text-align: center;
    position: absolute;
    top: 30%;
    right: 0;
    animation: bounce 1s infinite; /* Adjust duration as needed */
}
header nav ul a{
    color: #333333;
    font-weight: 600;
    padding: 0 8px;
}
header nav .main-links li{
    padding: 0 10px;
    font-weight: 600;
}
header nav .main-links li a{
    font-weight: 600;
}
header nav ul a:hover,
header nav .main-links li a:hover{
    color: #000000;
}
header nav ul a.account_dropdown_trigger i{
    margin-left: 5px;
}
header nav ul a:hover {
    background-color: transparent;
}
#settings-dropdown li{
    line-height: normal;
}

@media (max-width: 600px){
    header .navbar-fixed,
    header nav,
    header nav a.sidenav-trigger,
    header nav .nav-wrapper ul.right a.account_dropdown_trigger i{
        height: 70px;
        line-height: 70px;
    }   
    header nav .brand-logo.center{
        line-height: 60px;
    }
    header nav .brand-logo img{
        width: 180px;    
    }
}

/*----------------------------------------------------
    NAVIGATION MENU
------------------------------------------------------*/
#navigation_menu .menu_header a{
    border-bottom: 1px solid #eee;
}
#navigation_menu .menu_header a,
#navigation_menu .menu_header a i{
    color: var(--color-primary);
}
#navigation_menu li>a {
    color: #000000;
    font-size: 1rem;
    padding: 0 10px;
}
#navigation_menu li>a:hover, #navigation_menu li>a:hover > i {
    color: var(--color-primary);
}
.sidenav li.active{
    background-color: #333333;
    color: #ffffff;
}
#navigation_menu,
#navigation_menu li,
#navigation_menu a {
    display: block;
    font-weight: normal;
}

#navigation_menu li>a.active>i{
    color: #fff;
}
#navigation_menu > li > ul > li > a.active, #navigation_menu li>a.active:hover, #navigation_menu ul ul li a.active, #navigation_menu ul ul li.active a {
    background-color: rgba(0,0,0,0.05);
}
#navigation_menu ul {
    display: none;
}

#navigation_menu ul a {
    padding-left: 50px;
}
#navigation_menu li a i {
    display: inline-block;
    font-size: 20px;
    margin-right: 10px;
    text-align: center;
    vertical-align: middle;
    width: 20px;
}
#navigation_menu li .arrow {
    -webkit-transition: -webkit-transform 0.15s;
    -o-transition: -o-transform 0.15s;
    transition: transform .15s;
    position: absolute;
    right: 10px;
    display: inline-block;
    font-family: 'Material Icons';
    -webkit-font-feature-settings: 'liga';
    text-rendering: auto;
    font-size: 24px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    color: #888;
}
#navigation_menu li .arrow:before {
    content: "chevron_right";
    font-family: "Material Symbols Outlined";
    font-size: 1.25rem;
}
#navigation_menu li a.subdrop .arrow {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*----------------------------------------------------
    HOMEPAGE
------------------------------------------------------*/
.hero_swiper .swiper-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
}
.hero_swiper .swiper-container img{
    width: 100%;
}
.hero_swiper .swiper-slide {      
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.hero_swiper .swiper-button-next, .hero_swiper .swiper-button-prev{
    background: rgba(255,255,255,0.5);
    color: #000;
}
.hero_swiper .swiper-button-prev{
    left: 0;
}
.hero_swiper .swiper-button-next{
    right: 0;
}
.hero_swiper .swiper-button-next:after, .hero_swiper .swiper-button-prev:after{
    font-size: 2rem;
}
.swiper-pagination{
    padding: 10px 0;
}
.swiper-pagination-bullet-active{
    background: var(--color-primary) !important;
}

.homepage .categories .description{
    font-size: 1.1rem;
}
.homepage .about{
    max-width: 1024px;
    margin: auto;
}
.homepage .about h1{
    font-size: 2.2rem;
    text-align: center;
}
.homepage .about p{
    font-size: 1.2rem;
}
.homepage .about p:last-child{
    margin-bottom: 0;
}
.homepage .categories .categories_wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.homepage .categories .categories_wrapper .column{
    flex: 1;
    padding: 15px;
}
.homepage .categories .categories_wrapper .column.push_right{
    order: 1;
}
.homepage .categories .categories_wrapper .column.push_right img{
    float: right;
}

.homepage .blogs{
    background-color: #FFFCFA;
}
.homepage .blogs .blog_container{
    background-color: white;
    border: 1px solid #eee;
    color: black;
    display: flex;
    padding: 15px;
}
.homepage .blogs .blog_image{
    background-color: #f2f2f2;
    height: 50%;
    margin: 0 auto;
    margin-right: 15px;
}
.homepage .blogs .blog_container:hover{
    border: 1px solid var(--color-primary);
} 
.homepage .media{
    text-align: center;
}
.homepage .media .grid-item {
    margin: 15px 0;
}

@media (max-width: 1200px)
{
    .homepage .categories .description {
        font-size: 1.1rem;
        /* display: none; */
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 3;
    }
}
@media (max-width: 699px)
{
    .homepage .categories .categories_wrapper{
        display: block;
    }    
    .homepage .blogs .blog_container{
        display: block;
        margin-bottom: 20px;
    }
    .homepage .blogs .blog_image {
        margin-right: 0px;
        margin-bottom: 10px;
    }
    .homepage section.media{
        padding-top: 50px;
    }
    .homepage .media .grid-container.col-250 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .homepage .media .grid-container.gap-20 {
        grid-gap: 30px;
    }
    .product_widget{
        margin-bottom: 15px;
    }
    .homepage .about h1{
        font-size: 1.8rem;
    }
    .homepage .about p{
        font-size: 1rem;
    }
    .hero_swiper .swiper-container {
        border-radius: 0;
        margin-top: 0;
    }
}

/*----------------------------------------------------
    PRODUCT WIDGET
------------------------------------------------------*/
.product_widget .card{
    box-shadow: none;
    margin: 0;
    transition: all 0.3s;
}
.product_widget .card:hover{
    box-shadow: #999999 0 0 20px;
    padding: 5px;
    transition: all 0.3s;
}
.product_widget .card.card_white{
    border-radius: 10px;
    padding: 5px;
}
.product_widget .card .product_name{
    height: 50px;
    padding: 5px 0;
    overflow: hidden;
}
.product_widget .card .card-image{
    background-color: #f4f4f4;
    border-radius: 5px;
    display: block;
}
.product_widget .card .card-image img{
    border-radius: 5px;
}
.product_widget .card .image_wrapper{
    position: relative;
    overflow: hidden;
}
.product_widget .card .card-action a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating){
    text-transform: capitalize;
}
.product_widget .card .btn_favourite{
    background-color: rgba(255, 255, 255, 0.65);
    color: var(--color-primary);
    border: none;
    border-radius: 50px;
    box-shadow: none;
    height: 35px;
    width: 35px;
    padding: 0;
    position: absolute;
    top: 5px;
    right: 5px;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    -moz-transition: .3s ease all;
    transition: .3s ease all;
}
.product_widget .card .truncate{
    padding: 5px 0;
}
.product_widget .card .btn_favourite i{
    font-size: 1.35rem;
    line-height: 1;
    vertical-align: middle;
}
.product_widget .card .btn_favourite.filled{
    color: #e16f90;
    right: 5px;
}
/*.product_widget .card:hover{
    padding: 3px;
    box-shadow: #aaaaaa 0 0 15px;
    border-radius: 10px;
    transition: all 0.3s;
}
.product_widget .card:hover .btn_favourite{
    right: 5px;
}*/
.product_widget .card .card-action{
    padding: 5px 0 5px 0;
    border: none;
    position: relative;
    transition: all 0.3s;
}
/*.product_widget .card:hover .card-action{
    padding: 5px;
    transition: all 0.3s;
}*/
.product_widget .card .card-action a{
    color: black !important;
    font-size: 0.9rem;
    font-weight: 600;
}
.product_widget .card .product_price{
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 15px;
}
.product_widget .card .product_price .price{
    font-size: 1rem;
    font-weight: 500;
}
.product_widget .card .product_price del{
    color: #888888;
    margin-left: 3px;
}
.product_widget .card .price-disclaimer{
    color: #666666;
    font-size: 0.8rem;
}
.product_widget .card .discount_percent{
    color: #388E3C;
    font-weight: 600;
}
.product_widget .widget_buttons{
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    margin-top: 15px;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}
.product_widget .card-action .product-benefits{
    display: none;
    position: relative;
    z-index: 1;
    width: 100%;
    /*border: #f00 solid 1px;*/
}
.product_widget .card-action .product-benefits ul{
    margin-left: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.product_widget .card-action .product-benefits ul li{
    list-style-type: disc;
    padding-left: 0;
    padding: 0;
    margin: 0;
}
.product_widget .widget_buttons .btn_cart,
body.product_description .btn_cart{
    background-color: #4f44d0;
    color: #ffffff;
    border: 1px solid #4f44d0;
    box-shadow: none;
    z-index: 2;
    width: 100%;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    -moz-transition: .3s ease all;
    transition: .3s ease all;
}
.product_widget .widget_buttons .btn_cart{
    position: relative;
}
body.product_description .price-disclaimer{
    color: #666666;
    font-size: 0.8rem;
}
body.product_description h6{
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0;
}
body.product_description .action_buttons .btn_cart:hover,
body.product_description .action_buttons .btn_favourite:hover{
    border: 1px solid var(--color-primary);
}
body.product_description .action_buttons .btn_cart{
    font-size: 1.1rem;
    position: inherit;
    margin-right: 10px;
}
.product_widget .widget_buttons .btn_cart:before,
body.product_description .action_buttons .btn_cart:before{
    content: "shopping_bag";
    font-family: "Material Symbols Outlined";
    font-size: 1.25rem;
    float: left;
    margin-right: 5px;
}
.product_widget .widget_buttons .btn_cart:after,
body.product_description .btn_cart:after{
    content: "Add to Bag";
}
.product_widget .widget_buttons .btn_cart.added:before,
body.product_description .action_buttons .btn_cart.added:before{
    content: "close";
    font-family: "Material Symbols Outlined";
    font-size: 1.25rem;
    float: left;
    margin-right: 5px;
}
.product_widget .widget_buttons .btn_cart.added:after,
body.product_description .btn_cart.added:after{
    content: "Remove";
}
body.product_description .action_buttons .btn_cart.update:after{
    content: "Update";
}
body.product_description ul.collapsible{
    margin-top: 15px;
    border-radius: 15px;
    padding: 15px 15px 15px 0;
    /*background-color: #fbf7f4;*/
    box-shadow: none;
    border: none;
}
body.product_description ul.collapsible .collapsible-header,
body.product_description ul.collapsible .collapsible-body{
    /*background-color: #fbf7f4;*/
    padding: 0.75rem;
    position: relative;
}
body.product_description ul.collapsible .collapsible-body p,
body.product_description ul.collapsible .collapsible-body li{
    font-size: 0.9rem;
    color: #666666;
}
body.product_description ul.collapsible .collapsible-body{
    padding: 1rem;
    padding-top: 0.25rem;
    border-bottom: none;
}
body.product_description ul.collapsible .collapsible-header::after{
    position: absolute;
    right: 0;
    color: #aaaaaa;
    content: "keyboard_arrow_down";
    font-family: 'Material Symbols Outlined';
    transition: transform 0.3s ease;
}
body.product_description ul.collapsible li.active .collapsible-header::after{
    transform: rotate(180deg); /* Rotate the pseudo-element */
    transition: transform 0.3s ease;
}
body.product_description ul.collapsible .collapsible-header{
    font-size: 1rem;
    font-weight: 500;
}
body.product_description ul.collapsible .collapsible-body{
    color: #000000;
}
body.product_description ul.collapsible .collapsible-body ul{
    padding-left: 25px;
}
body.product_description ul.collapsible .collapsible-body ul li{
    list-style-type: circle;
    padding-left: 10px;
}
body.product_description .variants li{
    display: inline-block;
    max-width: 100px;
    margin-bottom: 2px;
}
body.product_description .variants li a{
    display: block;
    text-align: center;
    padding: 5px 10px;
    border: #dddddd solid 1px;
    color: #4f44d0;
    text-transform: uppercase;
}
body.product_description .variants li a.active{
    background-color: #4f44d0;
    border-color: #4f44d0;
    color: #ffffff;
}
body.product_description .combo-products .combo-label{
    font-weight: 600;
}
body.product_description .combo-products li,
body.product_description .combo-products li a{
    color: #000000;
    font-weight: 400;
}
body.product_description .combo-products li{
    list-style-type: disc;
    margin-left: 15px;
}
body.product_description .combo-products li span{
    color: #666666;
    font-weight: 200;
}
body.product_description .combo-products ul{
    margin: 0;
    margin-bottom: 20px;
}
body.product_description ul.collapsible .collapsible-body.combo>ul{
    margin-top: 15px;
}
body.product_description ul.collapsible .collapsible-body.combo>ul>li{
    list-style-type: none;
    margin-top: 0;
    margin-bottom: 15px;
    padding-left: 0;
}
body.product_description ul.collapsible .collapsible-body.combo>ul>li h4{
    font-size: 1.1rem;
    margin-bottom: 5px;
}
body.product_description .main-image span.image-disclaimer{
    font-size: 0.8rem;
    color: #666666;
}
@media (max-width: 1200px)
{
    .product_widget .card .btn_favourite{
        right: 5px;
        -webkit-transition: .3s ease all;
        -o-transition: .3s ease all;
        -moz-transition: .3s ease all;
        transition: .3s ease all;
    }
    .product_widget .widget_buttons{
        position: relative;
    }
    .product_widget .card-action .product-benefits ul{
        margin-bottom: 20px;
    }
    .product_widget .card .btn_cart{
        left: 0;
        height: 36px;
        line-height: 36px;
    }
}

@media (max-width: 600px)
{
    .grid-container.col-250 {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .grid-container.gap-20 {
        grid-gap: 15px;
    }
    body.product_description .variants li{
        max-width: 100%;        
    }
    .product_widget .widget_buttons{
        top: -5px;
    }
    .product_widget .card:hover .btn_cart{
        left: 0;
    }
    .page-crumb{
        display: none;
    }
    .cart-toast{
        display: none;
    }
}

/*----------------------------------------------------
    FOOTER
------------------------------------------------------*/
footer{
    background-color: var(--btn-primary-bg);
    padding: 20px 0;
}
footer .brand_section{
    border-bottom: 1px solid #999999;
    text-align: center;
}
footer .logo{
    max-width: 180px;
    margin: 20px 0 30px 0;
}
footer .social_icons{
    display: none;
    margin: auto;
    max-width: 250px;
    padding: 15px 0;
}
footer .social_icons li a{
    padding: 0 15px;
}
footer .social_icons li a img{
    opacity: 0.6;
    width: 30px;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    -moz-transition: .3s ease all;
    transition: .3s ease all;
}
footer .social_icons li a:hover img{
    opacity: 1;
}
footer h5{
    color: #eee;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 5px;
    margin-top: 15px;
}
footer p{
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1rem;
    text-align: justify;
}
footer .links_section{
    color: #ccc;
    padding-top: 20px;
}
footer .links_section .links{
    margin: 0;
}
footer .links_section .links a{
    color: #ccc;
    display: block;
    font-size: 0.9rem;
    font-weight: 300;
    padding: 5px 0;
}
footer .links_section .address{
    font-size: 0.9rem;
    font-weight: 300;
}
footer .links_section address{
    font-style: normal;
    line-height: normal;
}

footer .categories ul{
    display: flex;
}
footer .categories ul li:after{
    content: "|";
    padding: 0 5px;
}
footer .categories ul li:last-child:after{
    content: "";
}
footer .categories ul li a{
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 300;
}
footer .products a{
    font-size: 0.9rem;
    color: #eeeeee;
}
footer .products span{
    font-size: 0.8rem;
    color: #dddddd;
}
@media (max-width: 600px){
    footer h5{
        
    }
    footer .products h5,
    footer .categories h5{
        margin-top: 0;
    }
    footer .copyright{
        margin-top: 10px;
    }
}
/*----------------------------------------------------
    LOGIN
------------------------------------------------------*/
.login {
    background-color: #393280;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.login .card{
    padding: 20px;
    min-height: 400px;
    max-width: 400px;
    border-radius: 20px;
    width: 100%;
}
.login .default_header{
    margin-bottom: 20px;
    text-align: center;
}
.login .card .default_header h4{
    color: #000;
    font-weight: 400;
}
.login .card .default_header .profile-image-login{
    margin-bottom: 10px;
    max-width: 150px;
    width: 100%;
}
.login-form .form-group h4 span {
    background: #fff;
    border: 1px solid #dadada;
    border-radius: 50px;
    padding: 5px 10px 8px;
}
.login-form p.title{
    color: #484848;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}
.login-form .form-group input.mobile, .login-form .form-group .input-group-text{
    font-size: 1.2rem;
    height: 3.5rem;
}
.login-form .form-group .edit_number{
    color: #666;
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
}
.login-form .form-group .edit_number a.link{
    font-size: 0.85rem;
    position: absolute;
    right: 0;
    top: 5px;
}
.login .card figure,
.otp_group figure{
    display: inline;
    line-height: normal;
    margin: 0;
}

.otp_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.otp_input {
  width: auto;
  height: 40px;
  font-size: 1.5rem !important;
  margin: 0 5px !important;
  text-align: center;
}

.otp_input:focus {
  outline: none;
  border-color: #007bff;
}


.login-form .resend_otp .resend_link{
    display: inline-block;
    float: right;    
}


.login-form .rounded{
    border-radius: 50px;
}
.login-form .loader{
    text-align: center;
}


.login-form .forgot-password-btn{
    position: absolute;
    right: 10px;
    top: 15px;
}


@media (min-width: 800px){
    #login-page .card{
        min-width: 400px;
    }
}

/*----------------------------------------------------
    CATEGORY PAGE
------------------------------------------------------*/
body.category h1,
body.category h2{
    font-size: 2rem;
}
body.category h3{
    font-size: 1.25rem;
    margin-top: 15px;
}
body.category .categories_wrapper{
    background-color: #f9ebe0;
}
.categories_wrapper .category_widget{
    background-color: white;
    border-radius: var(--card-radius);
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
}
.categories_wrapper .category_widget h5{
    margin: 0;
}
body.category pre{
    font-family: 'Crimson Pro', sans-serif;
    line-height: 1.2rem;
    white-space: pre-wrap;
}

/*----------------------------------------------------
    PRODUCT DESCRIPTION PAGE
------------------------------------------------------*/
nav.page-crumb, nav.page-crumb .nav-wrapper {
    background-color: transparent;
    box-shadow: none;
    height: 18px;
    line-height: 18px;
}
nav.page-crumb .nav-wrapper .row .col {
    padding: 0 !important;
}
nav.page-crumb .breadcrumb{
    color: #686666;
    font-size: 0.9rem;
}
nav.page-crumb .breadcrumb i{
    font-size: 1.2rem;
    height: auto;
    line-height:1;
}
nav.page-crumb .breadcrumb:before {
    color: #686666;
    font-size: 14px;
    line-height: 23px;
    margin: 0;
}
nav.page-crumb .breadcrumb:last-child{
    cursor: auto;
}

body.product_description .carousel_wrapper .main_image img{
    max-width: 850px;
    width: 100%;
}
body.product_description .carousel_wrapper img{
    border-radius: 15px;
}
body.product_description .carousel_wrapper .slides{
    display: flex;
    overflow: auto;
}
body.product_description .carousel_wrapper .slides img{
    border-radius: 10px;
    margin-right: 10px;
    width: 80px;
}
body.product_description h1{
    font-size: 1.6rem;
    margin-bottom: 0.65rem;
}

body.product_description h2{
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.65rem;
}

body.product_description .product_price{
    margin: 15px 0;
}
body.product_description .product_price span.disclaimer{
    display: block;
    font-size: 0.7rem;
    color: #777777;
}
body.product_description .product_price .price{
    font-size: 1.3rem;
    font-weight: 500;
}
body.product_description del,
body.product_description .discount_percent{
    color: #4CAF50;
    font-weight: 400;
    margin-left: 5px;
}
body.product_description del{
    color: #999999;
    margin-left: 10px;
}

body.product_description .action_buttons{
    margin: 20px 0;
}
body.product_description .action_buttons .btn_favourite{
    background-color: #ffffff;
    color: var(--color-primary);
    border: 1px solid #4f44d0;
    box-shadow: none;
}
body.product_description .action_buttons .btn_favourite i{
    font-size: 1.35rem;
    line-height: 35px;
    vertical-align: middle;
}
body.product_description .action_buttons .btn_favourite.filled{
    color: #f44336;
    right: 5px;
}
body.product_description .quantity-input,
body.cart .quantity-input {
  display: flex;
  align-items: center;
}

body.product_description .quantity-btn,
body.cart .quantity-btn {
  padding: 0 15px;
  height: 54px;
  line-height: 54px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background-color: #f0f0f0;
  color: #333;
}

body.product_description .quantity,
body.cart .quantity {
    border-top: #f0f0f0 solid 1px;
    border-bottom: #f0f0f0 solid 1px;
    font-size: 1.2rem;
    height: 52px;
    line-height: 52px;
    margin: 0;
    text-align: center;
    width: 50px;
}
body.product_description .quantity:focus,
body.cart .quantity:focus{
    border: none !important;
    box-shadow: none !important;
}
body.product_description .description{
    color: #555;
    font-size: 1rem;
}
body.product_description .description h5{
    margin-bottom: 5px;
}
body.product_description .how-to-use{
    font-size: 0.9rem;
}
body.product_description .how-to-use h3{
    font-size: 1.2rem;
}
body.product_description .how-to-use ul,
body.product_description .how-to-use ol{
    margin-left: 20px;
}
body.product_description .how-to-use ul li,
body.product_description .how-to-use ol li{
    list-style-type: ;
}
body.product_description .description ol{
    margin: 0;
    padding-left: 15px;
    margin-bottom: 20px;
}
body.product_description .related_products{
    background-color: #f9ebe0;
}

@media (max-width: 600px){
    body.product_description h1{
        margin-top: 1rem;
        font-size: 1.6rem;
    }
    body.product_description h2{
        font-size: 1.2rem;
    }
    body.product_description .product_price{
        margin: 5px 0;
    }
}

/*----------------------------------------------------
    CART PAGE
------------------------------------------------------*/
.cart .empty_cart,
.wishlist .empty_cart{
    padding: 50px 0;
    text-align: center;
}
.cart .empty_cart .empty_bag{
    margin-bottom: 20px;
    width: 120px;
}
.cart_details_wrapper .cart_widget,
.cart_details_wrapper .wishlist_product{
    color: #333;
    display: flex;
    margin-bottom: 20px;
}
.cart_details_wrapper p, 
.checkout-page-wrapper p {
    line-height: 24px;
}
.cart_details_wrapper .cart_items{
    border-right: 1px solid #ddd;
    min-height: 450px;
}
.cart_details_wrapper .cart_widget .product-pic,
.wishlist_product .product-pic{
    margin-right: 20px;
    position: relative;
}
.cart_details_wrapper .cart_widget .product-pic img{
    border-radius: 15px;
    width: 120px;
}
.cart_details_wrapper .cart_widget .product-pic a{
    display: block;
}
.wishlist_product img{
    width: 120px;
}
.cart_details_wrapper .cart_widget .product_name{
    color: #333;
    display: block;
}
.cart_details_wrapper .cart_widget .price{
    font-weight: 600;
    margin-right: 5px;
}
.cart_details_wrapper .cart_widget .discount{
    color: #388E3C;
    font-weight: 600;
}
body.cart .quantity-input{
    margin-top: 10px;
}
.cart_details_wrapper .cart_widget .cart_actions{
    display: flex;
    justify-content: space-between;
}
.cart_details_wrapper .cart_widget .cart_actions a{
    color: #888;
}
.order_summary table tr td{
    border: none;
    padding-left: 0;    
}
.order_summary table tr{
    border: none;
}
.order_summary table tr.you_pay_row{
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    color: #49392B;
    font-size: 20px;
    font-weight: 600;
}
.order_summary .price_details{
    max-width: 300px;
}
.order_summary .price_details table td{
    color: #333;
}
.order_summary .price_details .add-more-worth{
    color: #E91E63;
}

@media (max-width: 1000px){
    .cart_details_wrapper .cart_items {
        border-right: none;
        min-height: 0;
    }
}
@media (max-width: 600px){
    .order_summary .price_details{
        max-width: 100%;
    }
}

/*----------------------------------------------------
    CHECKOUT PAGE
------------------------------------------------------*/
body.checkout .collapsible,
body.my_profile .collapsible{
    box-shadow: none;
    margin: 0;
}
body.checkout .collapsible .collapsible-header{
    font-weight: 600;
}
body.checkout .collapsible .collapsible-body{
    padding: 1rem 1.5rem;
}
.collapsible .delivery_addresses li{
    color: #333;
    margin-bottom: 25px;
    position: relative;
}
.collapsible .delivery_addresses li:last-child{
    margin-bottom: 0px;
}
.collapsible li .address_type{
    color: #FF9800;
}
.collapsible li .action_buttons{
    margin-top: 10px;
    position: relative;
}
.collapsible li .edit_btn{
    position: absolute;
    right: 0;
    top: 0;
}
body.checkout .collapsible .collapsible-body .payment_options label{
    display: block;
    padding: 10px 0;
}
body.checkout .collapsible .collapsible-body .payment_options span.name{
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
}
body.checkout .collapsible .collapsible-body .payment_options span>span.desc{
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

/*----------------------------------------------------
    ORDER CONFIRMATION PAGE
------------------------------------------------------*/
body.order_confirmation section{
    padding-top: 0;
}
body.order_confirmation .animation{
    position: relative;
    text-align: center;
}
body.order_confirmation .animation h3{
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}
body.order_confirmation .saved{
    color: #388E3C;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0;
    text-align: center;
}

/*----------------------------------------------------
    MY ORDERS
------------------------------------------------------*/
body.orders .orders_list a{
    display: flex;
}
body.orders .orders_list .product_pic{
    margin-right: 20px;
}
body.orders .orders_list .product_pic img{
    border-radius: 10px;
    width: 70px;
}
body.orders .orders_list .order_item {
    font-size: 0.80rem;
    font-weight: 500;
    color: #444;
    margin-right: 20px;
}
body.orders .orders_list .order_status {
    font-weight: 600;
}
body.orders .orders_list .order_status.processing {
    color: #db870c;
}
body.orders .orders_list .order_status.shipped {
    color: #0275d8;
}
body.orders .orders_list .order_status.delivered {
    color: #4caf50;
}
body.orders .orders_list .order_status.cancelled {
    color: #ff5722;
}
body.orders .orders_list a.load-more{
    display: block;
    font-size: 1.2rem;
}

.tabs_wrapper{
    position: relative;
}
.tabs_wrapper.stick{
    position: fixed;
    top: 100px;
}
ul.my_account_tabs{
    background-color: #f5f5f5;
    border-left: 1px solid #d1cfe1;
    margin: 0;
    padding: 10px;
    width: 300px;
}
ul.my_account_tabs li a{
    color: #777;
    display: block;
    padding: 10px 0;
}
ul.my_account_tabs li:first-child a{
    padding-top: 0;
}
ul.my_account_tabs li.active a,
ul.my_account_tabs li a:hover,
ul.my_account_tabs li.active a i{
    color: var(--color-primary);
    font-weight: 600;
}
ul.my_account_tabs li.active a i{
    font-weight: 400;
}
ul.my_account_tabs li a i{
    color: #999;
}

/*----------------------------------------------------
    ORDER DETAILS PAGE
------------------------------------------------------*/
.order_details{
    background-color: #f4f4f4;
}
.order_details .card-panel{
    box-shadow: none;
    margin-bottom: 0;
}
.order_details .row{
    margin-bottom: 0;
}
.order_details .order_progress{
    min-height: 325px;
    position: relative;
}
.order_details .action_buttons{
    display: flex;
    margin: 0;
}
.order_details .action_buttons li a{
    display: block;
    margin-left: 30px;
}
.order_details .order_progress .tracking_details{
    position: absolute;
    left: 50%;
    top: 15px;
}
.order_details .order_progress .tracking_details dt{
    color: grey;
}
.order_details .order_progress .tracking_details dd{
    color: black;
    margin-left: 0;
    margin-bottom: 20px;
}

.order_details .product_list .product{
    display: flex;
    margin-bottom: 10px;
}
.order_details .product_list .product_pic{
    margin-right: 20px;
}
.order_details .product_list .product_pic img{
    border-radius: 10px;
    width: 70px;
}
.order_details .product_list .order_item {
    font-size: 0.80rem;
    font-weight: 500;
    color: #444;
    margin-right: 20px;
}
.order_details .order_summary{
    min-height: 325px;
}
.order_details .order_summary label{
    font-size: 0.9rem;
    font-weight: 400;
    min-width: 120px;
    display: inline-block;
}
.order_details .order_summary span{
    font-weight: 600;
    min-width: 80px;
    display: inline-block;
    text-align: right;
}

@media (max-width: 992px){
    .order_details .order_progress .tracking_details{
        position: static;
        right: auto;
        top: auto;
    }
}
/*----------------------------------------------------
    VERTICAL TIMELINE FOR ORDER STATUS
------------------------------------------------------*/
.step_progress_wrapper.vertical {
    padding-left: 20px;
    width: 350px;
}
.step_progress_wrapper.vertical ul.step_progress {
    color: #777;
    position: relative;
    padding-left: 45px;
    list-style: none;
    margin-bottom: 40px;
}
.step_progress_wrapper.vertical .step_progress::before {
  display: inline-block;
  content: '';
  position: absolute;
  top: 1px;
  left: 18px;
  width: 10px;
  height: 100%;
  border-left: 3px solid #CCC;
}
.step_progress_wrapper.vertical .step_progress_item {
    min-height: 60px;
    position: relative;
}
.step_progress_wrapper.vertical .step_progress_item:last-child {
    min-height: 0px;
}
.step_progress_wrapper.vertical .step_progress_item label{
    font-size: 1rem;
    display: block;
    position: absolute;
}
.step_progress_wrapper.vertical .step_progress_item:not(:last-child) {
    padding-bottom: 50px;
}
.step_progress_wrapper.vertical .step_progress_item::before {
  display: inline-block;
  content: '';
  position: absolute;
  top: 1px;
  left: -27px;
  height: 100%;
  width: 10px;
}
.step_progress_wrapper.vertical .step_progress_item::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: -41px;
  width: 30px;
  height: 30px;
  border: 2px solid #CCC;
  border-radius: 50%;
  background-color: #FFF;
}
.step_progress_wrapper.vertical .step_progress_item.completed{
    color: #000;    
}
.step_progress_wrapper.vertical .step_progress_item.completed::before {
    border-left: 3px solid green;
}
.step_progress_wrapper.vertical .step_progress_item.completed::after {
  content: "check";
  font-family: 'Material Symbols Outlined';
  font-size: 22px;
  color: #FFF;
  text-align: center;
  border: 2px solid green;
  background-color: green;
  line-height: 25px;
}
.step_progress_wrapper.vertical .step_progress_item.completed.cancelled::after{
    background-color: #f14656;
    border: 2px solid #f14656;
}
.step_progress_wrapper.vertical .step_progress_item.completed.returned::after{
    background-color: #efb104;
    border: 2px solid #efb104;
}
.step_progress_wrapper.vertical .step_progress_item.completed.returned::before {
    border-left: 3px solid #efb104;
}

/*----------------------------------------------------
    HORIZONTAL TIMELINE FOR ORDER STATUS
------------------------------------------------------*/
.step_progress_wrapper.horizontal {
    
}
.step_progress_wrapper.horizontal ul.step_progress {
    color: #777;
    list-style: none;
    position: relative;
    padding: 20px 0px 0px 0px;
    display: inline-block;
    margin-bottom: 0;
}
.step_progress_wrapper.horizontal ul.step_progress::before {
    background-color: #ccc;
    position: absolute;
    content: " ";
    height: 2px;
    top: auto;
    bottom: 32px;
    left: 66px;
    right: 0;
    width: 100%;
    margin-bottom: 20px;
}
.step_progress_wrapper.horizontal .step_progress_item {
    display: table-cell;
    min-width: 180px;
    float: none !important;
    padding-left: 0px;
    padding-right: 20px;
    position: relative;
    line-height: normal;
    margin: 0 auto;
    text-align: center;
}
.step_progress_wrapper.horizontal .step_progress_item label{
    font-size: 1rem;
    margin-top: 20px;
    display: block;
    height: 34px;
}
.step_progress_wrapper.horizontal .step_progress_item.completed::before {
    border-bottom: 3px solid green;
    content: '';
    position: absolute;
    top: 0px;
    left: 77px;
    width: 100%;
}

.step_progress_wrapper.horizontal .step_progress_item:last-child::before {
    border-bottom: 4px solid white;
    content: '';
    position: absolute;
    top: 0px;
    left: 77px;
    width: 100%;
}

.step_progress_wrapper.horizontal .step_progress_item::after{
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 38px;
    left: 66px;
    width: 30px;
    height: 30px;
    border: 2px solid #CCC;
    border-radius: 50%;
    background-color: #FFF;
}
.step_progress_wrapper.horizontal .step_progress_item.completed::after {
  content: "check";
  font-family: 'Material Symbols Outlined';
  font-size: 22px;
  color: #FFF;
  text-align: center;
  border: 2px solid green;
  background-color: green;
  line-height: 27px;
}
.step_progress_wrapper.horizontal .step_progress_item.completed{
    color: #000;    
}
.search-products-modal .chip{
    color: #000000;
    font-size: 0.95rem;
    text-transform: lowercase;
}
.modal.youtube{
    box-shadow: none;
    max-width: 800px;
    margin-top: 5%;
}
.about .team .profileImg{
    width: 250px;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 125px;
    float: left;
    background-size: cover;
    margin-right: 30px;
}
.about .intro p{
    font-size: 1.3rem;
}
.about .intro h1{
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.about .team h2, .about .team h3{
    font-size: 1.6rem;
    text-decoration: underline;
}
.about .team h3{
    font-size: 1.4rem;
    text-decoration: underline;
}
.about .team p{
    font-size: 1.2rem;
}
@media (max-width:500px){
    .about .team .profileImg{
        float: none;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .about .team h2{
        text-align: center;
    }
}
.fixed-action-btn a.btn-floating{
    background-color: #60432d;
    border: #dddddd solid 1px;
    box-shadow: #000000 0 0 10px;
}
.ask-expert-modal .write-up{
    font-size: 1.3rem;
}
/**************************************************************************
 * CSS for Blog pages
**************************************************************************/
.blog-home main{
    max-width: 1000px;
    margin: auto;
}
.blog-home section{
    padding: 30px 10px;
}
.blog-home .page-crumb{
    margin-top: 15px;
}
.blog-home .banner{
    background-image:url('/images/blog-cover.jpg');
    height: 300px;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    max-width: 800px;
}
.blog-home .banner h1{
    text-align: center;
    padding-top: 12%;
    color: #fff;
    text-shadow: #111 1px 1px 1px;
}
.blog-home .post-heading{
    font-size: 2.2rem;
    text-align: center;
}
.blog-home span.post-date{
    font-size: 1rem;
    color: #666;
    text-align: center;
}
.blog-home .post-category{
    font-size: 1rem;
    margin-left: 15px;
    padding: 2px 10px;
    display: inline-block;
    border-radius: 5px;
    border: #ddd solid 1px;
}
.blog-home .post-category:hover{
    background-color: #eee;
}
.blog-home .intro h1{
    font-size: 3rem;
}
.blog-home .intro h2{
    font-size: 1.6rem;
}
.blog-home .card{
    display: block;
    box-shadow: none;
    border: #ddd solid 1px;
    padding: 10px;
    margin: 0 0 15px 0;
    border-radius: 5px;
}
.blog-home .card:hover{
    box-shadow: #ccc 1px 1px 5px;
}
.blog-home .card div{
    height: 160px;
    background-size: cover;
    background-position: center;
    box-shadow: none;
    margin-bottom: 10px;
    position: relative;
}
.blog-home .card h3{
    color: #212529;
    font-size: 1.4rem;
    letter-spacing: 0.04rem;
    line-height: 1.2;
    min-height: 55px;
}
.blog-home .card p{
    font-size: 1rem;
    color: #666666;
}
.blog-home .card span.date{
    font-size: 0.9rem;
    color: #888;
}
.blog-home .card div span.category{
    position: absolute;
    left: 10px;
    top: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #eee;
    padding: 2px 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.blog-home .blog_pagination{
    text-align: center;
    margin-bottom: 30px;
}
.blog-home .blog_pagination a{
    display: inline-block;
    padding: 5px 10px;
    border: #ddd solid 1px;
    border-radius: 5px;
    color: #333;
}
.blog-home .blog_pagination a.disable-url{
    background-color: #ddd;
    cursor: not-allowed;
}
.blog-home .blog_pagination a:hover, .blog-home .blog_pagination a:focus{
    background-color: #eee;
    border-color: #eee;
    color: #111;
}
.blog-home .blog-categories li{
    padding: 5px 0;
}
.blog-home .blog-categories li a{
    color: #777;
}
.blog-home .blog-categories li a:hover{
    color: #222;
}
@media (max-width: 1366px){
    .blog-home .intro h1{
        font-size: 2.4rem;
    }
    .blog-home .intro h2{
        font-size: 1.4rem;
    }
}
@media (max-width: 500px){
    .blog-home .banner{
        height: 140px;
    }
    .blog-home .banner h1{
        font-size: 35px;
        padding-top: 20%;
    }
    .blog-home .intro h1{
        font-size: 1.4rem;
    }
    .blog-home .intro h2{
        font-size: 1rem;
    }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0); /* Start and end position */
  }
  20% {
    transform: translateY(-5px); /* Peak of the bounce */
  }
}