@charset "UTF-8";
/* common css start  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

ol,
ul {
    list-style: none;
}

img {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", serif;
}

body {
    font-size: 16px;
    color: #505050;
    line-height: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    background: #f3f5f6;
}

.common_card_header {
    background: transparent;
    position: relative;
    border: 0px;
    margin-bottom: 25px;
}
.common_card_header h2 {
    font-size: 20px;
    color: #232323;
    font-weight: 600;
    text-transform: capitalize;
    font-family: "Montserrat", serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.common_card_header a {
    color: #e31577;
    font-size: 16px;
    white-space: nowrap;
}
.common_card_header::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 15%;
    background: #e31577;
    left: 15px;
    bottom: -1px;
}

.latestProduct::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 15%;
    background: #e31577;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
}

.cbtn {
    white-space: nowrap !important;
    font-size: 14px;
    background: white;
    color: #e31577;
    border: 1px solid #e31577;
    -webkit-transition: all linear 0.4s 0s;
    -moz-transition: all linear 0.4s 0s;
    -o-transition: all linear 0.4s 0s;
    transition: all linear 0.4s 0s;
}
.cbtn:hover {
    color: white;
    background: #e31577;
    -webkit-transition: all linear 0.4s 0s;
    -moz-transition: all linear 0.4s 0s;
    -o-transition: all linear 0.4s 0s;
    transition: all linear 0.4s 0s;
}

.cbtn1 {
    font-size: 14px;
    background: white;
    color: #e31577;
    border: 1px solid #e31577;
    border-radius: 20px !important;
    -webkit-transition: all linear 0.4s 0s;
    -moz-transition: all linear 0.4s 0s;
    -o-transition: all linear 0.4s 0s;
    transition: all linear 0.4s 0s;
}
.cbtn1:hover {
    color: white;
    background: #e31577;
    -webkit-transition: all linear 0.4s 0s;
    -moz-transition: all linear 0.4s 0s;
    -o-transition: all linear 0.4s 0s;
    transition: all linear 0.4s 0s;
}

.cbtnf {
    background-color: #e31577;
    color: white;
}

.btn-primary {
    background: #e31577;
    border-color: #e31577;
    -webkit-transition: all linear 0.4s 0s;
    -moz-transition: all linear 0.4s 0s;
    -o-transition: all linear 0.4s 0s;
    transition: all linear 0.4s 0s;
}
.btn-primary:hover {
    -webkit-transition: all linear 0.4s 0s;
    -moz-transition: all linear 0.4s 0s;
    -o-transition: all linear 0.4s 0s;
    transition: all linear 0.4s 0s;
    background: transparent;
    color: #e31577;
    border-color: #e31577;
}

.product_card {
    padding: 10px;
    margin-bottom: 15px;
    -webkit-transition: all linear 0.4s 0s;
    -moz-transition: all linear 0.4s 0s;
    -o-transition: all linear 0.4s 0s;
    transition: all linear 0.4s 0s;
}
@media (max-width: 767px) {
    .product_card {
        margin: 0px;
    }
}
.product_card::after {
    content: "";
}
.product_card a {
    width: 100%;
    display: inline-block;
}
.product_card .img__card img {
    -webkit-transition: all linear 0.4s 0s;
    -moz-transition: all linear 0.4s 0s;
    -o-transition: all linear 0.4s 0s;
    transition: all linear 0.4s 0s;
    height: 100%;
    object-fit: cover;
}
.product_card .product_tittle {
    padding: 10px;
}
.product_card .product_tittle p {
    font-size: 16px;
    color: #232323;
    overflow: hidden;
}
.product_card .product_tittle p:hover {
    color: #e31577;
}
.product_card .product_tittle .price {
    color: #e31577;
    padding-top: 5px;
}
.product_card .product_tittle .price del {
    color: #969696;
    font-size: 14px;
}
@media (max-width: 767px) {
    .product_card .btn-group {
        flex-direction: column;
        row-gap: 5px;
    }
}
.product_card .btn-group a {
    white-space: nowrap;
}
@media (max-width: 767px) {
    .product_card .btn-group a {
        font-size: 14px;
        line-height: 18px;
        border-radius: 5px !important;
        margin: 0px !important;
    }
}
@media (max-width: 991px) {
    .product_card .btn-group a {
        margin-left: 0px !important;
        padding-left: 5px;
        padding-right: 0px;
        font-size: 12px;
    }
}
.product_card:hover {
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s,
        color 0.3s, opacity 0.3s;
    box-shadow: 0 30px 40px 0 rgba(0, 0, 0, 0.2);
}
.product_card:hover img {
    transform: scale(1.05);
}

/* common css end */
/* header css start */
header {
    background: white;
    color: #232323;
    padding: 10px 0px;
}
header a {
    color: #505050;
}
@media (max-width: 767px) {
    header a {
        font-size: 12px;
    }
}

