
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

 
* {
	margin: 0px;
	padding: 0px;
	outline: 0px;
}

ul {
	margin: 0px;
	padding: 0px;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	
	
}

a:hover,
a:focus {
	text-decoration: none;

}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
img,
ul,
ol,
li,
input,
form,
.btn,
.navbar,
.breadcrumb,
.pagination {
	margin: 0px;
	padding: 0px;
	border: 0;
}

body {
font-family: "Open Sans", sans-serif;
padding-bottom: 0;
}


/* Top Header Bar */
.header_top {
    background-color: #ff5a00;
    padding: 8px 0;
    font-family: 'Poppins', sans-serif;
}

/* Remove default ul style */
.header_top_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end; 
    gap: 25px; 
}

.header_top_menu ul li {
    display: inline-block;
}


.header_top_menu ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.header_top_menu ul li a:hover {
    color: #000000;
}

.header_top_menu ul li a {
    position: relative;
}

.header_top_menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ffffff;
    left: 0;
    bottom: -3px;
    transition: 0.3s;
}

.header_top_menu ul li a:hover::after {
    width: 100%;
}
@media (max-width: 768px) {
    .header_top_menu ul {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .header_top_menu ul li a {
        font-size: 12px;
    }
}

/* main header part */

/* ===== Header Background ===== */
.main-header {
    background-color: #ff5a00;
    padding: 15px 0;
    font-family: 'Poppins', sans-serif;
}

/* Logo */
.logo img {
    max-height: 45px;
}

/* ===== Search Box ===== */
.search-box {
    display: flex;
    width: 100%;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
}

.search-box input {
    width: 100%;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    outline: none;
}

.search-box button {
    background: #ffe5d8;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-size: 16px;
    color: #ff5a00;
    transition: 0.3s;
}

.search-box button:hover {
    background: #ff5a00;
    color: #ffffff;
}

/* ===== Header Right Side ===== */
.header-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Buttons */
.header-actions button {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
    font-weight: 500;
}

.header-actions button:hover {
    background: #ffffff;
    color: #ff5a00;
}

/* Cart Count Badge */
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ffffff;
    color: #ff5a00;
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {

    .main-header {
        text-align: center;
        margin-bottom: 10px;
    }

    .header-actions {
        justify-content: center;
        margin-top: 10px;
    }

}

@media (max-width: 576px) {
.header_top,
 .main-header {
    display: none;
    }
}


/* mobile_header part */

@media (max-width: 576px) {


   body {
        padding-top: 110px;
    }

    /* Hide in desktop */
    .mobile_only {
        display: block;
    }

    .mobile_header {
        background: #ff6600;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 9999;
        padding-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    /* Logo */
    .mobile_logo img {
        height: 36px;
    }

    /* Icon Button */
    .mobile_icon_btn {
        width: 42px;
        height: 42px;
        border: 1px solid #fff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        position: relative;
        cursor: pointer;
        transition: 0.3s;
    }

    .mobile_icon_btn:hover {
        background: rgba(255,255,255,0.15);
    }

    .mobile_icon_btn i {
        font-size: 18px;
    }

    /* Cart Badge */
    .mobile_cart_badge {
        position: absolute;
        top: -6px;
        right: -6px;
        background: #fff;
        color: #ff6600;
        font-size: 11px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }

    /* Search Box */
    .mobile_search_box {
        padding: 10px 15px 0 15px;
    }

    .mobile_search_box .input_group {
        display: flex;
        background: #fff;
        border-radius: 6px;
        overflow: hidden;
    }

    .mobile_search_box input {
        border: none;
        height: 42px;
        padding: 0 12px;
        flex: 1;
        outline: none;
        font-size: 14px;
    }

    .mobile_search_box button {
        border: none;
        background: #ffffff;
        padding: 0 15px;
        cursor: pointer;
    }

    .mobile_search_box button i {
        color: #ff6600;
        font-size: 16px;
    }
}


/* Hide mobile header on desktop */
@media (min-width: 577px) {
    .mobile_only {
        display: none !important;
    }
}

/* banner_part start */
.banner_part {
    padding: 25px 0;
    background: #f8f8f8;
}

/* Row alignment fix */
.banner_part .row {
    align-items: stretch;
}

/* ===== Banner Slider ===== */
.banner_section {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.banner_image .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Owl Nav Fix */
.owl-nav button {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #ffffff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.owl-nav .owl-prev {
    left: 15px;
}

.owl-nav .owl-next {
    right: 15px;
}

.owl-nav i {
    color: #ff5a00;
}

/* Dots Fix */
.owl-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
}

.owl-dots .owl-dot.active span {
    background: #ff5a00;
}

/* ===== Right Side Card ===== */
.banner_left_item {
    background: #f2d3c3;
    padding: 15px 20px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* User Icon Circle */
.banner_left_item_head {
    text-align: center;
}

.banner_left_item_head i {
    font-size: 26px;
    background: #ffffff;
    width: 70px;
    height: 70px;
    line-height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
    color: #ff5a00;
}

.banner_left_item_head h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.banner_left_item_head p {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

/* Buttons */
.banner_left_item_tp_btn {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.login_btn {
    flex: 1;
    background: #ff5a00;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.regi_btn {
    flex: 1;
    background: #ffffff;
    color: #ff5a00;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.login_btn,
.regi_btn {
    transition: all 0.3s ease;
}

/* Login Hover */
.login_btn:hover {
    background: #e14e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 90, 0, 0.3);
}

/* Register Hover */
.regi_btn:hover {
    background: #ff5a00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 90, 0, 0.3);
}

/* Menu Items */
.banner_left_item_menu_item {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 12px 8px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    gap: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Sweep Background Layer */
.banner_left_item_menu_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff5a00, #ff7a2f);
    transition: 0.4s ease;
    z-index: -1;
}

/* Hover Effect */
.banner_left_item_menu_item:hover::before {
    left: 0;
}

/* Text & Icon Color Change */
.banner_left_item_menu_item:hover h6,
.banner_left_item_menu_item:hover p,
.banner_left_item_menu_item:hover i {
    color: #ffffff;
}

/* Right Arrow Slight Move */
.banner_left_item_menu_item:hover .item_menu_item_con_right {
    transform: translateX(5px);
    transition: 0.3s ease;
}

/* Middle Content Full Width */
.item_menu_item_con_cont {
    text-align: left;
    flex: 1; /* take available space */
}

/* Right Arrow Fixed Right */
.item_menu_item_con_right {
    margin-left: auto;
}


.banner_left_item_menu_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.item_menu_item_con i {
    font-size: 18px;
    color: #ff5a00;
}

.item_menu_item_con_cont h6 {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
}

.item_menu_item_con_cont p {
    margin: 0;
    font-size: 10px;
    color: #777;
    font-weight: 400;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .banner_left_item {
        display: none;
    }

    .banner_section {
        border-radius: 15px;
    }
}

@media (max-width: 768px) {

    .owl-nav button {
        width: 28px !important;
        height: 28px !important;
    }

    .owl-nav button i {
        font-size: 14px;
    }

    .owl-nav .owl-prev {
        left: 8px;
    }

    .owl-nav .owl-next {
        right: 8px;
    }

}

/* category section */
.category_section {
    padding: 20px 0;
    background: #f8f8f8;
}

.section_title h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Grid */
.category_grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    border: 1px solid #e5e5e5;
}

.category_item {
    text-align: center;
    padding: 30px 10px;
    background: #ffffff;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Image */
.category_item img {
    height: 60px;
    margin-bottom: 12px;
    transition: transform 0.35s ease;
}

/* Text */
.category_item p {
    font-size: 12px;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* Premium Hover */
.category_item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.category_item:hover img {
    transform: scale(1.15);
}

.category_item:hover p {
    color: #ff5a00;
}

@media (max-width: 1200px) {
    .category_grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .category_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Feature_product part */

/* Section Background */
.feature_product {
    background: #f8f9fb;

}
.feature_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    position: relative;
    margin-bottom: 20px;
}

/* Divider */
.section-divider::before,
.section-divider::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.25),
        transparent
    );
}

.section-divider::before { top: 0; }
.section-divider::after { bottom: 0; }

/* Title */
.feature_collection_name h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #ff6a00;
}

/* Button */
.feature_view_btn a {
    display: inline-block;
    padding: 6px 18px;
    border: 1.5px solid #ff6a00;
    color: #ff6a00;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;
}

.feature_view_btn a:hover {
    background: #ff6a00;
    color: #fff;
}

/* Mobile Adjustment (Still Side by Side) */
@media (max-width: 575px) {

    .feature_collection_name h3 {
        font-size: 17px;
    }

    .feature_view_btn a {
        font-size: 12px;
        padding: 5px 14px;
    }
}

/* Product Card */
.feature_product_card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature_product_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Image */
.f_product_image {
    position: relative;
    overflow: hidden;
}

.f_product_image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.5s ease;
}

.feature_product_card:hover img {
    transform: scale(1.08);
}
/* cart icon */



/* Discount Badge */
.discount_badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6a00;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* Title */
.f_product_title {
    padding: 12px 15px 0;
}

.f_product_title p {
    font-size: 14px;
    font-weight: 500;
    min-height: 40px;
    margin-bottom: 10px;
}

/* Price */
.f_product_price {
    padding: 0 15px 15px;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
}

.f_product_price h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ff6a00;
    float: left;
}


.f_product_price span {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-left: 8px;
}

.f_product_price_cart{
    float: right;
}

/* Add Cart Button */
.f_product_price_cart a {
    background: linear-gradient(135deg, #ff6a00, #ff8c1a);
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
    white-space: nowrap;
}

.f_product_price_cart a:hover {
    background: linear-gradient(135deg, #e65c00, #ff6a00);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 106, 0, 0.4);
}

.f_product_price_cart a:active {
    transform: scale(0.95);
}

.add_to_cart_btn {
    padding: 6px 12px;
    background: #ff6a00;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s ease;
}

.add_to_cart_btn:hover {
    background: #e65c00;
    transform: translateY(-2px);
}




/* Responsive Improve */
@media (max-width: 575px) {
    .feature_collection_name h3 {
        font-size: 20px;
    }
}



/* feature_promotion part */
/* Feature Promotion Cards */
.feature_promotion_card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.feature_promotion_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature_promotion_card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Desktop Grid */
@media (min-width: 992px) {
    .feature_promotion_slider {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* Container for the dots above the image */
.feature_promotion_slider .owl-dots {
    text-align: center;
    margin-bottom: 0; /* remove default bottom margin */
    margin-top: -15px; /* move dots 15px above the bottom of the image */
    position: relative;
    z-index: 10;
}

/* Each dot */
.feature_promotion_slider .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #ffffff; /* solid black */
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Active dot */
.feature_promotion_slider .owl-dot.active {
    opacity: 1;
    background: orange; /* active dot color */
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 165, 0, 0.6); /* subtle glow */
}

/* Hover effect */
.feature_promotion_slider .owl-dot:hover {
    opacity: 0.8;
    transform: scale(1.2);
    box-shadow: 0 0 6px rgba(255, 165, 0, 0.5);
}



/* All Products Section */
.all_products .section_title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #171716;
}

/* Product Grid */
.all_products_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

/* Product Card */
.product_card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    cursor: pointer;
}

.product_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Product Image */
.product_img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Product Info */
.product_info {
    padding: 15px;
    text-align: center;
}

.product_name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #171716;
}

.product_price {
    font-size: 16px;
    font-weight: 600;
    color: #ff6a00; /* brand color for price */
}
/* Add To Cart Section */
.product_info_cart {
    margin-top: 15px;
}

.product_info_cart a {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(135deg, #ff6a00, #ff8c1a);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(255, 106, 0, 0.3);
}

/* Hover Effect */
.product_info_cart a:hover {
    background: linear-gradient(135deg, #e65c00, #ff6a00);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.45);
}

/* Active Click Effect */
.product_info_cart a:active {
    transform: scale(0.98);
}

/* Default for extra small devices (<576px) - 2 cards */
.all_products_grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

/* Medium devices (≥768px) - 3 cards */
@media (min-width: 768px) {
    .all_products_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large devices (≥992px) - 4 cards */
@media (min-width: 992px) {
    .all_products_grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* View More Button */
.view_more_btn .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6a00; /* brand orange */
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.view_more_btn .btn:hover {
    background: #e65a00; /* darker on hover */
    transform: translateY(-2px);
}


/* Discount Badge */
.discount_badgess {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6a00; /* brand orange */
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 8px;
    border-radius: 5px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


/* Add to cart icon */
.hover_cart {
    position: absolute;
    top: 12px;
    right: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.hover_cart a{
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #ff6a00;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* Hover effect */
.hover_cart a:hover{
    background:#ff6a00;
    color:#fff;
    transform: scale(1.1);
}

/* Show icon on hover */
.product_card:hover .hover_cart{
    opacity: 1;
    transform: translateY(0);
}


/* Ensure product image is positioned relative for badge */
.product_img {
    position: relative;
}

/* Product Price */
.product_price {
    font-size: 16px;
    font-weight: 600;
    color: #171716;
    margin-top: 5px;
    text-align: center;
}

/* Original Price */
.original_price {
    text-decoration: line-through;
    color: #888;
    margin-left: 8px;
    font-size: 12px;
}

/* Discounted Price */
.discounted_price {
    color: #ff6a00;
}


/* footer */

.footer {
    background: #f8f9fa; /* Footer bg */
    color: #4a4a4a;  
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #0d3b66; 
}

.footer a {
    text-decoration: none;
    color: #4a4a4a;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer a:hover {
    color: #0d6efd;  
    padding-left: 4px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #e9ecef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
    font-size: 18px;
}

.social-icons a:hover {
    background: #ff6a00;
    color: #fff;
}

.payment-badge span {
    display: inline-block;
    background: #e9ecef;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-right: 6px;
    margin-bottom: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

/* Hover Effect */
.payment-badge span:hover {
    background: #ff6a00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.25);
}

.bottom-bar {
       border-top: 1px solid #dee2e6;
    color: #4a4a4a;
    margin-top: 40px;
    padding-top: 15px;
    font-size: 14px;
}

.scroll-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: #ff5c00; /* Orange accent */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}


/* mobile_footer part */
/* ================= Mobile Bottom Nav ================= */
.mbl-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 8px 0 10px 0;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 20px 20px 0 0; /* Premium Rounded Corner */
}

.mbl-nav-item {
    text-align: center;
    color: #8E8E93; /* standard grey */
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
}

.mbl-nav-item i {
    font-size: 22px;
    display: block;
    transition: transform 0.3s ease;
}

/* Active State Design */
.mbl-nav-item.active {
    color: #ff5a00;
}

.mbl-nav-item.active i {
    transform: translateY(-3px);
}

/* Central Cart Styling */
.mbl-nav-item-cart {
    display: flex;
    justify-content: center;
    position: relative;
}

.mbl-cart-circle {
    background: linear-gradient(135deg, #ff5a00 0%, #ff8c4b 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: -30px; /* Floating effect */
    box-shadow: 0 8px 20px rgba(255, 90, 0, 0.4);
    border: 4px solid #fff;
    position: relative;
    animation: cartPulse 2s infinite; /* Premium Animation */
}

.mbl-cart-circle i {
    font-size: 24px;
}

.mbl-cart-count {
    position: absolute;
    top: -15px;
    right: -5px;
    background: #333;
    color: #fff;
    font-size: 14px;
    min-width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Premium Animations */
@keyframes cartPulse {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(255, 90, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 12px 25px rgba(255, 90, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 8px 20px rgba(255, 90, 0, 0.4); }
}

/* Specific Height for Body to prevent content overlapping */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
    }
}


/* footer_category_drower */

/* Drawer Base Styles */
.category-drawer {
    position: fixed;
    top: 0;
    left: -100%; 
    width: 75%;  
    max-width: 320px;
    height: 100%; 
    height: 100dvh;
    
    background: #fff;
    z-index: 10001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.category-drawer.open {
    left: 0; 
}

/* Header Section */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #fdfdfd;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.header-left i { color: #ff5a00; }

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
}

/* Body & List Section */
.drawer-body {
    flex: 1;
    overflow-y: auto; 
    padding-bottom: 20px;

    -webkit-overflow-scrolling: touch;
}
.category-list {
    list-style: none;
    padding: 0;
}
/* ================= Category List Hover effect ================= */
.category-list li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #444; /* Standard Grey */
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #f9f9f9;
    
    /* Smooth transition for premium feel */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Important for effect to not overflow */
    position: relative;
    overflow: hidden;
}

/* Icons styling - will change on hover/active */
.category-list li a i {
    width: 20px;
    font-size: 16px;
    color: #888; /* Standard icon color */
    transition: all 0.3s ease;
}

/* Mobile & Touch-Hold Active State - Premium Look */
.category-list li a:active,
.category-list li a:focus {
    /* Subtle background change */
    background-color: #fdf2e9; 
    
    /* Left border accent */
    border-left: 4px solid #ff5a00;
    
    /* Text color change to primary */
    color: #ff5a00;
}

/* Icon change on active state */
.category-list li a:active i,
.category-list li a:focus i {
    /* Optional: scale or rotate slightly for dynamic feel */
    transform: translateX(3px) scale(1.1);
    color: #ff5a00;
}

/* Subtle ripple effect (Optional - only works if you want) */
.category-list li a::after {
    content: "";
    background: rgba(255, 90, 0, 0.1);
    display: block;
    position: absolute;
    border-radius: 50%;
    padding-top: 100%;
    padding-left: 100%;
    margin-top: -50%;
    margin-left: -50%;
    opacity: 0;
    transition: all 0.8s;
}

.category-list li a:active::after {
    padding-top: 0;
    padding-left: 0;
    margin-top: 0;
    margin-left: 0;
    opacity: 1;
    transition: 0s;
}
/* Brand section */
.brand_section {
    background: #fff;
}

.brand_logo_item {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 14px 10px;
    transition: all 0.25s ease;
}

.brand_logo_item img {
    width: 95px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 8px;
}

.brand_logo_item p {
    margin: 0;
    font-size: 13px;
    color: #202020;
    font-weight: 600;
    text-align: center;
}

.brand_logo_item:hover {
    border-color: #ff6a00;
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.12);
}
