/********** Template CSS **********/
:root {
    /* --primary: linear-gradient(90deg, #ff4500, #b22222); */

    --primary: #0FA4AF;
    --secondary: #CCFF66;
    --light: #F7F8FC;
    --dark: #111111;
    --yellow: #f1c911;
    --green: #305d3c;

}

p {
    margin-bottom: 0 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.textt p {
    color: #fff !important;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-icon {
    background-color: gray;
    /* background: url(../img/doodle-line2.jpg) center center repeat; */
    background-size: contain;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 0 !important;
    align-items: center;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    position: sticky !important;
    transition: .5s;
    top: 0px !important;
    padding: 0 !important;
}

.top-bar {
    min-height: 40px;
    height: auto;
    /* border-bottom: 1px solid rgba(0, 0, 0, .07); */
}

.navbar {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 65px;

}

/*
.navbar-collapse {
    display: flex !important;
    justify-content: center;
} */

.navbar-nav {
    display: flex;
    justify-content: center;
    /* padding: 10px; */
    align-items: center;
    /* position: absolute; */
    right: 10px;
}



.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* .navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    background-image: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
} */

.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    background-color: transparent;
    border: 2px solid transparent;
    border-top-left-radius: 18px;
    border-bottom-right-radius: 18px;
    transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover {

    color: white !important;
    transition: none;
    font-size: 16px;
    font-weight: 900;
    border-bottom: 2px solid white;
    border-radius: 50%;
    width: fit-content;

}

.navbar .navbar-nav .nav-link.active {
    color: white;
    transition: none;
    font-size: 16px;
    font-weight: 900;
    border-bottom: 2px solid white;
    border-radius: 50%;
    width: fit-content;
}



.nav-width {
    width: auto;
}

.logo-toggle {
    display: flex;
    justify-content: space-evenly;
}

.borderr {
    border: 2px solid rgba(0, 0, 0, .07);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 60px;
        border: 1px solid black;
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link.active {
        color: var(--secondary);
    }

    /* .nav-width{
        width: 100%;
    } */
    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .navbar-nav {
        padding: 10px;
        align-items: start;
        justify-content: left;
    }

    .cart-icons {
        display: none !important;
    }

}

.log-extra {

    display: none;
}

/* ================= Mega Menu Styles ================= */

/* Remove bullets */
.dropdown-menu,
.dropdown-submenu>.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* First-level dropdown */
.nav-item.dropdown>.dropdown-menu {
    display: none;
    visibility: hidden;
    position: absolute;
    top: 70%;
    /* below nav link */
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

/* Show first-level dropdown on hover */
.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Submenus (subcategory → child → subchild) */
.dropdown-submenu {
    position: relative !important;
}

/* Nested submenu */
.dropdown-submenu>.dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    /* align with parent item */
    left: 100%;
    /* default: open right */
    margin-top: -5px;
    /* small offset */
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.2s ease;
}

/* Show submenu on hover */
.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

/* Submenu links */
.dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f1f5ff;
    color: #007bff;
}

/* Submenu arrow indicator */
.dropdown-submenu>.dropdown-item::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(-45deg);
    margin-left: auto;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

/* Arrow rotation on hover */
.dropdown-submenu:hover>.dropdown-item::after {
    transform: rotate(45deg);
    border-color: #007bff;
}

/* Flip submenu if overflow */
.dropdown-submenu>.dropdown-menu.to-left {
    left: auto;
    right: 100%;
}

/* Mobile fallback: show menus statically */
@media(max-width:768px) {

    .dropdown-menu,
    .dropdown-submenu>.dropdown-menu {
        position: static !important;
        display: block !important;
        box-shadow: none;
    }

    .dropdown-submenu>.dropdown-item::after {
        content: none;
    }


    .log-extra {
        height: 40px !important;
        display: flex !important;
        object-fit: fill !important;
        position: absolute !important;
        /* top: 28px !important; */
        /* left: 28px !important; */
        text-align: center;
        justify-content: center;
        align-items: center;
        align-self: center;
        justify-self: anchor-center;
    }

    .logo-toggle {
        display: flex;
        /* justify-content: space-between; */
        position: absolute;
        left: 10px;
    }
}




/* Mobile dropdown */
.mobile-categories ul {
    list-style: none;
    padding-left: 0;
}

.mobile-categories li {
    position: relative;
}

.mobile-dropdown-toggle {
    display: block;
    padding: 10px 15px;
    background: #f1f1f1;
    margin-bottom: 2px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
}

.mobile-submenu {
    display: none;
    padding-left: 15px;
}

.mobile-submenu li a {
    padding: 8px 15px;
    display: block;
    background: #e9e9e9;
    margin-bottom: 1px;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
}


/* ----------------------------- */
/* Main Category / Toggle link    */
/* ----------------------------- */
.dropdown-toggle-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 16px;
    color: #222;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
    transition: color 0.3s ease;
}

/* Active / Hover Main Category */
.dropdown-toggle-custom.active,
.dropdown-toggle-custom:hover {
    color: #ff6700;
    /* Orange highlight */
}

/* Arrow indicator */
.dropdown-toggle-custom .dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown-toggle-custom.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* ----------------------------- */
/* Submenu container             */
/* ----------------------------- */
.dropdown-menu-custom {
    display: none;
    flex-direction: column;
    padding-left: 0;
}

/* Show submenu */
.dropdown-menu-custom.show {
    display: flex;
}

/* ----------------------------- */
/* Subcategory & Child Category  */
/* ----------------------------- */
.dropdown-menu-custom .dropdown-item {
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
    background: none;
    /* remove gray box */
}

/* Hover style - subtle underline + orange text */
.dropdown-menu-custom .dropdown-item:hover {
    color: #ff6700;
    border-left: 2px solid #ff6700;
    background: none;
}

/* Active style */
.dropdown-menu-custom .dropdown-item.active {
    color: #ff6700;
    font-weight: 600;
    border-left: 2px solid #ff6700;
}

/* ----------------------------- */
/* Child category indentation    */
/* ----------------------------- */
.dropdown-menu-custom .dropdown-menu-custom .dropdown-item {
    padding-left: 28px;
    /* deeper indent */
    font-size: 14px;
    color: #555;
}

.dropdown-menu-custom .dropdown-menu-custom .dropdown-item:hover {
    color: #ff6700;
}

/* Sub-child (3rd level) */
.dropdown-menu-custom .dropdown-menu-custom .dropdown-menu-custom .dropdown-item {
    padding-left: 38px;
    /* even deeper */
    font-size: 13.5px;
    color: #666;
}


