:root {
    /* Color Palette */
    --primary-bg: #ffffff;
    --secondary-bg: #bb824c;
    --primary-accent-color: #bb824c;
    --secondary-accent-color: #bb824c;
    --neutral-color: #28160D;
    --brand-color: #bb824c;
    --white: #ffffff;
    --btn-primary-web: linear-gradient(90deg, var(--primary-accent-color); 0%, var(--brand-color); 100%);

    /* Typography */
 --font-family: "Cormorant Garamond", serif;
--font-family2: "Lato", sans-serif;
     --font-size-sm: 0.875rem;
    --font-size-md: 16px;
    --font-size-lg: 1.25rem;

    /* Shadows */
    --box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;

    /* Border */
    --border-radius-web: 30px;

}
* {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
  font-smooth: always !important;
}


h6.producttitle {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1.2em * 2);
    /* Adjust depending on line height */
    line-height: 1.2em;
}

h3.title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1.2em * 1);
    /* Adjust depending on line height */
    line-height: 1.2em;
}

h4.title {
    font-size: 30px !important;
    font-weight: bold !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1.2em * 1);
    /* Adjust depending on line height */
    line-height: 1.2em;
}

p.testimonialdescr {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1.2em * 4);
    /* Adjust depending on line height */
    line-height: 1.2em;
}

.infoproduct {
    white-space: nowrap;
}

.infoproduct p {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: baseline;
    gap: 2px;
    margin: 6px 0 0 0;
    font-size: 15px;
    font-weight: 500;
}

.infoproduct p del {
    color: #7d7d7d !important;
    /* Rich red for crossed-out price */
    font-size: 18px;
    margin-right: 4px;
    opacity: 0.8;
}

.infoproduct p strong {
    color: #1a1a1a;
    /* Deep green for discounted price */
    font-size: 18px;
    font-weight: 700;
}

p{
     font-family: var(--font-family2) !important;
}

p.infoabout {
    display: -webkit-box;
    -webkit-line-clamp: 11;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.4em * 11);
    /* Adjust depending on line height */
    line-height: 1.4em;
}
p.infoabout.about{    
    overflow: auto;
    display: block;
   
    height: calc(1.4em * 11);
    /* Adjust depending on line height */
    line-height: 1.4em;
}

.blogSwiper p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1.2em * 3);
    /* Adjust depending on line height */
    line-height: 1.2em;
}
.blogSwiper H6 {
   font-size: 18px !important;
}