.auth_link {
    font-weight: 700 !important;
}

.breadcrumb {
    font-size: 18px;
    color: #505050;
    margin: 0px;
    padding: 15px 0px;
}
.breadcrumb a {
    color: #e31577;
}

#fixed-total-cart {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;

    /* Explicit width and min-height to prevent layout shift */
    /* width: 70px;     //  adjust as needed */
    /* height: auto; // adjust as needed */

    border: 2px solid #e31577;
    border-right: none;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 0;

    /* Only transition necessary properties */
    transition: background-color 0.3s, transform 0.3s;

    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);

    /* Ensure content inside has min width to prevent number jump */
    font-size: 14px;
    text-align: center;
}




#fixed-total-cart .cart-icon-btn {
    background-color: #343a40;
    /* Dark background for the icon area */
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    justify-content: center;
    border-top-left-radius: 6px;
}
@media (max-width: 767px) {
    #fixed-total-cart .cart-icon-btn {
        display: flex;
        flex-direction: column;
        padding: 10px;
    }
}

#fixed-total-cart .cart-icon-btn .item-count {
    color: white;
    font-weight: bold;
}

#fixed-total-cart .cart-price {
    background-color: #e31577;
    color: white;
    padding: 0px 15px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    border-bottom-left-radius: 6px;
}
@media (max-width: 767px) {
    #fixed-total-cart .cart-price {
        padding: 0px 5px;
        font-size: 10px;
    }
}

/* Circular Count Badge */
#fixed-total-cart .item-count-badge {
    position: absolute;
    top: 2px;
    right: 5px;
    background-color: #e31577;
    color: white;
    font-size: 10px;
    font-weight: bold;
    line-height: 18px;
    width: 18px;
    text-align: center;
    border-radius: 50%;
    text-align: center;
    /* Border for contrast against light backgrounds if container had one */
    border: 2px solid var(--cart-bg);
}

.new-footer {
    background-color: #1a1a1a;
    /* Dark background */
    color: #ffffff;
    /* White text */
    padding-top: 50px;
    font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
    .new-footer {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .new-footer .footer-description {
        margin: auto;
    }
}

.new-footer h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.new-footer p,
.new-footer a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    transition: color 0.2s;
}

.new-footer a:hover {
    color: #e31577;
    /* Red Hover color accent */
    text-decoration: none;
}

.new-footer .footer-logo {
    max-width: 150px;
    margin-bottom: 25px;
}

/* Styling for Social Icons */
.new-footer .social-icons {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}
@media (max-width: 767px) {
    .new-footer .social-icons {
        justify-content: center;
    }
}

.new-footer .social-icons li {
    margin-right: 15px;
}

.new-footer .social-icons li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
}

.new-footer .social-icons li a:hover {
    background-color: #e31577;
    border-color: #e31577;
    color: #ffffff;
}

/* Styling for Link Lists */
.new-footer .use_link {
    list-style: none;
    padding: 0;
}

.new-footer .use_link li {
    margin-bottom: 8px;
}

/* Styling for Sign Up Form */
.new-footer .signup-text {
    margin-bottom: 15px;
}

.new-footer .btn-signup {
    background-color: #e31577;
    /* Red button color */
    border-color: #e31577;
    color: white;
    font-weight: 600;
    padding: 7px 15px;
    /* Ensures button corners match input corners */
    border-radius: 0 4px 4px 0 !important;
}

.new-footer .input-group .form-control {
    height: 40px;
    border-radius: 4px 0 0 4px;
    border: 1px solid #333;
    background-color: #333;
    color: white;
}

/* Styling for Bottom Bar */
.new-footer .bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 40px;
}

.new-footer .bottom-bar a {
    color: rgba(255, 255, 255, 0.5);
}

.new-footer .bottom-bar a:hover {
    color: white;
}