/* ----------------------------- */
/* Animations for submenu         */
/* ----------------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu-custom.show {
    animation: fadeIn 0.2s ease forwards;
}



/* Prevent parent menus from hiding overflow */
.navbar .dropdown-menu {
    overflow: visible !important;
}



.text-white p {

    color: white !important;
}



/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.header-space {
    display: flex;
    justify-content: space-between;
}

#header-carousel .carousel-item {
    height: 665px;
    object-fit: fill;
    padding-left: 0px;
    padding-right: 0px;
}

#header-carousel .carousel-item img {
    height: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        height: 300px;
        padding: 0px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: fill;
    }
}

.page-header {
    padding-top: 3rem;
    padding-bottom: 3rem;
    /* background: url(../img/head.jpg) center right no-repeat; */
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/


/*** About ***/
.about-img {
    height: 400px;
    display: flex;
    object-fit: fill;
}

.about-img img {
    height: 100%;
    width: 100%;
    z-index: 2;

}

.about-img::before {
    /* position: absolute; */
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
}

@media (max-width:768px) {
    .about-img {
        height: 300px !important;
    }
}

/*** Product ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    height: 330px;
}

.product-item img {
    transition: .5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item a {
    font-size: large;
}

.product-item small a:hover {
    color: var(--primary) !important;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

/*
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
} */


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--dark);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    padding: 14px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    background-color: var(--secondary);
}

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

.copyright a:hover {
    color: var(--secondary);
}

.popular-searches h5,
.popular-searches a,
.popular-searches span {
    color: var(--dark);
}

/* =================================CUSTOM CSS=============================== */
/* =============topbar starts================== */
/* Logo alignment and resizing */
.header-logo {
    height: 60px;
    display: flex;
    object-fit: fill;
    position: absolute;
    top: 15px;
    left: 10px;
}

.logo {
    height: 100%;
    /* Adjust height for mobile */
    width: 100%;
    /* margin-left: 10px; */
}

.logo-1 {
    display: none;
}

/* Hide search bar on mobile */
@media (max-width: 991.98px) {
    #searchBar {
        display: none;
    }

    .logo-1 {
        display: block;
        height: 40px;
    }

    .navbar-toggler {
        margin-right: 10px;
        border-radius: 10px;
    }
}

.search-container {
    width: 250px;
    height: 45px;
    /* background-color: #dbdbdb; */
    display: flex;
    justify-content: center;
    padding: 3px;
    border-radius: 5px;

}

.input-search {
    width: 300px;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid black;
}

.form-select {
    width: 342px !important;
}

.search-icon {
    padding: 13px;
    background-color: #F65005;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

#navbarCollapse {
    height: 60px;
}

/* .enquirymodel{
    height: 45px;
    width: fit-content !important;
    background:var(--secondary) !important;
    border-radius:50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--primary) !important;
    font-weight: bold !important;
} */

.enquirymodel {
    height: 35px !important;
    width: 220px !important;
    font-size: 14px !important;
    background: var(--primary) !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--light) !important;
    font-weight: bold !important;
    padding: 5px 15px !important;
    cursor: pointer !important;
    border: none !important;
}


.enquirymodel:hover {
    background: var(--secondary) !important;
    color: var(--light) !important;
}

.btn-primary {
    background-color: var(--secondary) !important;
    color: var(--dark) !important;
    border-color: var(--secondary);
    font-weight: bold;
}

.btn-primary:hover {
    background: var(--primary) !important;
    color: var(--light) !important;

}


.btn-secondary {
    color: #000;
    background-color: var(--primary) !important;
    border-color: var(--secondary) !important;
}

.caption {
    font-size: 40px;
}

.border-img {
    border-radius: 20px;
}

.p-img {
    height: 285px;
    width: 100%;
    object-fit: fill;
    border-radius: 10px;
}

@media(max-width:789px) {
    .caption {
        font-size: 30px;
    }

    .p-img {
        height: 285px;
    }

    .input-search {
        width: 150px;
        border-radius: 5px;
        padding: 10px;
        border: 1px solid var(--secondary);

    }

    .nav-link {
        color: black;
        /* padding-left: 34px; */
    }

    .dropdown-menu-custom .dropdown-menu-custom .dropdown-item {

        padding-left: 14px !important;
    }

    .dropdown-menu-custom {

        padding-left: 0px !important;
    }

    .form-select {
        width: 168px !important;
    }
}

/* =============================topbar ends============================== */
/* ========================products details starts======================== */
.detailpage-img img {
    height: 100%;
    width: 100%;
}

/* Style for the table */
table.w-100 {
    width: 100%;
    border-collapse: collapse;
    /* Ensures borders are merged */
    margin: 20px 0;
    /* Adds margin around the table */
}

/* Style for table headers and data cells */
table.w-100 td {
    padding: 12px;
    /* Adds padding inside each cell */
    border: 1px solid #ddd;
    /* Light gray border */
    text-align: left;
    /* Aligns text to the left */
}

/* Style for table headers (if you want to add headers) */
table.w-100 th {
    padding: 12px;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    /* Light background for header */
    text-align: left;
}

/* Optional: Add alternating row colors for better readability */
table.w-100 tr:nth-child(even) {
    background-color: #f9f9f9;
    /* Light gray background for even rows */
}

/* Bold the first column to make labels stand out */
table.w-100 td:first-child {
    font-weight: bold;
}

/* Add hover effect to highlight rows */
table.w-100 tr:hover {
    background-color: #f1f1f1;
    /* Light hover color */
}

.details-page-content .btn {
    border-radius: 20px;
    padding: 10px;
}

.form-select {
    margin-right: 5px;
    border-radius: 5px;
}

.product-search {
    width: 46%;
}

.detail-row {
    display: flex;
    flex-wrap: wrap;
}

@media(max-width:798px) {
    .product-search {
        width: 100%;
    }

    .detail-row {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
}

/* ==========================product details ends========================= */
/* ===========================function starts=========================== */
.function-page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */

}

.function-row {
    /* padding-top: 50px; */
    padding-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
}

.function-img img {
    height: 100%;
    width: 100%;
}