.btn-outline-primary {
    background-color: transparent !important;
    color: var(--brand-color) !important;
    border: 1px solid var(--brand-color);
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 0.375rem;

    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

.bg-two {
    background: #f4f9fc;
}

.btn-outline-primary:hover {
    background-color: var(--brand-color) !important;
    border: none;

    color: #fff !important;
}

.btn-primary {
    background-color: var(--brand-color);
    color: #fff !important;
    border: none;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    color: white !important;
    transform: translateY(-2px);
    background-color: var(--neutral-color);

}

a.nav-link.active {
    color: var(--brand-color) !important;

}

.btn-primary:active {
    transform: translateY(-2px);
    background-color: var(--neutral-color) !important;
}

.infoabout {
    font-size: 16px;
    text-align: justify;
    padding: 0 10px 0 0;
}

a {
     font-family: var(--font-family2) !important;
    text-decoration: none !important;
    color: unset !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: var(--font-family); */
}

body {
    background-color: #f7f8fa;
       font-family: var(--font-family);
}

h3.title {
    font-weight: bolder !important;
    font-size: 40px !important;

}

h6.categorytitle {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 600;

}

.top-header {
    background-color: var(--secondary-bg);
    color: white;
    padding: 10px 20px;
    position: relative;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 75%;

    margin-left: 0%;
    margin-right: 22%;
}


.marquee span {
    display: inline-block;
    padding-left: 100%;
    padding-right: 100%;

    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.needhelp {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    font-size: 15px;
    white-space: nowrap;
    gap: 6px;
}

/* .needhelp2 {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    font-size: 15px;
    white-space: nowrap;
    gap: 6px;
} */

.needhelp i {
    color: white;
}


.fxsm {
    font-size: 13px !important;
    font-weight: 700 !important;
}

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    border-radius: 0px !important;
}

::-webkit-scrollbar-track {
    background: #b4b4b4;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-accent-color);
    border-radius: 10px;
}

/* ::-webkit-scrollbar-thumb:hover {
    background: #b4b4b4;
} */

.navbar-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-container {
    display: flex;
    align-items: center;
    background-color: #f1f1f1;
    border-radius: 25px;
    padding: 5px 10px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}


.search-input {
    border: none;
    outline: none;
    background: transparent;
    padding: 6px 3px;
    font-size: 14px;
    width: 150px;
    transition: width 0.3s ease, padding 0.3s ease;
    overflow: hidden;
}

.search-container:hover .search-button:hover .search-input,
.search-input:hover {
    white-space: nowrap;
    width: 150px !important;
    padding: 6px 10px;
    transition: width 0.3s ease, padding 0.3s ease;

}

.search-button:hover .search-input {
    width: 150px !important;
    padding: 6px 10px;
    transition: width 0.3s ease, padding 0.3s ease;
}

.search-button:active .search-input {
    width: 150px !important;
    padding: 6px 10px;
    transition: width 0.3s ease, padding 0.3s ease;
}

.search-button i:hover .search-input {
    width: 150px !important;
    padding: 6px 10px;
    transition: width 0.3s ease, padding 0.3s ease;

}

.search-button:hover .search-input {
    width: 150px !important;
    padding: 6px 10px;
    transition: width 0.3s ease, padding 0.3s ease;

}


.search-button {
    border: none;
    background: none;
    cursor: pointer;
    color: #333;
    font-size: 16px;
}

.search-button:hover {
    color: #007bff;
}

.nav-link.fxsm {
/*    white-space: nowrap;*/
    text-transform: uppercase;
}

/* Base styles */
.category-dropdown {
    position: relative;
}

.ahover:hover {
    color: var(--brand-color) !important;
}

.category-menu {
    display: none;
    position: absolute;
    top: 100%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px !important;
    z-index: 999;
    max-width: 1000px;
    min-width: max-content;
    width: max-content;
    transform: translateX(0);
    transition: transform 0.2s ease;
}


.category-menu.vastu {
    display: none;
    position: absolute;
    top: 100%;

    transform: translateX(-40%);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px !important;
    z-index: 999;
    max-width: 10px !important;


    width: max-content;
}

.category-menu.color {
    display: none;
    position: absolute;
    top: 100%;

    transform: translateX(-9%);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px !important;
    z-index: 999;
    max-width: 1000px;
    min-width: max-content;
    width: max-content;
}


.category-menu.ofcanvasdropdown {
    display: none;
    position: absolute;
    top: 100%;
    border-radius: 0px;
    transform: translateX(-20%);
    background: white;
    box-shadow: none;

    padding: 20px;
    z-index: 999;
    width: 100%;
    text-align: center;
}

.category-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

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

.category-columns ul li {
    margin-bottom: 8px;
}

.category-columns ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.category-columns ul li a:hover {
    color: #da2c43;
    /* Optional hover color */
}

/* Show on hover */
.category-dropdown:hover .category-menu,
.category-dropdown:focus-within .category-menu {
    display: block;
}




.pointer {
    cursor: pointer;
}


.offcanvas-header {
    border-bottom: none;
}


.text-light {
    color: white;
}

/* Navbar */
.navbar {
    background-color: var(--primary-bg);
    padding: 15px 0;
    box-shadow: var(--box-shadow);
}

.brand-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--brand-color);
    ;
}

.brand-text .highlight {
    color: #394a41;
}

.navbar-nav .nav-link {
    color: #000 !important;
     font-family: var(--font-family2) !important;
    font-weight: 500;
    font-size: 14px;
    margin-right: 4px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-accent-color) !important;
}

.gifting {
    font-weight: bold;
}

.new-label {
    background-color: var(--primary-accent-color) !important;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
}

/* Icons */
.navbar-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    font-size: 18px;
    color: var(--neutral-color);
    text-decoration: none;
    position: relative;
}

.icon:hover {
    color: var(--secondary-accent-color);
}

