@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --primary: #0D81C9;
    --white: #ffffff;
    --text-color: #3D3131;
    --fs-small:14px;
    --fs-xsmall:12px;
    --fs-normal:16px;
    --text-light: #9a9a9a;
    --border-color:#A6A6A6;
    --header-search-bg: #F9F9F9;
    --text-v2: #7D8398;


}

*
{
    font-family: "Poppins", sans-serif;
}

ul, ol 
{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
a{
    text-decoration: none;
}

.highlight-text
{
    color: var(--primary);
}

h3
{
    font-size: 24px;
    font-weight: 600;
}

/* Top bAR */

.tab-bar
{
    background-color: var(--primary);
}
.tab-bar .left-menu
{
    display: flex;
    align-items: center;
    gap: 15px;
}
.tab-bar .left-menu a
{
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: var(--white);
    font-size: var(--fs-xsmall);
    gap: 6px;
}
.tab-bar li span.line-v
{
    width: 1px;
    height: 20px;
    background-color: #fff;
    display: block;
}
.tab-bar .left-menu a img 
{
    width: 15px;
}
.tab-bar .right-menu
{
    display: flex;
    align-items: center;
    gap: 25px;
    float: right;
}
.tab-bar .right-menu a
{
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: var(--white);
    font-size: var(--fs-xsmall);
    gap: 6px;
}

.tab-bar .right-menu a img 
{
    width: 20px;
}




/* Header Design */

.header-main
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
}
.header-main .header-brand img
{
    width: 50px;
}
.header-main .search-wrapper .search-wrapper-inner
{
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: var(--header-search-bg);
    padding: 0px 0px 0px 20px;
    border-radius: 20px;
}
.header-main .search-wrapper .search-wrapper-inner img.drowdown-icon
{
    width: 25px;
}
.header-main .search-wrapper .search-wrapper-inner .category-wrapper
{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: var(--fs-small);
    gap: 10px;
    border-right: 1.5px solid var(--border-color);
    padding-right: 10px;
    margin-right: 10px;
    font-weight: 300;
}
.header-main .search-wrapper .search-wrapper-inner .search-input
{
    outline: none;
    border: 0px;
    padding: 5px 7px;
    background-color: transparent;
    font-weight: 300;
    min-width: 300px;
    font-size: var(--fs-small);
}

.header-main .search-wrapper .search-wrapper-inner .search-button
{
    background-color: var(--primary);
    color: var(--white);
    outline: none;
    border: none;
    border-radius: 0px 20px 20px 0px;
    padding: 10px 25px;
    font-weight: 600;
}