@media(max-width:789px) {
    .function-row {
        /* padding-top: 50px; */
        padding-bottom: 50px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .function-row-1 {
        flex-direction: column-reverse;
    }
}

/* ===========================function ends=========================== */
/* Show the dropdown menu on hover */
.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

/* Style the submenu to appear on hover */
.dropdown-submenu:hover>.dropdown-menu1 {
    display: block;
    position: absolute;
    left: 100%;
    /* Position the submenu next to the parent menu */
    top: 0;
    /* Align with the parent menu */
    background-color: white;
}

/* Prevent overlapping and adjust layout */
.dropdown-menu {
    position: relative;
    /* Ensure the submenu respects its container */
}

.dropdown-submenu {
    position: relative;
    /* Allow submenu to be positioned next to the parent */
}

.dropdown-menu1 {
    display: none;
}

iframe {
    width: 100%;
}

.text-green {
    color: #009856 !important;
    font-weight: bold !important;
}

.text a,
p {
    /* color:#999999 !important; */
    color: var(--dark) !important;
    /* color: white; */
    font-weight: 500 !important;

}

.text h4 {
    /* color: #64635f !important; */
    font-family: 'Red Hat Display', sans-serif !important;
    text-transform: unset !important;
    font-weight: bold;
    font-size: 18px;

}

.bg-footer {
    background: var(--secondary) !important;

    border-top-left-radius: 60px !important;
    border-top-right-radius: 60px !important;
}

.blog-img {
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    height: 245px;
    width: 100%;
    object-fit: fill;
}

.top-img {

    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    height: 300px;
    width: 100%;
    border: 1px solid black !important;
    object-fit: fill;
}

.func h5,
.func h4,
.func h3,
.func h2,
.func h1 {
    list-style: none !important;
    font-family: 'Poppins', sans-serif !important;


    color: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2) !important; */
    padding-bottom: 5px !important;
    display: inline-block !important;
}

.woocommerce-info {
    border-top-color: #df3550 !important;
}

.woocommerce-info {
    padding: 1em 2em 1em 3.5em;
    margin: 0 0 2em;
    position: relative;
    text-align: center;
    background-color: #f6f5f8;
    color: #515151;
    border-top: 3px solid #7f54b3;
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
}

@media (max-width: 768px) {

    .page-header {
        padding-top: 5rem;
        padding-bottom: 3rem;
        background: url(../img/head.jpg) center right no-repeat;
        background-size: cover;




    }


    .cap {
        display: flex;
        object-fit: fill;
        height: 50px;
        width: 100px;
    }

    #captchaCanvas {

        height: 100%;
        width: 100px;
        display: flex;
        justify-content: center;
    }

    .ban-text {

        color: white !important;
    }
}

/*
.card-header{
    padding: 0 !important;
} */
.card-body {
    padding: 0 !important;
    border-radius: 10px;
}

.pro-card {
    border-radius: 10px;
    height: 390px !important;
}




/* product card sections */
/* .pro-card-modern {
    transition: all 0.3s ease;
    border: 1px solid black !important;
    border-radius: 16px;

    height: 383px !important;
    background-color: #fff;
}

.pro-card-modern:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
}

.product-img-wrapper {
    position: relative;
    height: 220px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
   height: 100% !important;
   width: 100% !important;
    object-fit: fill !important;
    transition: transform 0.3s ease;
}

.product-img-wrapper:hover .product-img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    display: flex !;
    flex-direction: column !important;
    gap: 6px !important;
}
.product-actions .btn {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.price-section {
    font-size: 0.95rem;
}

.product-img-wrapper:hover .action-icons {
    opacity: 1;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background-color: #f0f0f0;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.price-box {
    font-size: 1rem;
}

.btn-outline-primary {
    font-size: 0.875rem;
} */


.pro-card-modern {
    transition: all 0.3s ease;
    border: none;
    /* Remove the black border */
    border-radius: 16px;
    /* Rounded corners */
    height: auto !important;
    /* Allow height to adjust based on content */
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    /* Subtle shadow by default */
}

.pro-card-modern:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    /* Deeper shadow on hover */
    transform: translateY(-2px);
    /* Slight lift effect */
}

/* Product Image Container */
.product-img-wrapper {
    position: relative;
    height: 150px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: fill !important;
    transition: transform 0.3s ease;
}

.pro-card-modern:hover .product-img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Action Buttons (Wishlist & Quick View) */
.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    /* Hide by default */
    transition: opacity 0.3s ease;
}

.pro-card-modern:hover .product-actions {
    opacity: 1;
    /* Show on hover */
}

.product-actions .btn,
.product-actions-mobile .btn {
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.85);
    /* Semi-transparent white background */
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-actions .btn:hover,
.product-actions-mobile .btn:hover {
    background-color: #fff;
    color: #000;
}

/* Product Title and Price */
.product-title a {
    color: #212529;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
}

.price-box {
    margin-top: 5px;
    overflow-x: auto;
    white-space: nowrap;
    /* 🔑 Prevent prices from wrapping */
}

.price-box del {
    font-size: 0.9rem;
}

.price-box .text-dark,
.price-box .text-danger,
.price-box .text-success {
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    /* 🔑 Ensure all stay inline */
    margin-right: 6px;
    /* spacing between prices */
}


/* Default Wishlist Button */
.wishlist-form .btn-outline-danger {
    border: 1px solid red;
    color: red;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Hover State */
.wishlist-form .btn-outline-danger:hover {
    background-color: red !important;
    color: #fff !important;
}


@media (max-width:798px) {

    /* keep wishlist icon always visible on mobile */
    .product-actions {
        opacity: 1 !important;
        /* always show */
    }

    /* style heart button (circle) */
    .product-actions .btn-outline-danger {
        background-color: #fff;
        border: 1px solid red;
        color: red;
        transition: all 0.3s ease;
    }

    .product-actions .btn-outline-danger:hover {
        background-color: red !important;
        color: #fff !important;
    }

    /* style wishlist pill button (bottom) */
    .wishlist-form .btn-outline-danger {
        background-color: #fff;
        border: 1px solid red;
        color: red;
        transition: all 0.3s ease;
    }

    .wishlist-form .btn-outline-danger:hover {
        background-color: red !important;
        color: #fff !important;
    }
}


/* product card section ends */


.price-button {
    display: flex;
    justify-content: space-between;
    width: 95%;
    align-items: center;
    position: absolute;
    bottom: 0;
    /* gap: 56px; */
}

.price-button .btn {
    /* background-color: var(--secondary); */
    color: white !important;
    height: fit-content;
    width: fit-content;
    font-size: 9px;
    border-radius: 10px;
    /* padding: 10px; */
    justify-self: end;
}

.price-button .btn:hover {
    color: var(--light) !important;
}

.price-button .price {
    align-content: center;

}

.price p {
    color: var(--secondary) !important;
    margin-bottom: 0 !important;
    font-size: 12px;
}



.prod-detail {
    text-transform: none;
    font-size: 18px;
    font-weight: normal;

    color: #707070 !important;
}



.custom-heading span {

    color: var(--dark) !important;

}

.heading {
    list-style: none !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 35px !important;
    font-weight: bold !important;
    /* background: linear-gradient(90deg, #FFA500, #e76d2c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent; */

    color: var(--primary);
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2) !important;
    padding-bottom: 5px !important;
    display: inline-block !important;

}