.addtocard {
    clip-path: polygon(52% 10%, 100% 0, 100% 80%, 50% 90%, 0 80%, 0% 0%);
    background: #e31577;
    border: 0px;
    line-height: 50px;
    color: white;
    font-size: 25px;
    border-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
@media (max-width: 767px) {
    .addtocard {
        font-size: 22px;
        line-height: 34px;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
}
.addtocard:hover {
    background-color: #eb80b3;
}

.polygon-shape {
    clip-path: polygon(52% 10%, 100% 0, 100% 80%, 50% 90%, 0 80%, 0% 0%);
    border-radius: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* --- 2. Quantity Selector (Light Green) --- */
.quantity-selector-container {
    background-color: #e3157769;
    color: #e31577;
    width: 100%;
    padding: 10px 10px 20px 10px;
}
@media (max-width: 767px) {
    .quantity-selector-container {
        padding: 8px 8px 15px 8px;
    }
}

.quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #e31577;
    color: #e31577;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
}
@media (max-width: 767px) {
    .quantity-btn {
        height: 26px;
        width: 26px;
        font-size: 15px;
    }
}

.quantity-display {
    font-size: 24px;
    font-weight: 500;
    user-select: none;
}
@media (max-width: 767px) {
    .quantity-display {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .pro_col {
        padding: 4px;
    }
}

.messanger_bg {
    background-color: #0084ff !important;
    color: white;
    border: #0084ff;
}

.number_bg {
    background-color: #00e1ff !important;
    color: white;
    border: #00e1ff;
}

.whatsapp_bg {
    background-color: #25d366 !important;
    color: white;
    border: #25d366;
}

@media (max-width: 767px) {
    .desktop_logo {
        display: none;
    }
}

.mobile_logo {
    display: none;
}
@media (max-width: 767px) {
    .mobile_logo {
        display: block;
    }
    .mobile_logo img {
        height: 30px !important;
    }
}

#search_bar {
    padding: 5px 0px;
    box-shadow: 0px 0px 15px #00000030;
    background: #e31577;
}
#search_bar .main_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#search_bar .category_dropdown .btn {
    background: white;
    color: #e31577;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
}
#search_bar .category_dropdown .btn i {
    font-size: 20px;
}
#search_bar .category_dropdown .btn::after {
    display: none !important;
}
#search_bar .dropdown-toggle.user_nav::after {
    display: none;
}
#search_bar .logo_img {
    height: 70px;
    padding: 5px 0px;
    max-width: 150px;
}
@media (max-width: 767px) {
    #search_bar .logo_img {
        height: 45px;
    }
}
#search_bar form {
    width: 60%;
    position: relative;
}
@media (max-width: 767px) {
    #search_bar form {
        display: none;
    }
}
#search_bar form input {
    width: 100%;
    color: #505050;
    border-radius: 25px;
    line-height: 25px;
    border: 1px solid #e31577;
    padding: 10px;
}
@media (max-width: 575px) {
    #search_bar form input {
        display: none;
    }
}
#search_bar form button {
    position: absolute;
    top: 50%;
    right: 0px;
    font-size: 20px;
    transform: translateY(-50%);
    height: 40px;
    width: 65px;
    background: transparent;
    border: 0px;
    text-align: center;
    color: #505050;
}
@media (max-width: 575px) {
    #search_bar .user_panel {
        display: none;
    }
}
#search_bar .cart_count {
    position: relative;
    font-size: 18px;
}
#search_bar .cart_count span {
    font-size: 12px;
    color: white;
    position: absolute;
    top: 0px;
    right: -15px;
    font-weight: 400;
    background: #e31577;
    line-height: 20px;
    width: 20px;
    border-radius: 50%;
    text-align: center;
}
#search_bar ul li {
    padding-left: 15px;
}
@media (max-width: 575px) {
    #search_bar ul li {
        padding-left: 1px;
        padding-right: 1px;
    }
}
#search_bar ul li a {
    color: #232323;
}
#search_bar ul .auth_li {
    color: white;
}
#search_bar ul .auth_li a {
    color: white;
}
@media (max-width: 767px) {
    #search_bar ul .auth_li {
        display: none;
    }
}
@media (min-width: 768px) {
    #search_bar ul li.search {
        display: none;
    }
}
#search_bar ul li.search .btn {
    color: #505050;
    background: white;
    font-size: 18px;
    padding: 5px 10px !important;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: right;
    border-radius: 50px;
    border: 0px;
    line-height: 20px;
}
#search_bar ul li.search .btn i {
    font-size: 12px;
}
#search_bar .mobile_auth_items {
    display: none;
}
@media (max-width: 767px) {
    #search_bar .mobile_auth_items {
        display: block;
    }
}