.cart-badge {
       position: absolute;
    top: -13px !important;
    right: -13px;
    background-color: var(--brand-color) !important;
    color: white;
    font-size: 11px;
    border-radius: 50%;
    padding: 2px 6px;
}

.price {
    font-weight: bold;
    font-size: 16px;
    color: var(--neutral-color);
}

#bannerCarousel {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

#bannerCarousel img {
    object-fit: fill;
    height: 500px;
}


.fx15 {
    font-size: 16px !important;
}



.categoryhover img {
    transition: transform 0.7s ease, filter 0.7s ease, box-shadow 0.7s ease;
    width: 270px;
    height: 270px;
    object-fit: fill;

}

.categoryhover {
    overflow: hidden;
}

.categoryhover:hover .categorytitle {
    color: var(--primary-accent-color);
}

.categoryhover:hover img {
    transform: scale(1.03);
}

span.infocategory {
    font-size: 12px;
}

.testimonialname {
    color: var(--primary-accent-color);
    font-weight: 600;
}

.swiper {
    padding: 20px 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-accent-color) !important;
}

.testimonialdescr {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}

.footer-section a:hover {
    color: var(--primary-accent-color) !important;
}

.social {
    color: var(--primary-accent-color) !important;

}

.social:hover {
    color: var(--neutral-color) !important;
    transform: scale(1.1);
    transition: 0.4s ease;

}

.product-image-wrapper {
    position: relative;
    overflow: hidden;

}

.product-image-wrapper img {
    width: 95%;
    height: 280px;
    transition: opacity 0.4s ease;

}

.product-image-wrapper .imgfirs {
    opacity: 1;
    z-index: 1;
}

.product-image-wrapper .imgdesc {
    display: none;
    opacity: 0;
    z-index: 2;
}

a:hover .producttitle {
    color: var(--brand-color);
}

.producthover:hover .product-image-wrapper .imgfirs {
    display: none;
    opacity: 0;
}

.producthover:hover .product-image-wrapper .imgdesc {
    display: block;
    opacity: 1;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.producthover:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    background-color: var(--brand-color);
    color: #fff !important;
    border: none;
    padding: 10px 12px;
    border-radius: 0;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-overlay .btn:hover {
    background-color: var(--neutral-color, );
    transform: scale(1.1);
}

.product-overlay .btn i {
    font-size: 16px;
}

.producttitle {
    margin-top: 10px;
}




.price-label {
    font-size: 14px;
    margin: 10px 0;
}

.slider-container {
    position: relative;
    height: 40px;
    margin: 20px 0;
}

/* Base range input track */
.slider-container input[type=range] {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    background: transparent;
    top: 50%;
    transform: translateY(-50%);
}

/* WebKit Track */
.slider-container input[type=range]::-webkit-slider-runnable-track {
    height: 6px;
    background: #eee;
    /* Light gray base track */
    border-radius: 10px;
}

/* Firefox Track */
.slider-container input[type=range]::-moz-range-track {
    height: 6px;
    background: #eee;
    border-radius: 10px;
}

/* Thumb */
.slider-container input[type=range]::-webkit-slider-thumb {
    pointer-events: all;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-color);
    cursor: grab;
    position: relative;
    margin-top: -6px;
    /* Align thumb vertically with track */
    z-index: 2;
}

.slider-container input[type=range]::-moz-range-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-color);
    cursor: grab;
    position: relative;
    z-index: 2;
}

/* Filled Track Between Thumbs */
.slider-track {
    position: absolute;
    height: 6px;
    background: var(--brand-color);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    z-index: 1;
}

.pagination-wrapper {
    margin-top: 30px;
}

/* Pagination List */
#pagination {
    gap: 10px;
}

/* Pagination Items */
.pagination li {
    list-style: none;
}