.abt-sub-heading {
    font-size: 22px;
}

.foot-cont p {

    color: var(--dark) !important;
}

.foot-cont a {

    color: var(--dark) !important;
}


.foot-cont a:hover {

    color: var(--primary) !important;
}

.load-spin {
    display: none;
    color: var(--primary) !important;
}

.prod {

    height: 200px;

    display: flex;
    object-fit: fill;
}

.prod img {

    height: 100%;
    width: 100%;
}

.prod-fon {


    font-size: 17px !important;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Lora", serif;
    font-weight: 600;
    line-height: 1.2;
    color: black;
    /* background-color: var(--primary);
    border-radius: 20px;
    width: 122px; */
}


.dec-text {


    font-size: 16px !important;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Lora", serif;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    background-color: var(--primary);
    border-radius: 20px;
    width: 122px;

}

.cat-card {
    border-radius: 10px;
    height: 345px;

}

@media(max-width:768px) {



    .prod-fon {

        font-size: 14px !important;

        font-weight: bold;

        margin-top: 0;
        margin-bottom: .5rem;
        font-family: "Lora", serif;
        font-weight: 600;
        line-height: 1.2;
        color: #111;
    }

    .pro-card {
        border-radius: 10px;
        height: 400px !important;
    }


    .price-button .btn {
        /* background-color: var(--primary); */
        color: white;
        font-size: 10px;
        height: fit-content;
        width: fit-content;
        border-radius: 10px;
    }



    .cat-card {
        border-radius: 10px;
        height: 365px;
    }
}





/* call to action button */



.plus-button {
    position: fixed;
    left: 45px;
    bottom: 45px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
    background-color: var(--secondary);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid orangered;
}

.plus-button:hover {
    background: var(--primary);
    /* Change background color */
    color: var(--secondary) !important;
    /* Change text/icon color */
    transform: scale(1.1);
    /* Slightly increase size */
    border-color: var(--secondary);
    /* Change border color */
}

.whatsapp,
.call {
    position: fixed;
    left: 45px;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
    color: white;

    border-radius: 50px;
    cursor: pointer;
    /* border: 1px solid orangered; */

    /* Initially Hidden */
    display: none;
}

.whatsapp {
    background-color: rgb(6, 184, 6);
}

.call {
    background-color: #0051ff;
}

.whatsapp:hover,
.call:hover {
    background: var(--primary);
    /* Change background color */
    color: var(--secondary) !important;
    /* Keep text/icon white */
    transform: scale(1.1);
    /* Slightly increase size */
    border-color: var(--secondary);
    /* Change border color */
}

.whatsapp {
    bottom: 105px;
}

.call {
    bottom: 165px;
}


.butt-col {
    background-color: var(--secondary) !important;
    color: white !important;
    border-color: orangered;
    font-weight: bold;
}


.text-lie {
    padding: 10px !important;
    border-left: 5px solid var(--secondary) !important;
    /* border-radius: 20px; */
}



/* --------------product-detail-page-css------------------ */
/* ===========cart icons=========== */
.cart-icons {
    display: flex;
    gap: 18px;
    /* position: absolute; */
    right: 10px;
    align-items: center;
}

.cart-icons i {
    color: black;
    font-size: 20px;
}

/* @media (max-width: 998px) {
    .navbar-expand-lg .navbar-nav .nav-link {

        font-size: 18px !important;
    }
}
@media (min-width: 1400px) {
    .navbar-expand-lg .navbar-nav .nav-link {

        font-size: 14px !important;
    }
} */


@media (max-width:768px) {
    .mobile-reverse {
        flex-direction: column-reverse;
    }

    .product-page-card {
        height: 285px !important;
    }

    .shop {
        padding-bottom: 0 !important;
    }

    .heading {
        font-size: 18px !important;
        font-weight: bolder !important;
    }

    .offer-text {
        font-size: 12px;
    }


    .socia-cont {

        display: none !important;
    }
}

/* .heart-like-span{
    top: 412px !important;
} */

.top-bar {
    background: #FFB66E;
    /* justify-content: space-between; */


}


.topbar-about {
    color: var(--dark);
    /* Default text color */
    font-size: 12px;
    font-weight: 700;
    padding: 0 !important;
    /* Keep your existing padding */
    position: relative;
    /* Needed for pseudo-elements */
    display: inline-block;
    /* Ensures element wraps content correctly and allows pseudo-elements to position */
    cursor: pointer;
    /* Indicates interactivity */
    /* Add a slight horizontal padding to create space for the lines around the text if needed */
    padding: 0 3px !important;
    transition: color 0.3s ease;
    /* Smooth transition for text color */
}

.topbar-about::before,
.topbar-about::after {
    content: '';
    position: absolute;
    height: 1px;
    /* Thickness of the lines */
    background-color: var(--light);
    /* Color of the lines */
    transition: width 0.3s ease-out;
    /* Smooth transition for line width */
    width: 0;
    /* Initially, lines have no width */
}

.topbar-about::before {
    top: 0;
    /* Position the first line at the very top */
    left: 0;
    /* Start the top line from the left */
}

.topbar-about::after {
    bottom: 0;
    /* Position the second line at the very bottom */
    right: 0;
    /* Start the bottom line from the right */
}

.topbar-about:hover {
    color: var(--light) !important;
    /* Change text color on hover */
}

.topbar-about:hover::before,
.topbar-about:hover::after {
    width: 100%;
    /* Both lines expand to full width on hover */
}

.topbar .active {

    color: var(--secondary) !important;
}

marquee {
    width: 500px;
}

/* @media (max-width:768px) {
    marquee {
        display: none;
    }
} */


.text-primary {

    color: var(--primary) !important;
}