.left_side_items {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.right_side_items {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

#search_modal form input {
    width: 100%;
    color: #505050;
    border-radius: 5px;
    line-height: 25px;
    border: 1px solid #e31577;
    padding: 10px;
}

.navbar {
    padding: 15px 0px;
}
@media (max-width: 767px) {
    .navbar {
        display: none;
    }
}
.navbar .dropdown .btn {
    background: #e31577;
    color: white;
    width: 100%;
    text-align: left;
}
.navbar .dropdown .btn:hover {
    color: rgba(255, 255, 255, 0.8);
}
.navbar .dropdown .btn i {
    font-size: 18px;
    padding-right: 10px;
}
.navbar .navbar-nav {
    padding-left: 20px;
}
.navbar .navbar-nav .nav-item {
    padding: 0px 15px;
}
.navbar .navbar-nav .nav-item .nav-link {
    color: #505050;
    font-size: 18px;
    white-space: nowrap;
}
.navbar .navbar-nav .nav-item .active {
    color: #e31577;
}
.navbar .navbar-nav .mobile_user_link {
    display: none;
}
@media (max-width: 575px) {
    .navbar .navbar-nav .mobile_user_link {
        display: block;
    }
}

.banner_slider img {
    object-fit: cover;
}

.common-banner img {
    object-fit: cover;
    width: 100%;
}

#navbarSupportedContent {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    /* hide scrollbar in old IE/Edge (optional) */
    /* WebKit browsers (Chrome, Safari, Edge Chromium) */
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #3d293373 transparent;
}
#navbarSupportedContent::-webkit-scrollbar {
    height: 5px;
}
#navbarSupportedContent::-webkit-scrollbar-track {
    background: transparent;
}
#navbarSupportedContent::-webkit-scrollbar-thumb {
    background: #505050;
    border-radius: 999px;
    box-shadow: inset 0 0 0 2px white;
    /* creates a subtle border */
    transition: background 0.2s ease;
}
#navbarSupportedContent::-webkit-scrollbar-thumb:hover {
    background: #be1263;
}

#category {
    padding: 20px 0px;
}
#category .category_slick {
    margin: 0px -10px;
}
#category .category_slick .cargory_card {
    margin: 0px 10px;
    text-align: center;
    border: 0px !important;
    overflow: hidden;
}
#category .category_slick .cargory_card img {
    border-radius: 30px;
    border: 3px solid #e31577;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 767px) {
    #category .category_slick .cargory_card img {
        height: 100px;
    }
}
#category .category_slick .cargory_card a {
    font-size: 18px;
    padding: 10px;
    display: inline-block;
    color: #232323;
}
#category .category_slick .cargory_card a:hover {
    color: #e31577;
}

#timer {
    font-family: sans-serif;
    color: #e31577;
    display: inline-block;
    text-align: center;
    font-weight: 100;
}
@media (max-width: 767px) {
    #timer {
        margin-top: 15px;
    }
}
#timer div {
    padding: 10px;
    border-radius: 3px;
    background: #e31577;
    display: inline-block;
}
@media (max-width: 991px) {
    #timer div {
        padding: 5px;
    }
}
@media (max-width: 991px) and (max-width: 767px) {
    #timer div {
        padding: 2px;
    }
}
#timer div span {
    padding: 15px;
    border-radius: 3px;
    font-size: 30px;
    font-weight: 700;
    background: white;
    display: inline-block;
}
@media (max-width: 991px) {
    #timer div span {
        padding: 5px;
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    #timer div span {
        padding: 5px;
        border-radius: 3px;
        font-size: 12px;
    }
}
#timer div .smalltext {
    padding-top: 3px;
    font-size: 20px;
    color: white;
}
@media (max-width: 767px) {
    #timer div .smalltext {
        padding: 5px;
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    #flash_sale_product .common_card_header {
        flex-direction: inherit;
    }
}

@media (max-width: 767px) {
    #flash_sale_product .card-body {
        padding-left: 0px;
        padding-right: 0px;
    }
}

