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

</style > * {
    margin: 0px;
    padding: 0px;
    outline: 0px;
}

img {
    border: 0px;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

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

a {
    padding: 0;
    margin: 0;
    text-decoration: none;
}


body {

    font-family: "Oswald", sans-serif;
    font-family: "Open Sans", sans-serif;
}

/*header top start*/

.header_top {
    background: #000;
    padding: 12px 0;
    font-size: 14px;
}

.header_top_left {
    color: #fff;
    font-size: 14px;
    gap: 6px;
}

.header_top_left i {
    color: #25D366;
    font-size: 16px;
}

.header_top_social {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.header_top_social li {
    display: inline-block;
}

.header_top_social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
    font-size: 13px;
}

.header_top_social li a:hover {
    background: #f97316;
    color: #fff;
}

/*header top end*/
/* Header part start*/

/*
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
*/



.header_part {
    background: #fff;
    padding: 0px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}


.header_logu img {
    max-width: 110px;
}


.header_search {
    position: relative;
    width: 100%;
}

.header_search input {
    width: 100%;
    padding: 10px 45px 10px 15px;
    border: none;
    border-radius: 25px;
    background: #f1f5f9;
    font-size: 15px;
    outline: none;
    border: 1px solid #000;
}

.header_search::after {
    content: "\f002";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #475569;
    cursor: pointer;
}

/* Wishlist + Cart */
.header_middle a {
    position: relative;
    margin: 0 8px;
    color: #fff;
    font-size: 18px;
    background: #334155;
    padding: 8px 10px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.header_middle a:hover {
    background: #3b82f6;
}

.header_middle a::after {
    content: attr(data-count);
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
    display: none;
}

.header_middle a[data-count]:not([data-count="0"])::after {
    display: inline-block;
}


.header_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}


.login-btn {
    background: #f97316;
    padding: 6px 14px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
}

.login-btn:hover {
    background: #ea580c;
}

/* Toggle */
.menu-toggle {
    background: #334155;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.menu-toggle:hover {
    background: #3b82f6;
}


@media (max-width: 768px) {
    .header_middle {
        justify-content: center;
        flex: 1;
    }

    .login-btn {
        display: none !important;
    }
}

/* Header part end*/

/* nav_part start*/


.nav_part {
    background: #383b3f;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); */
}

.nav_item{
padding: 0;
}

.nav_item .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav_item .menu > li {
    position: relative;
}

.nav_item .menu > li > a {
    display: block;
    padding: 12px 8px;
    font-size: 18px;
    font-weight: 500;
    color: #f1f5f9;
    text-decoration: none;
    transition: 0.3s ease;
}

.nav_item .menu > li > a:hover {
    color: #eb1637;
}


.nav_item .menu > li.has-submenu > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 6px;
    font-size: 18px;
}



.nav_item .menu > li .sub_nav_item {
    position: absolute;
    top: 100%;
    left: -30px;
    background: #f1f1f1;
    min-width: 180px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 999;
    padding: 0;
    margin: 0;
    overflow: hidden;
}


.nav_item .menu > li .sub_nav_item li {
    width: 100%;
    border-top: 1px solid #ddd;
    list-style: none;
    margin: 0;
    padding: 0;

}


.nav_item .menu > li .sub_nav_item li:first-child {
    border-top: none;
}


.nav_item .menu > li .sub_nav_item li a {
    display: block;
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f1f1f1;
}


.nav_item .menu > li .sub_nav_item li a:hover {
    background: #3b82f6;
    color: #fff;
}


.nav_item .menu > li.has-submenu:hover > .sub_nav_item {
    display: flex;
}

/* nav mobile start*/
.offcanvas.offcanvas-start{
    top: 0;
  left: 0;
  width: 50%;
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}


/* Sidebar Menu Container */
.nav_item {

  font-family: 'Roboto', sans-serif;
}

.wishlist {
    position: relative;
    display: inline-block;
}
#wishlist-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: red;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
}