.pagination .page-link {
    color: var(--brand-color) !important;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.pagination .page-link:hover {
    background-color: var(--brand-color) !important;
    color: #fff !important;
    border-color: var(--brand-color);
}

/* Active Page */
.pagination .page-item.active .page-link {
    background-color: var(--brand-color) !important;
    color: #fff !important;
    border-color: var(--brand-color);
}

/* Disabled Pages (optional for Next/Prev) */
.pagination .page-item.disabled .page-link {
    color: #ccc !important;
    pointer-events: none;
    background-color: #f9f9f9 !important;
}

.list-unstyled a {
    font-size: 15px;
    margin-bottom: 5px;
}

.featuredimg {
    width: 100%;
    height: 100%;

}

.img-wrapper {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
}

.effect-hover-click {
    height: 356px !important;
    width: 100% !important;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    border-radius: 5px;
}

.effect-hover-click:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.effect-hover-click:active {
    transform: scale(0.98);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-list li {
    position: relative;
    font-weight: 600;
}

.category-list li:not(:last-child)::after {
    content: "|";
    color: var(--neutral-color);
    margin-left: 10px;
}

.category-list a {
    text-decoration: none;
    color: var(--brand-color) !important;
    font-weight: bold;
    transition: color 0.3s;
}

.category-list a:hover {
    color: var(--brand-color);
}

.product-gallery {
    position: relative;
}

.thumbSwiper .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
}

.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--brand-color);
}

.zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 0%;
    padding: 8px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.zoom-icon i {
    font-size: 16px;
}


.swiper-horizontal {
    padding-bottom: 35px !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    top: 65% !important;
}

.zoom-container {
    position: relative;
    overflow: hidden;
}

.zoom-img {
    height: 350px;
    width: 100%;
    transition: transform 0.2s ease;
    transform-origin: center center;
}

.zoom-container:hover .zoom-img {
    transform: scale(2);
    /* Adjust zoom level here */
}

.vision-card {
    border: none;
    border-radius: 20px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vision-icon {
    font-size: 40px;
    color: var(--brand-color) !important;
    margin-bottom: 15px;
}

.vision-icon i {
    color: var(--brand-color);
}

.vision-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vision-desc {
    font-size: 15px;
    color: #555;
}

.category-icon {
    font-size: 50px !important;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #1e1e1e;
}



.category-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.category-list li {
    font-size: 14px;
}

.shine-effect {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.shine-effect img {
    width: 60px;
    height: 60px;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 2.5s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.accordion-button {
    background-color: #fff;
    color: #000;
    box-shadow: none;
    border-bottom: 1px solid #e0e0e0;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-color);
    /* red for active */
    background-color: #fff;
}

.accordion-button::after {
    transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 0px !important;
    border: 1px solid #ddd !important;

}

.accordion-button:focus {
    border-color: transparent !important;
    box-shadow: none !important;
}

.category-menu.vastu .row a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-menu.vastu img {
    border-radius: 0px;
    width: 160px;
    height: 120px;
    transition: transform 0.3s ease;
}

.category-menu.vastu img:hover {
    transform: scale(1.05);
}

.gapli li {
    margin-bottom: 8px;
}

.badge-tag {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.badge-tag:hover {
    background-color: #e2e6ea;
    cursor: pointer;
}

.custom-clean-tabs .nav-link {
    color: var(--brand-color);
    font-weight: 500;
    font-size: 16px;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 16px;
    transition: all 0.2s ease-in-out;
}

.custom-clean-tabs .nav-link:hover {
    color: var(--brand-color);
    background-color: transparent;
    border-bottom: 3px solid var(--brand-color);
}

.custom-clean-tabs .nav-link.active {
    color: var(--brand-color);
    font-weight: 600;
    border-bottom: 3px solid var(--brand-color);
    background-color: transparent;
}


.custom-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: #888;
    font-weight: 500;
}

.custom-tabs .nav-link.active {
    color: var(--brand-color);
    border-color: var(--brand-color);
}

.signin-card {
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.signin-input:focus {
    box-shadow: none;
    border-color: var(--brand-color);
}

.toggle-eye-btn {
    border-color: #dee2e6;
}



/* --------------------------------------------------------------- */

@media (min-width: 1367px) and (max-width: 1518px) {
    .multi-col-list {
        /* column-count: 8 !important; */
        column-gap: 10px;
    }

    .category-dropdown {
        margin-right: 12px;
    }

    .fxsm {
        font-size: 15px !important;
    }
}

@media (min-width: 1100px) and (max-width: 1250px) {

    .multi-col-list {
        /* column-count: 6 !important; */
        column-gap: 40px;
    }


    #bannerCarousel {
        width: 100%;
        max-height: 400px;
        overflow: hidden;
    }

    #bannerCarousel img {
        object-fit: cover;
        height: 400px;
    }
}

@media (min-width: 1365.9px) and (max-width: 1516px) {
    .multi-col-list {
        /* column-count: 6 !important; */
        column-gap: 10px;
    }

    #bannerCarousel {
        width: 100%;
        max-height: 450px;
        overflow: hidden;
    }

    #bannerCarousel img {
        object-fit: cover;
        height: 450px;
    }
}