#flash_sale_product .see_all {
    padding-bottom: 25px;
}
#flash_sale_product .see_all a {
    text-align: center;
    color: #e31577;
    display: inline-block;
    padding: 0px 20px;
    line-height: 30px;
    border: 1px solid #e31577;
    border-radius: 25px;
    -webkit-transition: all linear 0.4s 0s;
    -moz-transition: all linear 0.4s 0s;
    -o-transition: all linear 0.4s 0s;
    transition: all linear 0.4s 0s;
}
#flash_sale_product .see_all a:hover {
    background: #e31577;
    color: white;
    -webkit-transition: all linear 0.4s 0s;
    -moz-transition: all linear 0.4s 0s;
    -o-transition: all linear 0.4s 0s;
    transition: all linear 0.4s 0s;
}

#popular_product {
    padding: 20px 0px;
}
#popular_product .pro_banner {
    flex-basis: 20%;
    height: 100%;
}
#popular_product .pro_banner img {
    width: 100%;
    height: 100%;
}
@media (max-width: 767px) {
    #popular_product .card-body {
        padding: 0px;
    }
}
#popular_product .popular_slick {
    margin: 0px -10px;
    width: 100%;
}
@media (max-width: 575px) {
    #popular_product .popular_slick {
        margin: 0px;
    }
}
#popular_product .popular_slick .slick-slide {
    margin: 0px 10px !important;
}
@media (max-width: 767px) {
    #popular_product .popular_slick .slick-slide {
        margin: 0px 5px !important;
    }
}

.category_product {
    margin-bottom: 30px;
}
.category_product .pro_banner {
    height: 100%;
}
@media (max-width: 991px) {
    .category_product .pro_banner {
        display: none;
    }
}
.category_product .pro_banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 767px) {
    .category_product .card-body {
        padding: 0px;
        padding-right: 0px;
    }
}

@media (max-width: 767px) {
    #shop_page .catelog_category {
        margin-bottom: 10px;
    }
}

#shop_page .catelog_category .card {
    box-shadow: none;
    border: 0px;
}
#shop_page .catelog_category .card .card-header {
    padding: 0px;
    background: transparent;
}
#shop_page .catelog_category .card .card-header button {
    width: 100%;
    text-align: left;
    text-decoration: none;
    font-size: 16px;
    color: #505050;
    font-weight: 400;
    padding-right: 0px;
}
#shop_page .catelog_category .card .card-body {
    background: #f3f5f6;
    padding: 0;
    padding-left: 10px;
}
#shop_page .catelog_category .card .card-body ul {
    padding-left: 0px;
}
#shop_page .catelog_category .card .card-body ul li a {
    font-size: 16px;
    color: #505050;
    font-weight: 400;
    line-height: 37px;
    display: block;
}

#shop_page .catelog_category .list-group-item {
    padding: 10px 10px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    -webkit-transition: all linear 0.9s 0s;
    -moz-transition: all linear 0.9s 0s;
    -o-transition: all linear 0.9s 0s;
    transition: all linear 0.9s 0s;
}
#shop_page .catelog_category .list-group-item a {
    font-size: 16px;
    color: #505050;
    font-weight: 400;
}
#shop_page .catelog_category .list-group-item a i {
    font-size: 14px;
    color: gray;
    padding-right: 5px;
}
#shop_page .catelog_category .list-group-item .badge {
    color: gray;
    font-size: 12px;
    font-weight: 400;
}
#shop_page .catelog_category .list-group-item:hover .catelog_sub_category {
    opacity: 1;
    visibility: visible;
    height: 100%;
    -webkit-transition: all linear 0.6s 0s;
    -moz-transition: all linear 0.6s 0s;
    -o-transition: all linear 0.6s 0s;
    transition: all linear 0.6s 0s;
}
#shop_page .catelog_category .list-group-item:hover .cat-logo i.fas {
    transform: rotate(90deg);
    transition: transform 0.7s ease;
    -webkit-transition: all linear 0.9s 0s;
    -moz-transition: all linear 0.9s 0s;
    -o-transition: all linear 0.9s 0s;
    transition: all linear 0.9s 0s;
}
#shop_page .catelog_category .list-group-item .ps-15 {
    padding-left: 15px !important;
}