button {
    border-radius: 20px;
    border: 1px solid var(--secondary);
    background: #FF4B2B;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

.signs {
    border-radius: 20px;
    border: 1px solid var(--secondary) !important;
    background: var(--primary) !important;
    color: var(--secondary) !important;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

button.ghost {
    background-color: var(--secondary) !important;
    border-color: #FFFFFF;
}

a:hover {

    color: var(--primary) !important;
}

.scroll-text {

    font-size: 18px !important;
}


.bg-primary {
    /* background: linear-gradient(90deg, #FFA500, #e76d2c) !important; */
    background: var(--primary) !important;
}




/* brands */
.brand-item .card {
    border-radius: 15px;

}

.brand-img {
    height: 100px;
    display: flex;
    object-fit: fill;
    border-radius: 15px;

}

.brand-img img {
    height: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.brand-img img:hover {
    transform: scale(1.1);
}


/* payments */
.pays {
    display: flex;
    justify-content: space-between;
}

.payment-img {
    height: 19px;
    display: flex;
    object-fit: fill;
}

.payment-img img {
    height: 100%;
}


.play-img {
    height: 140px;
    display: flex;
    object-fit: fill;
}

.play-img img {
    height: 120%;
}




.play-imgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    /* ✅ Center horizontally */
    align-items: center;

    gap: 5px;
    /* background-color: var(--light); */
    border-radius: 10px;
    width: 65%;
    padding: 10px;
}

.payment-imgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    /* ✅ Center horizontally */
    align-items: center;

    gap: 4px;
    background-color: var(--light);
    border-radius: 10px;
    width: 85%;
    padding: 10px;
}

.payments {
    display: flex;
    align-items: center;


}

.transport {
    display: flex;
    align-items: center;
}

@media (max-width:768px) {
    .pays {
        flex-direction: column;
        align-items: center;
    }

    .payments {
        flex-direction: column;
        align-items: center;
    }

    .transport {
        flex-direction: column;
        align-items: center;
    }

    .payment-imgs {

        width: 102% !important;
    }
}


/* .wish{


    background-color: black  !important;
}
.wish:hover{
    color: var(--primary) !important;
} */



/* ================footer mobile view============== */


.mob-view {
    display: none !important;
    /* Hide mobile view content by default */
}

/* Mobile view styles */
@media (max-width: 768px) {

    .mob-view {
        display: block !important;
        /* Show mobile footer */
    }

    /* Sticky footer for mobile view */
    .footer-mobileView {
        display: flex;
        /* Show mobile footer as flexbox */
        align-items: center;
        justify-content: space-around;
        /* Distribute space evenly */
        width: 100%;
        position: fixed;
        /* Make it fixed */
        bottom: -2px;
        /* Stick to the bottom of the screen */
        left: 0;
        background-color: white;
        /* Adjust background color */
        z-index: 1001;
        /* Ensure it stays on top of other content */
        text-align: center;
        /* Center text */

        height: 64px;
        /* Set a fixed height */
        /* Add shadow at the top */
        box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
    }

    .footer-mobileView .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: black;
        /* Ensure text color is visible */


    }

    .footer-mobileView .footer-content img {
        height: 23px;
        width: 25px;
        margin-bottom: 5px;
    }

    .footer-mobileView .footer-content a {
        text-decoration: none;
        font-size: 13px;
        font-weight: bold;
        color: black;
    }

    /* Larger Home icon and text */
    /* .footer-mobileView .footer-content:nth-child(3) img {
    height: 60px;
    width: 50px;
    border: 1px double white;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px white;
  } */

    /* .footer-mobileView .footer-content:nth-child(3) a {
    font-size: 26px;
  } */
    /* Specific for the Home icon */
    .footer-mobileView .nav-menu-home {
        align-self: center;
        align-items: center;
        justify-content: center;
        place-items: center;
        position: absolute;
        top: -39px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1002;

    }

    .footer-mobileView .nav-menu-home i {
        height: 60px;
        /* Larger icon */
        width: 60px;
        border: 4px double white;
        /* padding: 5px; */
        border-radius: 50%;
        /* box-shadow: 0 0 0 4px white; */
        background-color: var(--theme-primary);
        align-items: center;
        justify-content: center;
        justify-items: center;
        align-self: center;
        padding: 20%;

    }

    .footer-mobileView .nav-menu-home a {
        font-size: 26px;
        /* Larger text */
    }

    /* Dropdown Menu */
    .footer-mobileView .footer-content .dropdown-content {
        display: none;
        /* Hidden by default */
        position: absolute;
        bottom: 100%;
        /* Align dropdown above the Gallery item */
        left: 50%;
        transform: translateX(-50%);
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1;
        text-align: center;
    }

    .footer-mobileView .footer-content .dropdown-content a {
        color: black;
        padding: 10px 16px;
        text-decoration: none;
        display: block;
    }

    .footer-mobileView .footer-content .dropdown-content a:hover {
        background-color: #f1f1f1;
    }

    .footer-mobileView .circle {
        border: 2px solid white;
        padding: 10px;
        border-radius: 100%;
        background-color: white;
        color: rgb(234, 134, 134);
    }

    .footer-mobileView .footer-content.active {
        /* background-color: var(--primary); */
        height: 100%;
        width: 70px;
        justify-content: center;
        align-items: center;
        color: var(--primary);
        /* opacity: 0.5; */
    }

    /* .footer-mobileView .footer-content.active a{
      font-weight: bold;

      font-size: 18px;
    } */
    #footer {
        padding: 0 0 30px 0;
    }

    .call {
        bottom: 148px;
    }

    .whatsapp,
    .call {

        left: 4px;


        width: 30px;
        height: 30px;

    }

    .back-to-top {

        right: 4px;
        bottom: 118px;

        width: 30px;
        height: 30px;
        color: black !important;
        font-size: 30px;
        font-weight: bolder;
    }

    .plus-button {

        left: 4px;
        bottom: 66px;

        width: 30px;
        height: 30px;

    }

    .copyright {
        padding-bottom: 66px !important;
        background-color: var(--primary) !important;
    }

    .top-abt,
    .top-cntact {
        display: none !important;
    }

    .fb {
        display: none !important;
    }

    .inst {
        display: none !important;

    }

    .twi {
        display: none !important;

    }

    .yt {
        display: none !important;

    }

    .ln {
        display: none !important;
    }

    .icons-sec .top-dwnld {
        position: absolute;
        right: 10px;
        font-size: 12px;
    }

    .cart-icons {
        display: none;
    }
}



/* ==================changes================== */
.mb-user {
    display: none;
}

.navbar {
    background-color: var(--primary);

    display: flex;
    justify-content: center;

    align-items: center;
}


@media (max-width:768px) {
    .mb-user {
        display: block;
        width: 20%;

    }

    .mb-user i {
        color: black !important;
        font-size: 18px;
        position: sticky;
        top: 26px !important;
        right: 10px !important;
    }

    .navbar {
        justify-content: flex-end !important;
        /* or remove centering */
    }

    .navbar-nav {
        padding: 10px;
        align-items: start;
        justify-content: left;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--secondary);
    }
}