@media (min-width: 320px) and (max-width: 767px) {
    .marquee{
margin-left: auto !important;
margin-right: auto !important;
    }

    .table td {
        width: max-content;
        white-space: nowrap;
    }

    .effect-hover-click {
        width: 100% !important;
    }

    td .input-group {
        min-width: 95px !important;
    }

    .input-group {
        width: auto !important;
        flex-wrap: nowrap;
    }

    .navbar-brand img {
        height: 40px !important;
        width: 80px !important;
    }

    .row {
        gap: 10px;
    }

    .resppopc {
        flex-direction: column;
        align-items: start !important;
    }
}



@media (min-width: 1070px) and (max-width: 1081px) {
    .resppopc {
        flex-direction: column;
        align-items: start !important;
    }

    .product-image-wrapper img {
        height: 200px !important;
    }

    .marquee {

        margin-right: 30%;
    }
}

@media (min-width: 991.9px) and (max-width: 993px) {
    .shine-effect img {
        width: 150px !important;
    }
}

@media (min-width: 990px) and (max-width: 993px) {
    .shine-effect img {
        width: 150px !important;
    }

    .categoryhover img {
        width: 800px !important;
        height: 450px !important;
    }

    .img-fluid.glasshover {
        width: 800px !important;
        height: 450px !important;
    }

    .product-image-wrapper img {
        width: 800px !important;
        height: 450px !important;
    }
}

@media (min-width: 765px) and (max-width: 800px) {
    .categoryhover img {
        width: 600px !important;
        height: 450px !important;
    }

    .img-fluid.glasshover {
        width: 600px !important;
        height: 450px !important;
    }

    .product-image-wrapper img {
        width: 600px !important;
        height: 450px !important;
    }
}

.dropdown-menu.show {
    max-height: 550px;
    overflow: auto;
}

.category-tabs {
    max-height: 400px;
    overflow: auto;
}

@media (min-width: 320px) and (max-width: 993px) {
      form#addToCart .btn{
    width: 100% !important;
    
  }
    .navbar-nav .nav-link:hover {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .custom-clean-tabs .nav-link {
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .shine-effect img {
        max-width: 250px !important;
    }

    form#addToCart {
        display: contents !important;
    }

    .swiper-slide .product-image-wrapper img {
        width: 100% !important;
    }

    .shine-effect.mx-auto {
        width: 100% !important;

    }

    .product-image-wrapper img {
        width: 60%;
        margin-inline: auto;
    }

    .searcorderhis {
        flex-direction: column;
        gap: 10px;
        margin: auto;
        align-items: center;
    }

    .searcorderhis .search-container {
        width: 200px;
    }

    span.producttitle {
        text-align: center;
    }

    a .producttitle {
        align-items: center;
        justify-content: center;
        text-align: center;
        display: block;
    }

    .profile-image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;

    }

    .d-flex.justify-content-between.align-items-center.mb-4 {
        flex-direction: column;
        gap: 10px;
    }


    .category-menu {
        display: none;
        position: absolute;
        top: 100%;

        transform: translateX(0%);
        background: white;
        box-shadow: none !important;
        padding: 20px !important;
        z-index: 999;
        max-width: 100% !important;
        min-width: max-content;
        width: max-content;
    }

    .img-wrapper {
        display: flex;
        margin: auto;
        margin-top: 30px;
        margin-bottom: 30px;

    }


    .effect-hover-click {
        width: auto;
    }

    .categoryhover img {
        width: 60%;
        margin-inline: auto !important;
    }

    .img-fluid.glasshover {
        margin-inline: auto;
        /* width: 100% !important; */
    }

    #bannerCarousel img {
        object-fit: contain !important;
        height: auto !important;
    }

    .brand-text {
        font-size: 16px;
    }

    .needhelp {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
    }

    .top-header {
        flex-direction: column;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 0px !important;
    }

    .d-flex.align-items-center.mb-3.gap-2 {
        flex-direction: column;
    }

    /* .d-flex.align-items-center.mb-3.gap-2 a {
        width: 100%;
    } */
}