#shop_page .catelog_sub_category {
    opacity: 0;
    visibility: hidden;
    height: 0;
    -webkit-transition: all linear 0.9s 0s;
    -moz-transition: all linear 0.9s 0s;
    -o-transition: all linear 0.9s 0s;
    transition: all linear 0.9s 0s;
}

#shop_page .page-link {
    color: #e31577;
    border: 1px solid #e31577;
}

#shop_page .catelog_category .list-group-item i.fas {
    -webkit-transition: all linear 0.9s 0s;
    -moz-transition: all linear 0.9s 0s;
    -o-transition: all linear 0.9s 0s;
    transition: all linear 0.9s 0s;
}

@media (max-width: 767px) {
    #shop_page .shop_products {
        padding: 0px !important;
    }
}

#product_details .product_main_detaits {
    color: #505050;
    background: white;
    padding: 15px;
    /* Main text uses this styling and color */
}
#product_details .product_main_detaits p {
    padding-bottom: 10px;
}
#product_details .product_main_detaits p strong {
    color: #515151;
    font-weight: 600;
}
@media (max-width: 575px) {
    #product_details .product_main_detaits .category {
        padding-top: 15px;
    }
}
#product_details .product_main_detaits .mini-preview img {
    border: 1px solid #505050;
    border: 1px solid #e31577;
    margin-bottom: 8px;
}
#product_details .product_main_detaits h3 {
    color: #232323;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
}
#product_details .product_main_detaits .price {
    font-weight: 500;
    font-size: 20px;
    padding: 20px 0px;
}
#product_details .product_main_detaits .price span {
    color: #e31577;
    font-weight: bold;
}
#product_details .product_main_detaits .price del {
    font-weight: normal;
    font-size: 20px;
    margin-left: 5px;
}
#product_details .product_main_detaits .brief-description {
    /* color: $col-text; */
    color: #232323;
    padding-bottom: 15px;
    font-family: "Noto Sans Bengali", sans-serif;
}
#product_details .product_main_detaits .select-colors .color {
    display: inline-block;
    border: 1px solid grey;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    margin-right: 5px;
    background-color: black;
}
#product_details .product_main_detaits .select-colors .color.red {
    background-color: red;
}
#product_details .product_main_detaits .select-colors .color.silver {
    background-color: silver;
}
#product_details .product_main_detaits .select-colors .color.black {
    background-color: black;
}
#product_details .product_main_detaits .addBtn {
    background-color: #e31577;
    color: white;
    text-transform: uppercase;
}
#product_details .product_main_detaits .addBtn:hover {
    background-color: #b4115f;
    color: white;
}
#product_details .product_main_detaits .related-heading {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    /* color: $col-h; */
}
#product_details .product_main_detaits .related-title,
#product_details .product_main_detaits .related-price {
    color: #232323;
    font-weight: bold;
}
#product_details .product_main_detaits .additional-details {
    font-family: "Noto Sans Bengali", sans-serif;
}
#product_details .product_main_detaits .additional-details .nav-link {
    border: none;
    color: #232323;
}
#product_details .product_main_detaits .additional-details .nav-link.active {
    background-color: white;
    color: #232323;
    border: none;
    border-bottom: 4px solid #e31577;
}

#product_details .product-image {
    overflow: hidden;
}
#product_details .product-image .slider-for {
    height: 100%;
}
#product_details .product-image .slider-for .slid_img .slider_for_img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}
#product_details .product-image .slider-nav {
    margin-top: 10px;
    height: 200px;
}
#product_details .product-image .slider-nav .slick-list {
    height: 100%;
}
#product_details .product-image .slider-nav .slick-list .slick-track {
    height: 100%;
}
#product_details
    .product-image
    .slider-nav
    .slick-list
    .slick-track
    .slick-slide {
    height: 100%;
}
#product_details
    .product-image
    .slider-nav
    .slick-list
    .slick-track
    .slick-slide
    img {
    width: 100% !important;
    cursor: pointer;
    transition: 0.3s all ease;
    border: 1px solid #ccc;
    height: 100%;
    object-fit: cover;
}
#product_details
    .product-image
    .slider-nav
    .slick-list
    .slick-track
    .slick-slide
    .slick-current
    img {
    border: 2px solid #e31577;
}
#product_details
    .product-image
    .slider-nav
    .slick-list
    .slick-track
    .slick-slide
    img:hover {
    opacity: 0.7;
}
#product_details .product-image .slick-dots {
    position: absolute;
    content: " ";
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
#product_details .product-image .slick-dots li {
    display: inline-block;
    font-size: 0px;
    height: 35px;
}