.owl-carousel .owl-nav.disabled {
    justify-content: space-between;
    display: flex;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    /* Let clicks through unless you enable inside */
}

.owl-carousel .owl-nav .nav-btn {
    background-color: var(--primary);
    color: var(--light);
    padding: 8px 12px;
    border-radius: 50%;
    pointer-events: auto;
    /* Allow clicks on buttons */
    cursor: pointer;
    transition: background 0.3s ease;
    border: 1px solid var(--secondary);
}

.owl-carousel .owl-nav .nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--primary);
    border: 1px solid var(--primary);
}

/*
.pros .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.pros .owl-nav .nav-btn {
    background-color: rgba(255, 255, 87, 0.724);
    color: #020202;
    padding: 8px 12px;
    border-radius: 50%;
    pointer-events: auto;
    cursor: pointer;
    transition: background 0.3s ease;
    border: 1px solid var(--secondary);
}

.pros .owl-nav .nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--primary);
    border: 1px solid var(--primary);
} */

.popular-searches a {
    font-size: 12px;
}

.popular-searches a:hover {
    color: black !important;
}

@media (max-width:768px) {
    .owl-carousel .owl-nav .nav-btn {
        background-color: var(--primary);
        color: var(--light);
        padding: 8px 12px;
        border-radius: 50%;
        pointer-events: auto;
        /* Allow clicks on buttons */
        cursor: pointer;
        transition: background 0.3s ease;
        border: 1px solid var(--secondary);
    }

    .owl-carousel .owl-nav .nav-btn:hover {
        background-color: transparent;
        color: var(--primary);
        border: none;
    }
}


@media(min-width:1365px) {
    .header-logo {
        height: 60px;
        display: flex;
        object-fit: fill;
        /* justify-content: center; */
        justify-self: left;
        align-self: flex-end;
        text-align: left;
        position: absolute;
        top: 10px !important;
        /* left: 40%; */
    }
}

.mb-search {
    display: none;
}

.mb-wtsp {

    display: none;
}

@media (max-width:991.98px) {
    .topbar-about {
        /* width: 100px; */
        color: var(--dark);
        font-size: 12px;
        font-weight: 700;
        padding: 0 !important;
        margin-right: -28px;
    }

    .scroll-text {
        font-size: 10px !important;
    }

    marquee {
        width: 370px;
    }

    .mb-search {
        display: none;
        position: absolute;
        right: 55px;
        top: 33px;
    }

    .mb-wtsp {

        display: block;
        position: absolute;
        right: 6px;
        top: 28px;
    }

}

/* Ensure modal backdrop is visible */
.modal-backdrop {
    z-index: 1012 !important;
}

.modal {
    z-index: 1050 !important;
}

.modal-dialog {
    z-index: 1055 !important;
}

/* Optional: make modal a bit darker if needed */
.modal-backdrop.show {
    opacity: 0.3;
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 5rem auto;
        width: 90%;
    }

}

@media (max-width: 768px) {

    #btnMens,
    #btnWomens {
        min-width: 160px;
    }
}

@media (max-width:768px) {
    .footer-mobileView {
        display: flex;
        /* Default state */
        visibility: hidden;
        /* Initially hidden to avoid flickering */
        opacity: 0;
        /* Start with invisible footer */
        transition: opacity 0.3s ease-in;
        padding: 8px 0;
        /* Smoothly fade in */
    }

    .footer-mobileView.loaded {
        visibility: visible;
        /* Make it visible */
        opacity: 1;
        /* Fully opaque */
    }
}

#captchaCanvas {
    border: 2px solid #ccc;
    background-color: #f9f9f9;

    color: black;
}



.modal-content {

    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    /* border-radius: 1.3rem; */
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    outline: 0;
}

#captchaContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#reloadCaptcha {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 4px;
    background: none;
    border: none;
}

#reloadCaptcha i {
    color: #007bff;
    transition: color 0.3s ease;
}

#reloadCaptcha:hover i {
    color: #0056b3;
}

.verify-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.static-fashion {
    display: none;
}

@media(max-width:798px) {

    .captch {

        width: 100px !important;
    }

    .static-fashion {
        display: block;
        color: var(--dark) !important;
    }
}



/* ===========================sidebar ========================= */
@media (max-width: 768px) {

    /* Ensure navbarCollapse is hidden on mobile */
    #navbarCollapse {
        display: none !important;
        /* Completely hide navbarCollapse for mobile view */
    }

    /* Mobile Sidebar Styles */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fafafa;
        z-index: 1050;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        /* padding: 20px; */
    }

    /* .dropdown-menu-custom {
        display: none;
        padding-left: 20px;
    } */

    .dropdown-item {
        font-size: 18px;
        /* Font size for mobile view */
    }

    .navbar-toggler.sidebar-close {
        position: absolute;
        top: 15px;
        right: 0;
        background: none;
        border: none;
        font-size: 18px;
        /* Font size for mobile view */
    }


    /* Default hidden state for all dropdown menus */
    .dropdown-menu-custom {
        display: none;
        /* Start closed */
        padding-left: 20px;
        /* Indentation for dropdown items */
    }

    /* Default hidden state */
    .dropdown-menu-custom {
        display: none;
        /* All dropdowns start closed */
        padding-left: 20px;
    }

    /* Class-based toggle for open state */
    .dropdown-menu-custom.open {
        display: block;
        /* Dropdown opens when this class is added */
    }

    /* Dropdown arrow rotation for visual feedback */
    .dropdown-toggle-custom .dropdown-arrow {
        transition: transform 0.3s ease-in-out;
    }

    .dropdown-toggle-custom.open .dropdown-arrow {
        transform: rotate(180deg);
        /* Rotate arrow when menu opens */
    }


}


@media (max-width:768px) {
    .side-header-logo {
        height: 60px !important;
        display: flex !important;
        object-fit: fill !important;
        /* position: absolute !important; */
        /* top: 28px !important; */
        /* left: 28px !important; */
        text-align: center;
        justify-content: center;
        /* align-items: center; */
        align-self: center;
        /* justify-self: anchor-center;*/
    }

    .logo-heading {
        background-color: var(--secondary);

    }

    .side-links {
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .side-links a {
        color: black !important;
        font-size: 18px;
    }

    .side-links a:hover {
        letter-spacing: 1.5px;
    }

    .drpitm {
        /* font-size: larger; */
        font-weight: bold;
        text-transform: uppercase;
    }

    .offer-our {
        font-weight: bold !important;
    }

    .enquirymodel {

        font-size: 10px !important;
        height: fit-content !important;
        width: fit-content !important;
    }
}



#spinner img {
    width: 100px;
    /* Adjust size to fit within the spinner */
    height: 100px;
}