@media (min-width: 576px) and (max-width: 993px) {
    .effect-hover-click {
        width: auto !important;
    }

}

@media (min-width: 992px) and (max-width: 993px) {
    .categoryhover img {
        width: 100% !important;
    }

    .product-image-wrapper img {
        width: 100% !important;
    }
}



@media (min-width: 320px) and (max-width: 576px) {
    .categoryhover img {
        width: 99% !important;
    }

    .product-image-wrapper img {
        width: 99% !important;
    }
}

@media (min-width: 993px) and (max-width: 1440px) {



    .shine-effect.mx-auto {
        width: 100% !important;

    }

    #bannerCarousel img {
        object-fit: contain !important;
        height: auto !important;
    }
}

@media (min-width: 320px) and (max-width: 1440px) {
    .infoproduct p {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }
}

@media (min-width: 1140px) {
    .infoproduct p {
        flex-direction: row !important;
        align-items: center;
        flex-wrap: wrap !important;
    }
}


li a:hover {
    color: var(--brand-color) !important;

}


/* Basic styling for nested submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    position: absolute;
    top: 100;
    left: 0%;
    margin-left: 0.1rem;
    display: none;
    min-width: 150px;
    z-index: 1001;
}

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

/* Optional: style submenu links */
.dropdown-submenu .dropdown-menu li a {
    padding: 5px 15px;
    white-space: nowrap;
    background: #fff;
    color: #333;
    text-decoration: none;
}

.order-item-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.search-container:hover .search-input,
.search-input:focus {
    width: 150px;
    opacity: 1;
}

.btn-wishlist {
    position: relative;
    padding: 8px 12px;
    font-size: 18px;
    border: none;
    background-color: transparent;
    color: #000;
    transition: all 0.3s ease;
}

.btn-wishlist.loading i {
    visibility: hidden !important;
    opacity: 0 !important;
}

.btn-wishlist.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1rem;
    margin: -0.5rem 0 0 -0.5rem;
    border: 2px solid #e74c3c;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.btn-wishlist.success i {
    color: #28a745;
}

.btn-wishlist.success i.fa-heart {
    visibility: hidden;
}

.btn-wishlist.success::after {
    content: '\f00c';
    /* Font Awesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 1rem;
    transform: translate(-50%, -50%);
    color: #28a745;
    animation: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Minimal vertical tab styling */
.custom-vertical-tabs .nav-link {
    border: none;
    border-left: 3px solid transparent;
    color: #333;
    border-radius: 0;
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: transparent;
}

.custom-vertical-tabs .nav-link.active {
    border-left: 3px solid var(--brand-color);
    background-color: #f8f9fa;
    color: var(--brand-color);
    font-weight: 500;
}

.custom-vertical-tabs .nav-link:hover {
    background-color: #f1f1f1;
    color: var(--brand-color);
}

.tab-content .tab-pane {
    padding-left: 20px;
}

.form-control:focus {
    border-color: none !important;
    outline: 0;
    box-shadow: none !important;

}

span.webkit {
    margin-left: 8px;
}


.dropdown-item.active,
.dropdown-item:active {
    background-color: unset !important;
}

.tracking-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #dee2e6;
    z-index: 0;
}

.tracking-timeline .step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.tracking-timeline .step:last-child {
    margin-bottom: 0;
}

.step-icon {
    position: absolute;
    left: 10px;
    background-color: #dee2e6;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    z-index: 1;
    color: white;
}

.step.complete .step-icon {
    background-color: #198754;
    /* green */
}

.step.active .step-icon {
    background-color: #ffc107;
    /* yellow */
    color: #000;
}

.step-text {
    font-weight: 500;
    font-size: 16px;
}

table.order td {
    white-space: nowrap;
}
.js-range-slider{
    visibility: hidden;
}