#contact h2 {
    color: #232323;
    font-weight: 600;
    padding: 15px 0px;
}

.login_card {
    padding: 30px 0px;
    margin: 20px 0px;
}
.login_card h2 {
    padding-bottom: 30px;
    font-weight: 600;
}

@media (max-width: 767px) {
    #cart_page .cart_quantity {
        padding-top: 15px;
    }
}

#cart_page .cart_price_action {
    text-align: right;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 767px) {
    #cart_page .cart_price_action {
        padding-top: 15px;
    }
}
#cart_page .cart_price_action p {
    align-content: center;
}

#cart_page .delete-product.cbtn {
    height: 40px;
    color: red;
    border: 1px solid red;
}
@media (max-width: 991px) {
    #cart_page .delete-product.cbtn {
        height: 30px;
    }
}
@media (max-width: 767px) {
    #cart_page .delete-product.cbtn {
        height: 25px;
    }
}

.checkout_page .order_submit_right {
    display: none;
}
@media (max-width: 991px) {
    .checkout_page .order_submit_right {
        display: inline-block;
    }
}

.checkout_page .order_submit_left {
    display: block;
}
@media (max-width: 991px) {
    .checkout_page .order_submit_left {
        display: none;
    }
}

#user_dashboard {
    margin-bottom: 30px;
}
#user_dashboard .user_avater {
    text-align: center;
}
#user_dashboard .user_avater img {
    height: 80px;
    width: 80px;
    border-radius: 50px;
    border: 3px solid #e31577;
    padding: 5px;
    margin-bottom: 5px;
}
#user_dashboard .user_avater p {
    font-size: 18px;
    font-weight: 500px;
    text-transform: capitalize;
}
#user_dashboard .list-group {
    margin-top: 20px;
    border-radius: 0px;
}
#user_dashboard .list-group li a {
    color: #505050;
    line-height: 24px;
    font-weight: 500;
    font-family: "Montserrat", serif;
    text-transform: capitalize;
}
#user_dashboard .list-group li .active {
    color: #e31577;
}

.star {
    width: 32px;
    height: 32px;
    transition: all 0.6s;
}

#rating {
    cursor: pointer;
    display: inline-block;
}

#review-form .input-group-addon {
    min-width: 100px;
}

#review-form .btn {
    min-width: 100px;
}

#review-form input[type="text"],
#review-form textarea {
    width: 100%;
}

#review-form .form-group {
    margin-bottom: 15px;
}

#review-form .help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
}

blockquote {
    border-left: 5px solid #eeeeee;
    padding-left: 20px;
}
blockquote .footer {
    display: block;
    font-size: 80%;
}

.stars-container {
    margin-bottom: 5px;
}

#certification .certification-item .item {
    height: 450px;
}
#certification .certification-item .item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.certification-item .fancylight {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    height: 450px;
    border: 5px solid #e31577;
}

.certification-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    /* Smooth zoom on hover */
}

.certification-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.6);
    /* Blue semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.3s ease;
    z-index: 10;
    cursor: pointer;
}

.certification-item .fancylight:hover .certification-overlay {
    opacity: 1;
    /* Show on hover */
}

.certification-overlay i {
    color: #ffffff;
    font-size: 2.5rem;
    transform: scale(0.5);
    /* Start small */
    transition: transform 0.3s ease;
}

.certification-item .fancylight:hover .certification-overlay i {
    transform: scale(1);
    /* Grow on hover */
}

.certification-item .fancylight:hover img {
    transform: scale(1.05);
    /* Slight zoom on image hover */
}

.quantity_area .quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    overflow: hidden;
    width: fit-content;
}

.quantity_area .quantity button {
    background-color: #e9ecef;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #495057;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.quantity_area .quantity button:hover {
    background-color: #dee2e6;
}

.quantity_area .quantity .input-box {
    border: none;
    text-align: center;
    width: 60px;
    font-size: 1rem;
    padding: 0.5rem 0;
    -moz-appearance: textfield;
    /* Hide arrows for Firefox */
}

.quantity_area .quantity .input-box::-webkit-outer-spin-button,
.quantity_area .quantity .input-box::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.review_card {
    height: 370px;
}
.review_card:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 30px 40px 0px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s,
        color 0.3s, opacity 0.3s;
}