/* Main Menu */
.mobile_menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile_menu > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.mobile_menu > li > a {
  display: block;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.mobile_menu > li > a:hover {
  background: #3b82f6;
  color: #fff;
  padding-left: 20px; 
}

/* Submenu */
.mobile_sub_nav_item {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f8fafc;
  border-radius: 6px;
  display: none;
  position: relative;
}

.mobile_sub_nav_item li a {
  display: block;
  padding: 10px 25px;
  font-size: 14px;
  color: #475569;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile_sub_nav_item li a:hover {
  background: #3b82f6;
  color: #fff;
  padding-left: 30px;
}

/* Show submenu on hover */
.mobile_menu > li.has-submenu:hover > .mobile_sub_nav_item {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Arrow indicator */
.mobile_menu > li.has-submenu > a::after {
  content: "\25B6"; /* Right arrow ▸ */
  float: right;
  font-size: 12px;
  margin-top: 4px;
  transition: transform 0.3s ease;
}

.mobile_menu > li.has-submenu:hover > a::after {
  transform: rotate(90deg); /* rotate arrow down */
}

/* Small animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* nav mobile end*/




/*banner part start*/
.banner_part {
    /*    margin-top: 100px;*/
}

.banner_image_item {
    width: 100%;
    height: 400px;
}

.banner_image_item img {
    width: 100%;
    height: 100%;
}

.banner_image .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
}

.banner_image .owl-dots .owl-dot {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fff;
    margin: 0px 5px;
    border: 1px solid #000;
}

.banner_image .owl-dots .owl-dot.active {
    background: #000;
}

.arrow_lf {
    height: 50px;
    width: 50px;
    border-radius: 30%;
    font-size: 25px;
    line-height: 50px;
    color: #000;
    border: 1px solid #fff;
    position: absolute;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}

.arrow_lf:hover {
    background: #fff;
}

.arrow_rt {
    height: 50px;
    width: 50px;
    border-radius: 30%;
    font-size: 25px;
    line-height: 50px;
    color: #000;
    border: 1px solid #fff;
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}

.arrow_rt:hover {
    background: #fff;
}



@media (max-width: 768px) {
    .banner_image_item {
        width: 100%;
        height: 300px;
    }

    .banner_image_item img {
        width: 100%;
        height: 100%;
    }

    .banner_image .owl-dots .owl-dot {
        height: 15px;
        width: 15px;
        border-radius: 50%;
        background: #fff;
        margin: 0px 5px;
        border: 1px solid #000;
    }

    .arrow_lf {
        height: 30px;
        width: 30px;
        border-radius: 30%;
        font-size: 15px;
        line-height: 30px;
        color: #000;
        border: 1px solid #fff;
        position: absolute;
        left: 2%;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.4s;
    }

    .arrow_rt {
        height: 30px;
        width: 30px;
        border-radius: 30%;
        font-size: 15px;
        line-height: 30px;
        color: #000;
        border: 1px solid #fff;
        position: absolute;
        right: 2%;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.4s;
    }

}

/*category_part start*/

.commom_heading h3 {
    font-size: 22px;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    color: #000;

}

.category_item_img {
    width: 200px;
    height: 200px;
    background: #f1f1f1;
    border-radius: 12px;
    padding: 7px;
    border: 1px solid #a3a3a3;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category_item_img img {
    width: 100%;
    height: 100%;

    border-radius: 12px;
    display: block;
}

.category_item_img a {
    font-size: 13px;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    text-transform: capitalize;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    background: #EA580C;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category_item_img a:hover {
    background: #000;
    color: #fff;
}

.arrow_lf_ct {
    font-size: 25px;
    color: #000;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}


.arrow_rt_ct {
    font-size: 25px;
    color: #000;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;

}

@media (max-width: 768px) {
    .category_item_img {
        width: 130px;
        height: 140px;
        background: #f1f1f1;
        border-radius: 12px;
        padding: 4px;
        border: 1px solid #a3a3a3;
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .category_item_img a {
        font-size: 8px;
        font-weight: 400;
        font-family: "Oswald", sans-serif;
        text-transform: capitalize;
        color: #fff;
        padding: 5px;
        border-radius: 8px;
        background: #EA580C;
        text-align: center;
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .arrow_lf_ct {
        font-size: 25px;
        color: #000;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.4s;
    }


    .arrow_rt_ct {
        font-size: 25px;
        color: #000;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.4s;

    }
}

/*category_part end*/
/*product_part start*/

.procommom_heading h3 {
    font-size: 22px;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    color: #000;

}

.procommom_heading a {
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    padding: 5px 15px;
    background: #EA580C;
    border: none;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}



.product_item {}

.product_card {
    width: 220px;
    height: 400px;
    border: none;
    border-radius: 15px;
    margin: 0px 10px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;

}

.product_card:hover {
    border: 1px solid #000;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
}

.product_img {
    width: calc(100% - 20px);
    height: 280px;
    margin: 10px auto;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product_img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease, transform 0.5s ease-in-out;

}


.product_card:hover .product_img img {
    transform: scale(1.12);
}

.product_img .hover_img {
    opacity: 0;
    z-index: 1;
}

.product_img .main_img {
    opacity: 1;
    z-index: 2;
}

.product_card:hover .product_img .hover_img {
    opacity: 1;
    transform: scale(1.12);
}

.product_card:hover .product_img .main_img {
    opacity: 0;
}

.product_offer {
    position: absolute;
    top: 4px;
    left: 2px;
    background: #EA580C;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.product_offer span {
    font-weight: 500;
}

.product_details {
    padding: 0px 12px;
    text-align: center;
}

.product_details h5 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-family: "Oswald", sans-serif;
    line-height: 1.4;
}

.product_price {
    margin-bottom: 10px;
}

.product_new_price {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-right: 8px;
}

.product_discount_price {
    font-size: 14px;
    font-weight: 500;
    color: #A7A7A7;
    text-decoration: line-through;
}

.product_btn a {
    display: inline-block;
    padding: 5px 55px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product_btn a:hover {
    color: #eb2222;
}


@media (max-width: 768px) {
    .product_card {
        width: 180px;
        height: 350px;
        border: none;
        border-radius: 15px;
        margin: 0px 10px;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

    .product_btn a {
        display: inline-block;
        padding: 5px 25px;
        background: #000;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        border-radius: 25px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
}

/*product_part end*/

/*fesature box start*/

.feature_box {
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature_box h5 {
    font-size: 18px;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
}

.feature_box p {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
}

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

.feature_box .icon {
    font-size: 40px;
    color: #EA580C;
    /* highlight color */
}

/*fesature box end*/
/*footer_top_part start*/

.footer_top_part {
    margin-top: 20px;
}

.footer_logu {
    width: 150px;
    height: 70px;
    margin: auto;
}

.footer_logu img {
    width: 100%;
    height: 100%
}




.footer_contact .footer_address ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_contact .footer_address ul li {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer_contact .footer_address ul li span {
    margin-right: 10px;
    color: #f97316;
    font-size: 18px;
    flex-shrink: 0;
}

.footer_contact .footer_address ul li:hover {
    color: #5e6080;
    transform: translateX(5px);
}

.footer_menu {

    padding: 40px 20px;
    border-radius: 10px;
}

.footer_service {
    margin-bottom: 25px;
}

.common_footer_heading h5 {
    font-size: 16px;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 15px;
    position: relative;
}

.common_footer_heading h5::after {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    background: #f97316;
    margin-top: 5px;
    border-radius: 5px;
}

.common_footer_heading ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.common_footer_heading ul li {
    margin-bottom: 10px;
}

.common_footer_heading ul li a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.common_footer_heading ul li a:hover {
    color: #5e6080;
    padding-left: 5px;
}

.common_footer_heading ul.d-flex {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.common_footer_heading ul.d-flex li {
    display: inline-block;
}

.common_footer_heading ul.d-flex li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f97316;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.common_footer_heading ul.d-flex li a:hover {
    background: #111827;
    color: #fff;
}

.footer_bottom {
    background: #111827;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_bottom p {
    margin: 0;
    font-size: 14px;
    color: #9ca3af;
}

.footer_bottom_links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer_bottom_links li a {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer_bottom_links li a:hover {
    color: #f97316;
}



/*footer_top_part end*/

/*product details page*/

.breadcrumb_part {
    background-color: #f1f1f1;
    padding: 15px 0;

}

.breadcrumb_cont p {
    margin: 0px 10px;
    font-size: 18px;
    color: #555;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
}

.breadcrumb_cont p span {

    font-size: 16px;
    color: #555;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
}

.breadcrumb_cont p span:last-child {

    font-size: 14px;
    color: #555;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
}

.breadcrumb_cont p a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.breadcrumb_cont p a:hover {
    color: #0056b3;
}

/*product_details_part start*/

.small_item_img {
    width: 90px;
    height: 90px;
    margin: 5px;
}

.small_item_img img {
    width: 100%;
    height: 100%;
}

.big_item_img {
    width: 100%;
    height: 500px;
    background: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.big_item_img img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    cursor: crosshair;
}

.product_dtls {
    background: #f1f1f1;
    border-radius: 15px;
    padding: 15px;
}

.pro_dtl_name h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    text-transform: capitalize;
    color: #000;
}

.pro_dtl_price .old_price {
    font-size: 17px;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    text-transform: capitalize;
    color: #808080;
    text-decoration: line-through;
}

.pro_dtl_price .new_price {
    font-size: 19px;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    text-transform: capitalize;
    color: #c41717;
    margin-left: 10px;
}

.dtls_colour {
    margin: 0px 5px;
}

.dtls_whatsapp a p {
    padding: 10px 0px;
    border: 1px solid #21aa41;
    color: #21aa41;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    background: #fff;
    transition: 0.4s;
}

.dtls_whatsapp a p:hover {
    background: #f1f1f1;
    font-size: 18px;
    font-weight: 500;
}

.delevary_charge {


    margin-top: 15px;

}

.delevary_charge p {

    color: #1d211e;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    margin: 5px 0px;
    transition: 0.4s;
}

.dtls_tag ul li {
    padding: 3px;
    font-size: 14px;
    font-weight: 400;
    background: #f1f1f1;
    margin: 0px 5px;
}

.dtls_tag ul li a {
    color: #000;
}

.description_item h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 6px 10px;
    color: #000;
    background: #f1f1f1;
}

.tab_pane h5 {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
}

/*product_details_part end*/


/*gategory page*/
.category_top {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    border-radius: 6px;
    margin-bottom: 20px;
}

.category_top .items_count {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: "Oswald", sans-serif;
}

.shortBy h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    margin-right: 8px;
    color: #555;
    font-family: "Oswald", sans-serif;
}

.shortBy .sort_select {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.shortBy .sort_select:hover {
    border-color: #000;
}


.cate_page_sbar {
    border: 1px solid #000;
    background: #f1f1f1;
}

.cate_page_sbar h4 {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
    font-family: "Oswald", sans-serif;
    border-bottom: 1px solid #000;
    padding: 15px;
    text-align: start;
    margin: 0;
}

.cate_page_sbar h4 span i {
    font-size: 24px;
    margin-right: 10px;
}

.cate_pg_category {
    background: #fff;
    border-bottom: 1px solid #000;
}

.cate_pg_category h5 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
    font-family: "Oswald", sans-serif;
    padding: 15px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.cate_pg_category .cate_list {
    display: none;
    padding: 0px 15px;
}
.cate_pg_category .cate_list label {
    display: block;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
     padding: 10px 0px;
}

.cate_pg_color {
    background: #fff;
    border-bottom: 1px solid #000;
}

.cate_pg_color h5 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
    font-family: "Oswald", sans-serif;
    padding: 15px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.cate_pg_color .color_list {
    display: none; 
    padding: 10px 15px;
}

.cate_pg_color .color_list label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 15px;
    cursor: pointer;
}

.cate_pg_color .color_list input[type="checkbox"] {
    margin-right: 5px;
    cursor: pointer;
}

.cate_pg_color .color_list .color-circle {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
   
}
.cate_pg_size {
    background: #fff;
   
}

.cate_pg_size h5 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
    font-family: "Oswald", sans-serif;
    padding: 15px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.cate_pg_size .size_list {
    display: none; 
    padding: 10px 15px;
}

.cate_pg_size .size_list label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 15px;
    cursor: pointer;
}

.cate_pg_size .size_list input[type="checkbox"] {
    cursor: pointer;
}

.cate_pg_size .size_list .size-box {
    display: inline-block;
    min-width: 28px;
    height: 28px;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    background: #f8f8f8;
}

.product_cards {
    width: 200px;
    height: 400px;
    border: none;
    border-radius: 15px;
    margin: 0px 10px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;

}

.product_cards:hover {
    border: 1px solid #000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product_img {
    width: calc(100% - 20px);
    height: 280px;
    margin: 10px auto;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product_img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease, transform 0.5s ease-in-out;

}


.product_cards:hover .product_img img {
    transform: scale(1.12);
}

.product_img .hover_img {
    opacity: 0;
    z-index: 1;
}

.product_img .main_img {
    opacity: 1;
    z-index: 2;
}

.product_cards:hover .product_img .hover_img {
    opacity: 1;
    transform: scale(1.12);
}

.product_cards:hover .product_img .main_img {
    opacity: 0;
}

.product_offer {
    position: absolute;
    top: 4px;
    left: 2px;
    background: #EA580C;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.product_offer span {
    font-weight: 500;
}

/* Wishlist Icon Style */
.wishlist_icon {
    position: absolute; 
    top: 20px;
    right: 20px; 
    background-color: rgba(255, 255, 255, 0.9); 
    border-radius: 50%; 
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10; 
}

.wishlist_icon i {
    font-size: 16px;
    color: #ff4d6d;   
    transition: transform 0.3s, color 0.3s;
}

/* Hover effect */
.wishlist_icon:hover {
    background-color: #ff4d6d;
}

.wishlist_icon:hover i {
    color: #fff;
    transform: scale(1.2);
}





.product_details {
    padding: 0px 12px;
    text-align: center;
}

.product_details h5 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-family: "Oswald", sans-serif;
    line-height: 1.4;
}

.product_price {
    margin-bottom: 10px;
}

.product_new_price {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-right: 8px;
}

.product_discount_price {
    font-size: 14px;
    font-weight: 500;
    color: #A7A7A7;
    text-decoration: line-through;
}

.products_btns a {
    display: inline-block;
    padding: 5px 30px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product_btn a:hover {
    color: #eb2222;
}

.stick_style{
position: sticky;
  top: 0;
    z-index: 999;
}


@media (max-width: 768px) {
    .product_cards {
        width: 180px;
        height: 350px;
        border: none;
        border-radius: 15px;
        margin: 0px 10px;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

    .product_btn a {
        display: inline-block;
        padding: 5px 25px;
        background: #000;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        border-radius: 25px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
}



/*sub category*/

/* Default hide sidebar on mobile */
.cate_page_sbar {
    display: block; /* default for desktop */
}

@media (max-width: 767px) {
    .cate_page_sbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        background: #fff;
        padding: 20px;
        overflow-y: auto;
        transition: 0.3s ease-in-out;
        z-index: 9999;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    }

    .cate_page_sbar.active {
        left: 0;
    }
}
/**/

/*cart blade*/
#clearCartBtn {
    font-weight: bold;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.2s ease-in-out;
}

#clearCartBtn:hover {
    background-color: #dc3545;
    color: #fff;
    transform: scale(1.05);
}
.cart_heading h3 {
    margin: 10px 0px;
    font-size: 20px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.cart_product_img {
    width: 90px;
}

.cart_product_img img {
    width: 100%;
}

.cart_product_name h5 {
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    margin-top: 45px;
    margin-left: 20px;
    color: #219DD7;
}

.cart_product_name p {
    font-size: 13px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    margin-left: 20px;
    color: #818181;
}

.cart_product_cancel {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-left: 25px;
    border: 1px solid #808080;
}

.cart_product_cancel i {
    font-size: 18px;
    color: #000;
}

.cart_product_cancel:hover {
    background: #7ff1fa;
}
.input_group{
    width: 120px; 
    margin: 0 auto;
}
@media (max-width: 576px) {
    .cart_product_img {
        margin-top: 10px;
        width: 100px;
    }

    .cart_product_img img {
        width: 100%;
    }
    .cart_product_name h5 {
    font-size: 12px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    margin-top: 10px;
    margin-left: 5px;
    color: #219DD7;
}
    .cart_product_name p {
    font-size: 10px;
    font-weight: 300;
    font-family: "Open Sans", sans-serif;
    margin-left: 5px;
    color: #818181;
}
    .cart_product_cancel {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-left: 5px;
    border: 1px solid #808080;
}

.cart_product_cancel i {
    font-size: 13px;
    color: #000;
}
    .input_group{
    width: 120px; 
    margin: 0 auto;
}
}

.card-title {
    font-weight: 600;
}

.list-group-item span {
    min-width: 100px;
    text-align: right;
}


/* wishlist blade */


    .wishlist-container {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 15px;
    }

    .wishlist-item {
      background: #fff;
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      display: flex;
      align-items: flex-start;
      transition: transform 0.2s;
      gap: 15px;
    }

    .wishlist-item:hover {
      transform: scale(1.01);
    }

    .wishlist-img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 6px;
      flex-shrink: 0;
    }
 .wishlist-img img{
    width: 100%;
    height: 100%;
 }
    .wishlist-details {
      flex: 1;
    }

    .wishlist-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .wishlist-price {
      font-size: 1rem;
      font-weight: 500;
      color: #e63946;
    }

    .wishlist-old-price {
      text-decoration: line-through;
      color: #6c757d;
      font-size: 0.9rem;
      margin-left: 8px;
    }

    .wishlist-stock {
      font-size: 0.9rem;
      color: green;
      margin: 5px 0 10px;
    }

    .wishlist-actions {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-end;
    }

    .wishlist-actions button {
      margin-bottom: 8px;
    }

    .remove-btn {
      background: none;
      border: none;
      color: #dc3545;
      font-size: 1.2rem;
      cursor: pointer;
      transition: color 0.2s;
    }

    .remove-btn:hover {
      color: #a71d2a;
    }

    /* ✅ Responsive for Mobile */
    @media (max-width: 768px) {
      .wishlist-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .wishlist-img {
        width: 100%;
        max-width: 250px;
        height: auto;
        margin-bottom: 10px;
      }

      .wishlist-details {
        width: 100%;
      }

      .wishlist-actions {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
        width: 100%;
      }

      .wishlist-actions button {
        margin-bottom: 0;
        flex: 1;
      }
    }