.header-right-menu
{
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-right-menu .icons
{
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-right-menu .icons li a
{
    position: relative;
}
.header-right-menu .icons li a img 
{
    width: 28px;
}
.header-right-menu .icons li a  span.label
{
    background-color: var(--primary);
    width: 20px;
    height: 20px;
    display: block;
    color: var(--white);
    border-radius: 20px;
    position: absolute;
    top: -8px;
    right: -8px;
    text-align: center;
    line-height: 20px;
    font-size: var(--fs-xsmall);
}
.header-right-menu .header-action-button
{
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 14px;
}

.header-warpper .header-menu
{
    background-color: var(--primary);
    color: var(--white);
}
.header-warpper .header-menu ul
{
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.header-warpper .header-menu ul li a
{
    display: block;
    padding: 13px 10px;
    color: var(--white);
    display:flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-normal);
    text-transform: capitalize;
}
.header-warpper .header-menu ul li a img 
{
    width: 20px;
}
.header-warpper .header-menu ul li a.login-signup-button
{
    background: var(--white);
    color:var(--text-color);
    padding: 13px 30px;
    display: inline-block;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

/* Hero Section */

.hero-slider-item img
{
    width: 100%;
}

/* feature-section */


.feature-section .feature-item
{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}
.feature-section .feature-item img 
{
    width: 40px;
}

.feature-section .feature-item .title
{
    color: var(--text-color);
    font-weight: 500;
    font-size: var(--fs-normal);
    display: block;
}
.feature-section .feature-item .sub-title
{
    color: var(--text-color);
    font-weight: 300;
    font-size: var(--fs-small);
    display: block;
}



/* Category Section */

.category-section h3
{
    font-size: 24px;
    font-weight: 600;
}
.category-section .custom-tabs ul
{
    display: flex;
    align-items: center;
    gap: 35px;
}
.category-section .custom-tabs ul li a
{
    color: var(--text-v2);
    font-weight: 300;
    padding:  10px 3px;
    text-transform: capitalize;
    display: block;
}
.category-section .custom-tabs ul li a.active 
{
    border-bottom: 2.5px solid var(--primary);
}


.category-item 
{
    background-color: #F8F8F8;
    border-radius: 20px;
}
.category-item .product-image 
{
    width: 60%;
    max-height: 150px;
    object-fit: contain;
    min-height: 150px;
}
.category-item .meta-data .title a 
{
    font-size: 18px;
    color: var(--text-color);
    text-align: center;
    display: block;
}
.category-item .meta-data .rating
{
    color: #FBB70A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.category-item .meta-data .price-meta
{
    text-align: center;
    display: block;
    color: #EC0D0D;
    font-weight: 600    ;
}
.category-item .action_btns
{
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 15px 20px;
    gap: 15px;
}
.category-item .action_btns .btn-item
{
    cursor: pointer;
}
.category-item .action_btns .btn-item img 
{
    width: 25px;
}

.category-item .action_btns .add-to-cart-btn
{
    background-color: var(--primary);
    display: flex;
    padding: 8px 15px;
    gap: 10px;
    color: var(--white);
    font-size: var(--fs-small);
    align-items: center;
    border-radius: 15px;
    cursor: pointer;
}
.category-item .action_btns .add-to-cart-btn img 
{
    width: 20px;
}



/* Offer Product */
.offer-product
{
    position: relative;
    background-color: var(--white);
    border-radius: 20px;
}
.offer-product .discount_offer
{
    position: absolute;
    right: -20px;
    top: -20px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    border: 2px solid var(--white);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    display: block;
    font-size: var(--fs-small);
}

.offer-product .meta-data .timer
{
    display: flex;
    align-items: center;
    background-color: var(--primary);
    display: inline-block;
    font-size: var(--fs-xsmall);
    color:var(--white);
    padding: 3px 9px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.offer-product .meta-data .timer img 
{
    width: 15px;
}
.offer-product .meta-data h4 a.title
{
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
}
.offer-product .meta-data .price-meta
{
    display: flex;
    align-items: center;
    gap: 20px;
}

.offer-product .meta-data .price-meta .offer-price
{
    font-size: 20px;
    color: #EC0D0D;
    font-weight: 600;
}

.offer-product .meta-data .price-meta .regular-price
{
    font-size: 20px;
    color: var(--text-light);
    font-weight: 400;
}
.offer-product .meta-data p 
{
    font-size: var(--fs-small);
    margin-top: 7px;
}


.offer-product .product-image
{
    width: 100%;
}
.offer-product .action_btns
{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}
.offer-product .action_btns .btn-item
{
    cursor: pointer;
}
.offer-product .action_btns .btn-item img 
{
    width: 25px;
}

.offer-product .action_btns .add-to-cart-btn
{
    background-color: var(--primary);
    display: flex;
    padding: 8px 15px;
    gap: 10px;
    color: var(--white);
    font-size: var(--fs-small);
    align-items: center;
    border-radius: 15px;
    cursor: pointer;
}
.offer-product .action_btns .add-to-cart-btn img 
{
    width: 20px;
}
.offer-product .product-image-wrapper
{
    position: relative;
}
.offer-product .product-image-wrapper .more-slide
{
    background-color: var(--primary);
    width: 34px;
    height: 34px;
    text-align: center;
    font-size: 25px;
    line-height: 34px;
    display: block;
    padding: 0px;
    border-radius: 20px;
    border: 2px solid #f7f8f9;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--white);
}
.offer-product .product-image-wrapper  .product-image-item
{
    width: 100%;
    height: 100px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}


/* Best Seller */

.view_more_button
{
    border: 1px solid #D1095080;
    color: #d1094f;
    padding: 6px 14px;
    border-radius: 12px;
}

.best-seller-section{
    background-color: #F9F2F2;
}



/* slider-navigation */

.slider-navigation
{
    display: flex;
    align-items: center;
    gap: 15px;
}
.slider-navigation .arrow-items
{
    width: 40px;
    height: 40px;
    display: block;
    align-items: center;
    line-height: 38px;
    background-color: var(--primary);
    border-radius: 40px;
    padding: 0px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}
.slider-navigation .arrow-items:hover
{
    background-color: var(--text-color);
}
.slider-navigation .arrow-items img 
{
    width: 18px;
}


/* Category v2 */

.category-v2-item
{
    background-color: #EFEFEF;
}

.category-v2-item .title 
{
    color: #000000;
    font-size: 24px;
    font-weight: 300;
}
.category-v2-item .product-count 
{
    color: #000000;
    font-size: 22px;
    font-weight: 600;
}
.category-v2-item .main-btn
{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
}
.category-v2-item .main-btn img 
{
    width: 20px;
}

.category-v2-item.bg-red
{
    background-color: #E50B0B;
}
.category-v2-item.bg-light-green
{
    background-color: #2C961121;
}
.category-v2-item.bg-light-blue
{
    background-color: #0467A44A;
}
.category-v2-item.bg-red  .title, .category-v2-item.bg-red  .product-count, .category-v2-item.bg-red  .main-btn
{
    color: var(--white);
}
/* Footer Section */

.footer-section
{
    background-color: var(--primary);
    color: #fff;
}

.footer-widget .widget-title
{
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.footer-widget  p 
{
    font-size: var(--fs-small);
}

.footer-widget .social-links
{
    display: flex;
    align-items: center;
    gap: 25px;
}
.footer-widget .social-links a
{
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: var(--white);
    font-size: var(--fs-xsmall);
    gap: 6px;
}

.footer-widget .social-links a img 
{
    width: 20px;
}

.footer-widget ul li a
{
    color: var(--white);
    font-size: var(--fs-small);
}
.footer-widget ul.footer-menu li a
{
    display: block;
    padding: 10px 0px;
}



.subscribe-wrapper
{
    display: flex;
    align-items: center;
    background-color: var(--white);
    width: 80%;
    margin: auto;
    padding: 0px 0px;
    border-radius: 30px;
    justify-content: space-between;
}
.subscribe-wrapper input
{
    padding: 10px;
    outline: none;
    border: none;
    border-radius: 30px;
    max-width: 80%;
    min-width: 70%;
    padding-left: 20px;
}
.subscribe-wrapper button
{
    background-color: var(--text-color);
    color: var(--white);
    outline: none;
    border: none;
    padding: 10px 20px;
    border-radius: 0px 25px 25px 0px;
    
}


.footer-copyright a
{
    color: var(--white);
}






.image-slider-wrapper-item
{
    cursor: pointer;
    border: 1px solid transparent;
    margin-bottom: 5px;
    border-radius: 13px;
    padding: 10px 7px;
}

.image-slider-wrapper-item:hover 
{
    border: 1px solid var(--primary);
}
.image-slider-wrapper-item.active
{
    border: 1px solid var(--primary);
}

.product-details-section h1 
{
    font-size: 22px;
    color: #4a4a4a;
}
.product-details-section h4 
{
    font-size: 18px;
    color: var(--text-color);
}
.product-details-section .base-meta-wrapper .main-price
{
    font-size: 28px;
    color: var(--text-color);
}
.product-details-section .base-meta-wrapper del
{
    font-size: 16px;
    color: var(--text-color);
    color: var(--text-light);
}
.product-details-section .base-meta-wrapper .d-flex 
{
    gap: 10px;
}
.product-details-section .base-meta-wrapper .discount-label
{
    font-size: 18px;
    font-weight: 600;
}


.product-details-section .seller-info-wrapper .seller-image
{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ccc;
    background-color: #f7f8f9;
}

.outline-button
{
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
}
.outline-button:hover
{
    background-color: var(--text-color);
    color: var(--white);
    border-color: var(--text-color);
}
.w-45 
{
    width: 45%;
}

.dark-button
{
    border: 1px solid var(--primary);
    color: var(--white);
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
    background-color: var(--primary);
}
.outline-button:hover
{
    background-color: var(--text-color);
    color: var(--white);
    border-color: var(--text-color);
}




/* Cart */
.cart-page-section 
{
    background-color: #f1f3f6;
}
.cart-items-wrapper
{
    display: flex;
    align-items: center;
    gap: 15px;
}
.cart-items-wrapper .product-image img
{
    max-width: 100px;
    object-fit: cover;
}
.cart-items-wrapper .item-meta a.title
{
    font-weight: 500;
    font-size: var(--fs-small);
    color: var(--primary);
}

.cart-items-wrapper .item-meta .attrbute-items li
{
    font-size: var(--fs-xsmall);
    font-weight: 500;
    color: var(--text-color);
}
.cart-items-wrapper .item-meta .cart-price-wrapper
{
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-items-wrapper .item-meta .cart-price-wrapper del 
{
    font-size: var(--fs-small);
    font-weight: 400;
    color: #878787;
}
.cart-items-wrapper .item-meta .cart-price-wrapper span.main-price 
{
    font-size: 18px;
    font-weight: 600;
    color: #212121;
}
.cart-items-wrapper .item-meta .cart-price-wrapper span.discount-label 
{
    font-size: 14px;
    font-weight: 600;
    color: #388e3c;
}
.cart-items-wrapper .item-meta .cart-action-wrapper
{
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.cart-items-wrapper .item-meta .cart-action-wrapper  .cart-qty-wrapper button
{
    outline: none;
    border: 1px solid #ccc;
    background-color: #f7f8f9;
    padding: 3px 6px;
    min-width: 30px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
}
.cart-items-wrapper .item-meta .cart-action-wrapper   button.remove-item
{
    outline: none;
    border: none;
    background-color: #fff;
    text-decoration: underline;
    padding: 3px 6px;
    min-width: 30px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
}
.cart-items-wrapper .item-meta .cart-action-wrapper  .cart-qty-wrapper .qty 
{
    min-width: 25px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
}


.cart-page-section .sidebar-header h4
{
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 500;
    color: #646464;
    text-transform: uppercase;
}
.cart-page-section .total-price-wrapper
{
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 500;
    color: #212121;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-page-section .place-order-button
{
    background-color: var(--primary);
    color: #fff;
    padding: 10px 10px;
    display: block;
    outline: none;
    width: 100%;
    border: none;
    text-transform: uppercase;
    font-weight: 500;
}

/* Account  */


.account-page-section 
{
    background-color: #f1f3f6;
}

.login-button
{
    background-color: var(--primary);
    color: #fff;
    padding: 10px 10px;
    display: block;
    outline: none;
    width: 100%;
    border: none;
    text-transform: uppercase;
    font-weight: 500;
}
.account-page-section h1
{
    font-size: 24px;
}
.account-page-section span
{
    font-size: var(--fs-small);
}
.account-page-section a
{
    color: var(--primary);
}
.form-control
{
    border-radius: 0px;
    min-height: 42px;
}
.form-control:focus
{
    box-shadow: none;
    border-color: var(--primary);
}



.dashboard-items 
{
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1.5px dashed #ccc;
}
.dashboard-items i 
{
    font-size: 35px;
    color: var(--text-color);
}
.dashboard-items .title 
{
    font-weight: 600;
    display: block;
    font-size: 17px;
    color: var(--text-color);
}
.dashboard-items .sub-title 
{
    font-weight: 400;
    display: block;
    font-size: 15px;
    color: var(--text-light);
}


/* Bootstrap  */

  
.badge-status
{
    padding: 2px 12px;
    font-size: 12px;
    font-weight: 600;
}
.bg-success, .btn-success, .alert-success, .badge-success
{
    border-color: #26bf94;
    background-color: #26bf94;
    color: var(--white);
}
.text-success
{
    color: #26bf94;
}
.btn-success:hover
{
    border-color: #26bf94;
    background-color: #26bf94;
    color: var(--white);
}
.bg-info, .btn-info, .alert-info, .badge-info
{
    border-color: #49b6f5;
    background-color: #49b6f5;
    color: var(--white);
}
.text-info
{
    color: #49b6f5;
}
.btn-info:hover
{
    border-color: #49b6f5;
    background-color: #49b6f5;
    color: var(--white);
}
.bg-danger, .btn-danger, .alert-danger, .badge-danger
{
    border-color: #e6533c;
    background-color: #e6533c;
    color: var(--white);
}
.text-danger
{
    color: #e6533c;
}
.btn-danger:hover
{
    border-color: #e6533c;
    background-color: #e6533c;
    color: var(--white);
}
.bg-primary, .btn-primary, .alert-primary, .badge-primary
{
    border-color: var(--primary);
    background-color: var(--primary) !important;
    color: var(--white);
}
.text-primary
{
    color: var(--primary) !important;
}
.btn-primary:hover
{
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
}
.bg-secondary, .btn-secondary, .alert-secondary, .badge-secondary
{
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: var(--white);
}
.text-secondary
{
    color: var(--secondary);
}
.btn-secondary:hover
{
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: var(--white);
}
.bg-warning, .btn-warning, .alert-warning, .badge-warning
{
    border-color: #f5b849;
    background-color: #f5b849;
    color: var(--white);
}
.text-warning 
{
    color: #f5b849;
}
.btn-warning:hover
{
    border-color: #f5b849;
    background-color: #f5b849;
    color: var(--white);
}



.bg-dark, .btn-dark, .alert-dark, .badge-dark
{
    border-color: #232323;
    background-color: #232323;
    color: var(--white);
}
.text-dark
{
    color: #232323;
}
.btn-dark:hover
{
    border-color: #232323;
    background-color: #232323;
    color: var(--white);
}

.bg-light, .btn-light, .alert-light, .badge-light
{
    background-color: #f3f6f8;
    border-color: #bbbbbb;
    color: var(--text-color);
}
.page-container
{
    min-height: 75vh;
}
.btn-light:hover
{
    border-color: #bbbbbb;
    background-color: #f3f6f8;
    color: var(--text-color);
}

.alert
{
    padding: 10px 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    margin-top: 10px;
}

.alert i 
{
    font-size: 16px;
    cursor: pointer;
    color: #fff;
}


@media screen and (max-width: 769px) {
    .custom-tabs {
        overflow-x: scroll;
    }
    .tab-bar {
      /*display: none;*/
      overflow-x: scroll;
    }
    .header-warpper {
        /*display: none;*/
        overflow-x: scroll;
    } 
    .offer-product .discount_offer {
        right: 3px;
        top: 3px;
    }
    .category-v2-item {
        margin-bottom: 20px;
    }
    .header-warpper .header-menu ul li a {
        white-space: nowrap;
    }
    .header-menu ul {
        overflow-x: scroll;
    }
    .tab-bar .right-menu {
        float: left;
        margin-top: 6px;
    }  
    .category-section .custom-tabs ul li a {
        white-space: nowrap;
    }
    .tab-bar .left-menu {
        gap: 5px;
    }    
        
        
        
        
        
        
}




.header-toogle-button
{
    display: none;
}



@media (max-width: 991.98px) {

    .tab-bar .left-menu
    {
        display: none;
    }
    
    .header-warpper .search-wrapper
    {
        position: absolute;
        left: -100%;
        top:0px
    }
    
    .tab-bar .left-menu,
    .tab-bar .right-menu,
    .header-main,
    .header-warpper .header-menu ul,
    .header-right-menu .icons {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .tab-bar .left-menu {
        gap: 10px;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 10px;
    }

    .tab-bar .right-menu {
        justify-content: center;
        margin-bottom: 10px;
    }

    /* .header-main {
        flex-direction: column;
        gap: 15px;
    } */

    .header-main .search-wrapper .search-wrapper-inner {
        flex-wrap: wrap;
        padding: 10px;
        border-radius: 10px;
    }

    .header-main .search-wrapper .search-wrapper-inner .search-input {
        min-width: 100%;
        flex: 1;
    }

    .header-main .search-wrapper {
        width: 100%;
    }

    /* .header-right-menu {
        flex-direction: column;
        gap: 10px;
    } */

    .header-right-menu .icons {
        justify-content: center;
        gap: 15px;
    }

    .header-warpper .header-menu ul {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .header-warpper .header-menu ul li a {
        font-size: 14px;
        padding: 10px;
    }

    .header-warpper .header-menu ul li a.login-signup-button {
        clip-path: none;
        padding: 10px 20px;
    }



    .header-warpper .header-main
    {
        display: flex;
        justify-content: space-between;
    }
    .header-warpper .header-main .header-right-menu
    {
        display: flex;
    }
    .header-warpper .header-main
    {
        padding: 8px 10px;
    }

    .header-warpper .header-main .header-action-button
    {
        display: none;
    }

    .header-toogle-button
    {
        display: block;
        font-size: 35px;
        margin-left: 20px;
        background-color: #f2f2f2;
        width: 50px;
        border-radius: 5px;
        height: 50px;
    }

    .header-menu
    {
        display: block;
        position: absolute;
        top: 0px;
        left: -100%;
        width: 300px;
        background-color: #343434 !important;
        height: 100vh;
        padding-top: 50px;
        transition: 0.3s;
    }
    .header-menu.active 
    {
        left: 0px;
    }

    .header-menu ul 
    {
        display: block !important;
    }
    .header-menu ul  li a
    {
        text-align: left;
        display: block !important;
        margin-bottom: 10px !important;
    }
    .header-menu ul  li a img 
    {
        margin-right: 10px;
    }
}

@media (max-width: 575.98px) {
    .header-main .search-wrapper .search-wrapper-inner .category-wrapper {
        display: none;
    }

    .tab-bar .left-menu a span,
    .tab-bar .right-menu a span {
        display: none;
    }

    .header-main .header-brand img {
        width: 40px;
    }

    .header-main .search-wrapper .search-wrapper-inner .search-button {
        padding: 8px 15px;
    }
    .tab-bar .left-menu
    {
        display: none;
    }
    .tab-bar .text-end
    {
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .feature-section .feature-item
    {
        padding: 5px;
        gap: 10px;
    }
    .feature-section .feature-item img
    {
        width: 30px;
    }
    .feature-section .feature-item .title
    {
        font-size: 14px;
    }
    .feature-section .feature-item .sub-title
    {
        font-size: 12px;
    }
}