#whyUs {
    padding-top: 50px;
    text-align: center;
}
@media (max-width: 767px) {
    #whyUs {
        padding-top: 0px;
    }
}
#whyUs h2 {
    font-size: 32px;
    color: black;
    font-weight: 700;
    padding-bottom: 30px;
}
#whyUs .why-us-item {
    text-align: center;
    padding: 50px 50px 60px 50px;
}
@media (max-width: 991px) {
    #whyUs .why-us-item {
        padding: 40px 15px;
    }
}
@media (max-width: 767px) {
    #whyUs .why-us-item {
        padding: 0px;
    }
}
#whyUs .why-us-item h4 {
    padding-top: 40px;
}
#whyUs .why-us-item .icon_part {
    height: 70px;
}
@media (max-width: 767px) {
    #whyUs .why-us-item .icon_part {
        height: 30px;
    }
}
#whyUs .why-us-item .icon_part svg {
    height: 64px;
    width: 64px;
    color: black;
    -webkit-transition: all linear 0.4s 0s;
    -moz-transition: all linear 0.4s 0s;
    -o-transition: all linear 0.4s 0s;
    transition: all linear 0.4s 0s;
}
@media (max-width: 767px) {
    #whyUs .why-us-item .icon_part svg {
        height: 30px;
        width: 30px;
    }
}
#whyUs .why-us-item h4 {
    font-size: 18px;
    color: black;
    font-weight: 700;
    padding-top: 50px;
    padding-bottom: 20px;
}
@media (max-width: 767px) {
    #whyUs .why-us-item h4 {
        padding-top: 10px;
        font-size: 12px;
    }
}
#whyUs .why-us-item p {
    color: #505050;
}
@media (max-width: 767px) {
    #whyUs .why-us-item p {
        font-size: 10px;
    }
}
#whyUs .why-us-item:hover svg {
    -webkit-transition: all linear 0.4s 0s;
    -moz-transition: all linear 0.4s 0s;
    -o-transition: all linear 0.4s 0s;
    transition: all linear 0.4s 0s;
    margin-top: -10px;
}

#faqAccordionExample {
    background-color: #ffffff;
    /* White card background */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* Soft shadow */
    border-radius: 12px;
    /* Rounded corners */
    padding: 3.5rem;
    margin-bottom: 50px;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    /* Light border */
    border-radius: 8px;
    /* Slightly rounded accordion items */
    margin-bottom: 30px;
    /* Spacing between items */
    overflow: hidden;
    /* Ensure rounded corners look good */
}

.accordion-button {
    font-weight: 600;
    color: #1f2937;
    /* Darker text for question */
    padding: 1rem 1.5rem;
    background-color: #ffffff;
}

.accordion-button:not(.collapsed) {
    color: #0d6efd;
    /* Blue text when open */
    background-color: #f9fafb;
    /* Very light background when active */
    box-shadow: none;
    /* Remove default Bootstrap focus shadow */
}

.accordion-body {
    background-color: #f9fafb;
    /* Light body background */
    color: #4b5563;
    /* Grey text for answer */
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.accordion-button::after {
    background-image: none !important;
    /* Remove default arrow icon */
    content: "+";
    /* Plus sign when collapsed */
    font-size: 1.5rem;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 0.2s ease-in-out;
    color: #0d6efd;
    /* Blue color for the icon */
}

.accordion-button:not(.collapsed)::after {
    content: "−";
    /* Minus sign when open */
    transform: rotate(0deg);
    /* No rotation needed for plus/minus */
}

#why_love {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed, local;
    background-repeat: no-repeat, repeat;
    background-position: center center, center;
    background-size: cover, auto;
    background-color: black;
    padding: 250px 0px;
    color: white;
    text-align: left;
}
@media (max-width: 767px) {
    #why_love {
        /* background-size: contain; */
        background-size: 100% 35vh;
        background-attachment: scroll;
    }
}
@media (max-width: 1199px) {
    #why_love {
        padding: 150px 10px;
    }
}
@media (max-width: 991px) {
    #why_love {
        padding: 100px 10px;
    }
}
@media (max-width: 767px) {
    #why_love {
        padding: 50px 10px;
    }
}
#why_love h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}
#why_love p {
    font-size: 18px;
    line-height: 1.5;
}

.animated_banner img {
    width: 100%;
    height: auto;
}