/* #spinner img{
    height: 50px;
} */
.accordion-header {
    border-radius: 10px;

}

.accordion .accordion-item {
    border-radius: 10px;
}

.accordion-button {
    border-radius: 10px !important;

}

#btnMens,
#btnWomens {
    border-radius: 10px !important;

}

.foot-cont {
    color: var(--dark) !important;
}

@media (max-width:768px) {
    .foot-cont p {
        color: var(--dark) !important;
    }

    .foot-cont a {
        color: white !important;

    }

    .copyright {
        padding: 4px 0;
    }

    .brand-img {
        height: 55px;
    }

    .tab button {
        font-size: 12px !important;
    }

    .new-ad {
        display: block !important;
    }
}

.badge {
    background-color: red !important;
    color: var(--light) !important;
}

.kgrfooter {
    font-size: 20px !important;
    font-weight: bold !important;
}

@media (max-width:768px) {
    .kgrfooter {
        font-size: 15px !important;
        font-weight: bold !important;
        color: black;
    }

    .copyright {
        font-size: 14px;
    }
}

.con {
    border-radius: 20px;
    box-shadow: 0px 0px 9px 1px var(--secondary);
}

.social-images .social-img-a {
    height: 35px;
    display: flex;
    object-fit: fill;
}

.social-img-a img {
    height: 100%;
    border-radius: 10px;
}

.accordion-button:focus {
    border-color: red !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 .25rem rgba(246, 36, 0, 0.25);
}

.navbar-light .navbar-toggler {
    color: black !important;
    border: none !important;
}

.payments p,
.transport p {
    font-weight: bold !important;
    font-size: 18px !important;
}

@media (max-width:768px) {
    .header-logo {
        height: 45px !important;
        display: flex;
        object-fit: fill;
        position: absolute;
        top: 10px;
        left: 10px;
    }
}

.primary-btn:hover {
    background-color: var(--secondary) !important;
    color: var(--light) !important;
}

.offer-our {
    font-size: larger;
    font-weight: bold;
    text-transform: uppercase;
}


/* ============new============== */
.copyright a:hover {
    color: var(--secondary) !important;
}

#searchBar .search-container button {
    border-radius: 10px;
}

@media (max-width:768px) {
    .footer-mobileView .footer-content.active a {
        color: var(--primary) !important;
    }
}

.abt-btn-clr {
    background-color: var(--primary) !important;
    color: var(--secondary) !important;
}

.abt-btn-clr:hover {
    background-color: var(--secondary) !important;
    color: var(--light) !important;
}

@media (max-width:768px) {
    .mb-search {
        display: block;
    }
}

.input-search::placeholder {
    font-size: 12px !important;
    display: flex !important;
    text-align: center !important;
    justify-self: center !important;
    padding-left: 20px !important;
}


/* =========updates======= */
.modal-dialog {
    margin-top: 100px;
}

.of-pro .item {
    box-shadow: 1px 3px 5px 0px black;
    border-radius: 16px;
}


.input-sear {


    border-radius: 15px !important;

}

.butt-dark {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* ✅ Base container */
.feature-scroll {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    align-items: center;
    gap: 20px;
}

/* ✅ Individual box */
.feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
    padding: 15px;
    color: black;
    height: 100px;
    border-radius: 25px;
    background-color: var(--primary);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover effect for desktop */
.feature-item:hover {
    transform: translateY(-3px);
    background-color: var(--primary-dark, var(--primary));
}

/* ✅ MOBILE (carousel style) - Show exactly one card at a time */
@media (max-width: 767px) {
    .feature-scroll {
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        justify-content: flex-start;
        padding: 0;
        scrollbar-width: none;
    }

    .feature-scroll::-webkit-scrollbar {
        display: none;
    }

    .feature-item {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: center;
        background-color: var(--primary);
        border-radius: 20px;
        height: 125px;
        padding: 20px 25px;
        overflow: hidden;
        margin-bottom: 5px;
    }
}


@media(max-width:769px) {

    .nav-extra {

        display: none !important;
    }


    .row.flex-mobile {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .flex-mobile>div {
        flex: 0 0 auto;
        min-width: 250px;
        /* Adjust as needed */
        margin-right: 1rem;
    }

    .sec-bg {

        height: 170px !important;
    }


}

.sec-bg {

    background-color: var(--primary) !important;
    height: 130px;

    display: flex;

    flex-direction: row;

    justify-content: center !important;
    align-items: center !important;
}

.sec-bg h2 {

    color: black !important;
}

.sec-bg p {

    color: black !important;
}







.mark-bg {

    background-color: var(--primary) !important;
    height: 40px !important;

    display: flex;

    flex-direction: row;

    justify-content: center !important;
    align-items: center !important;
}

.mark-bg h2 {

    color: white !important;
}

.mark-bg p {

    color: white !important;
}



.cat-bg {

    background-color: #fdf5f5 !important;
}

.img-border-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 6px;
    /* border: 3px dashed var(--primary); */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    /* box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1); */
}

.img-border-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* changed from fill */
    border-radius: 50%;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .img-border-wrapper {
        width: 70px;
        /* slightly larger for better visibility */
        height: 70px;
        padding: 3px;
        border-width: 2px;
        margin: 0 auto;
        /* center the wrapper */
    }

    .img-border-wrapper img {
        border-radius: 50% !important;
        /* ensure circular */
        object-fit: fill;
    }

    .category-title {
        font-size: 10px !important;
        text-align: center;
        margin-top: 5px;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* limit to 2 lines */
        -webkit-box-orient: vertical;
        /* required for line clamp */
        overflow: hidden;
        text-overflow: ellipsis;
        /* adds "..." if text overflows */
        white-space: normal !important;
        /* allow wrapping */
        word-break: break-word;
        /* break long words if needed */
        width: 100%;
        /* prevent expanding item width */
        max-width: 61px;
        /* optional: control max width */
        margin-left: auto;
        margin-right: auto;
    }


    /* Ensure carousel items have proper spacing */
    .cat-carousel .item {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    /* Adjust carousel container for mobile */
    .cat-carousel {
        padding: 0 10px;
    }

    /* Fix right side cropping issue */
    .cat-carousel .owl-stage {
        display: flex;
        align-items: center;
    }

    .cat-carousel .owl-item {
        display: flex;
        justify-content: center;
        min-width: 0;
        /* prevent flex item from expanding */
    }

    /* Ensure proper item width */
    .cat-carousel .item {
        width: auto !important;
        flex-shrink: 0;
    }

    /* Make carousel swipeable on mobile */
    .cat-carousel {
        overflow: visible !important;
        touch-action: pan-y pinch-zoom;
    }

    .cat-carousel .owl-stage-outer {
        overflow: visible !important;
    }

    /* Hide navigation buttons on mobile */
    .cat-carousel .owl-nav {
        display: none !important;
    }
}





.section-header h1:before {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--primary);
    display: inline-block;
}

.section-header h1:before {
    margin: 0 14px 10px 15px;
}

.section-header h1:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--secondary);
    display: inline-block;
}

.section-header h1:after {
    margin: 0 0 10px 15px;
}


@media(max-width:798px) {


    .section-header h1:before {
        margin: 0 15px 4px 10px;
    }


    .section-header h1:after {
        margin: 0px 0 5px 15px;
    }


}

/* Avatar Circle */
.user-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar .avatar-text {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

/* Quote Icon Circle */
.icon-circle {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonial Card */
/* Left-side primary-colored shadow */
.testimonial-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: -6px 0 15px -5px var(--primary);
    /* left shadow only */
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: -8px 0 20px -4px var(--primary);
    /* slightly stronger on hover */
}


/* Carousel Item Padding */
.owl-carousel .testimonial-card {
    margin: 15px;
}

/* Section Title Decoration (optional) */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* .section-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
} */


.quote-wrapper {
    position: relative;
    padding: 10px 0;
}

.quote-wrapper i {
    color: var(--primary);
    font-size: 1.25rem;

    position: relative;
    top: -9px;

}

.quote-wrapper .fa-quote-left {
    margin-bottom: 8px;
}

.quote-wrapper .fa-quote-right {
    margin-top: 8px;
}



.modern-offer-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    max-width: 330px;
    height: 400px;
    /* Fixed or min-height */
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modern-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.modern-img {
    position: relative;
    height: 250px;
    /* Increased height */
    overflow: hidden;
}

.modern-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #dc3545;
    color: white;
    padding: 5px 12px;
    font-size: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
}

.modern-content {
    padding: 16px;
    text-align: center;
    flex-grow: 1;
    height: auto;
    /* Let content define height */
}

.modern-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    min-height: 50px;
    /* Prevent jumpy height if titles vary */
}

.modern-btn {
    margin-top: auto;
    background: #198754;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s;
    display: inline-block;
}

.modern-btn:hover {
    background: #146c43;
}

.nav-extra {

    width: 100% !important;
}



.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 10;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 200px;
    padding: 10px 0;
    background: red;
    /* Bold red */
    color: #fff;
    font-weight: bold;
    text-align: center;
    transform: rotate(-45deg);
    top: 30px;
    left: -50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    font-size: 12px;
}


.out-of-stock-ribbon {
    width: 150px;
    background: red;
    color: white;
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: -35px;
    transform: rotate(-45deg);
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-size: 0.8rem;
    padding: 5px 0;
}

/*
.ribbon-customer-fav span {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #fff8dc;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
} */

.btn-outline-dark:hover {

    background: var(--primary) !important;
    color: white !important;
    border-color: 2px solid var(--primary) !important;
}

/* Modern Trending E-Commerce Mobile Bottom Navigation */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1001;
    }

    /* Bottom Tab Bar with Notch */
    .nav-tabs {
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
        border-radius: 24px 24px 0 0;
        height: 70px;
        padding: 0 16px;
        position: relative;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Create notch effect */
    .nav-tabs::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 74px;
        height: 16px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 0 0 37px 37px;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /*
    .nav-item {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 16px;
        padding: 4px;
    }

    .nav-item a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #666666;
        transition: all 0.3s ease;
        padding: 4px 8px;
        border-radius: 12px;
        position: relative;
    } */

    .nav-icon {
        position: relative;
        margin-bottom: 2px;
    }

    .nav-item i {
        font-size: 22px;
        transition: all 0.3s ease;
        color: #666666;
    }

    .nav-label {
        font-size: 9px;
        font-weight: 500;
        text-align: center;
        line-height: 1.2;
        transition: all 0.3s ease;
    }

    .nav-item.active {
        background: rgba(204, 51, 255, 0.08);
        transform: translateY(-2px);
    }

    .nav-item.active i,
    .nav-item.active .nav-label {
        color: var(--primary);
        font-weight: 600;
    }

    .nav-item.active .nav-icon i {
        transform: scale(1.1);
    }

    /* Spacer for floating button */
    .nav-spacer {
        width: 74px;
        height: 100%;
    }

    /* Floating Home Button */
    .floating-home {
        position: absolute;
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1002;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .floating-home .home-btn {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        box-shadow: 0 6px 24px rgba(204, 51, 255, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 22px;
        text-decoration: none;
        border: 3px solid white;
        transition: all 0.3s ease;
        position: relative;
    }

    .floating-home .home-btn::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .floating-home.active .home-btn {
        transform: scale(1.08);
        box-shadow: 0 10px 32px rgba(204, 51, 255, 0.5);
    }

    .floating-home.active .home-btn::before {
        opacity: 0.3;
    }

    .floating-home .home-btn:active {
        transform: scale(0.95);
    }

    .floating-home.active .home-btn:active {
        transform: scale(1.03);
    }

    /* Badge Styling */
    .nav-icon .icon-count {
        position: absolute;
        top: -6px;
        right: -6px;
        background: #ff4757;
        color: white;
        font-size: 10px;
        font-weight: bold;
        padding: 2px 6px;
        border-radius: 50%;
        min-width: 18px;
        text-align: center;
        border: 2px solid white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        animation: badgePulse 2s infinite;
        z-index: 10;
    }

    @keyframes badgePulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.15);
        }
    }

    /* Touch feedback for nav items */
    .nav-item:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }

    .nav-item.active:active {
        transform: translateY(-2px) scale(0.95);
    }

    /* Profile dropdown enhancements */
    .profile-dropup .dropdown-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
        transition: all 0.2s ease;
    }

    .profile-dropup .dropdown-item i {
        font-size: 14px;
        color: var(--primary);
    }

    .profile-dropup .dropdown-item:hover {
        background: linear-gradient(135deg, rgba(204, 51, 255, 0.1), rgba(204, 51, 255, 0.05));
        transform: translateX(4px);
    }
}