h1,
h2,
h3,
h4,
h5,
h6,
p,
html,
body {
    font-family: "Poppins", sans-serif !important;
}

*::-webkit-scrollbar {
    width: 3px;
}

*::-webkit-scrollbar-track {
    background-color: #e7e7e7;
    border: 1px solid #cacaca;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

*::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #363636;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    cursor: pointer;
}

.btn,
.upload_div_1 {
    padding: 10px 12px;
}

.upload_div_1,
.btn-primary,
.btn-success {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    border-radius: 8px;
}

.upload_div_1,
.btn-primary {
    border: 2px solid #f00;
    background: #f00;
}

.btn-success {
    border: 2px solid #17822c;
    background: #17822c;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-visible,
.upload_div_1:hover {
    color: #f00 !important;
    background: #fff !important;
    border: 2px solid #f00 !important;
    transition: 0.3s;
    box-shadow: none;
}



.btn-secondary {
    color: #f00;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    border-radius: 8px;
    border: 2px solid #f00;
    background: #fff;
}

.btn-secondary:hover {
    color: #fff;
    background: #f00;
    border: 2px solid #f00;
    transition: 0.3s;
}

.btn-secondary:hover svg path {
    fill: #fff;
}

/* header section css start */
.hyphen-header {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1020;
    background: #FFFFFF;
    box-shadow: 0px 0px 18px rgba(106, 116, 133, 0.15);
    border-radius: 0px;
}

.hyphen-header::before {
    position: absolute;
    content: '';
    background-color: #000;
    height: 40px;
    width: 25%;
    z-index: 0;
    top: 0;
    right: 0;
}

.hyphen-header .main_logo {
    width: 178px;
}

.hyphen-header .navbar {
    /* border-radius: 15px; */
    background: #fff;
    padding: 18px 0;
    position: relative;
}

.hyphen-header .navbar-nav .nav-link {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    padding: 0 8px !important;
    line-height: normal;
    position: relative;
}

.topnav li.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1549.98px) {

    .dashboard-nav,
    .custom-container {
        max-width: 1600px;
    }
}

@media (min-width: 1200px) {
    .hyphen-header .navbar .navbar-brand {
        position: absolute;
        top: 10px;
        left: 0px;
        max-width: 120px;
    }
}

.hyphen-header .navbar-nav .nav-link::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 0%;
    top: auto;
    bottom: -10px;
    left: 22px;
    background-color: #f00;
}

.hyphen-header .navbar-nav .nav-link:hover::after {
    width: 40%;
    transition: 0.3s;
}

.hyphen-header .navbar-nav .nav-link.active,
.hyphen-header .navbar-nav .nav-link.active:hover {
    color: #f00;
    font-weight: 600;
}

.hyphen-header .navbar-nav .nav-link.active::after {
    width: 40%;
}

.hyphen-header .navbar-nav .nav-link:hover {
    color: #000000a6;
}

.hyphen-header .navbar .header-info {
    border-radius: 0px 0 0 10px;
    background: #000;
    padding: 8px 20px;
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
}

.hyphen-header .navbar .header-info .opening-det {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.hyphen-header .navbar .header-info .social-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.hyphen-header .navbar .header-info .social-list li a {
    color: #fff;
}

.hyphen-header.fixedHeader {
    position: fixed;
    top: 0;
    animation: slideDown 0.35s ease-out;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* .hyphen-header.fixedHeader > .container {
    padding: 0 !important;
    max-width: 100% !important;
} */

.hyphen-header.fixedHeader .navbar {
    border-radius: 0 0 15px 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.hyphen-header.fixedHeader .navbar .header-info {
    border-radius: 0 0 0 10px;
}

.hyphen-header .navbar-toggler {
    border: 0;
}

.hyphen-header .navbar-toggler:focus {
    box-shadow: none;
}

.hyphen-header .free-submit span.freeBadge {
    position: absolute;
    top: -10px;
    left: -15px;
    padding: 0px 5px;
    background-color: #f00;
    color: #fff;
    font-size: 10px;
    border-radius: 5px;
    animation: freeAnimate 1.5s ease infinite;
    border: 2px solid #fff;
}

@keyframes freeAnimate {
    30% {
        transform: scale(1.2);
    }

    40%,
    60% {
        transform: rotate(-10deg) scale(1.2);
    }

    50% {
        transform: rotate(10deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

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

/* header section css end */

.user_img1 img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: fill;
}

.btn.action_btn {
    background: #fff;
    box-shadow: none !important;
    width: 37px;
    height: 37px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 2px !important;
    border: 1.5px solid #e1e4eb;
    border-radius: 12px;
}

.mega-menu {
    /* position: absolute; */
    top: 110px;
    left: 0;
    width: 100%;
    z-index: 9;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    margin-top: 110px;
}

.scrollControllers {
    top: 32px;
}

.mega-menu .parent-menu-wrapper {
    overflow-x: auto;
}

.mega-menu .parent-menu-wrapper::-webkit-scrollbar {
    width: 2px !important;
    height: 4px;
}

.mega-menu .parent-menu-wrapper::-webkit-scrollbar-track {
    background-color: #e7e7e7;
    border: 0;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3) !important;
}

.mega-menu .parent-menu-wrapper::-webkit-scrollbar-thumb {
    border-radius: 1px;
    background-color: #363636;
}

.mega-menu .single-menu-link {
    transition: all .2s ease;
    cursor: pointer;
    min-width: 150px;
    max-width: 150px;
}

.mega-menu .single-menu-link:hover {
    background-color: #f1f1f1;
    transition: all .2s ease;
}

.mega-menu .single-menu-link .link-icon {
    height: 40px;
    width: 40px;
}

.mega-menu .single-menu-link .link-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #000000;
    margin-bottom: 0;
    font-weight: 700;
    /* white-space: nowrap; */
}

.hero-video-wrapper {
    /* min-height: calc(100vh - 110px);
    max-height: calc(100vh - 110px); */
    /* margin-bottom: 110px; */
}

.hero-video-wrapper .background-video {
    /* min-height: calc(100vh - 110px);
    max-height: calc(100vh - 110px); */
    object-fit: cover;
    aspect-ratio: 3/1;
    height: 100%;
}

.hero-img-wrapper .banner-bg-img {
    min-height: calc(70vh - 110px);
    max-height: calc(70vh - 110px);
}

.hero-img-wrapper .hero-benner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search-section {
    /* position: absolute; */
    width: 100%;
    height: 100px;
    left: 0px;
    top: auto;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    box-shadow: 0px 0px 18px rgba(106, 116, 133, 0.15);
}

.searchbar.form-control {
    font-weight: 500;
    font-size: 15px;
    line-height: 150%;
    color: #8C8C8C;
    padding: 10px 15px;
}

/* ============= popular product css starts here ============== */

.common-section-space {
    padding: 60px 0;
}

.common-heading {
    font-weight: 700;
    font-size: 50px;
    line-height: 140%;
}

.text-red {
    color: #f00;
}

.common-subheading {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #434343;
}


.popular-products .slider-controls button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
}


.popular-products .products-row {
    margin-top: 40px;
}


.popular-products .product-card {
    border-radius: 12px;
    padding: 8px;
    background: #F5F5F5;
    border-radius: 12px;

}

.popular-products .product-card .readMore-link {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #FF0000;
}

.popular-products .product-card .image-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}


.popular-products .product-card .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}


.popular-products .product-card .image-wrap img:hover {
    transform: scale(1.04);
}


.popular-products .product-card .wishlist-btn {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #d90429;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}


.popular-products .product-card .sku {
    font-size: 14px;
    color: #878787;
}

.popular-products .product-card .btn-quote {
    margin-top: 12px;
    width: 100%;
    background: var(--btn-red);
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.popular-products .product-card .btn-quote:hover {
    background: var(--btn-red-hover);
    transform: translateY(-2px);
}

.product-card .product-heading {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #434343;
    text-decoration: none;
}

.product-card .category-heading {
    font-weight: 600;
    font-size: 24px;
    line-height: 135%;
    /* white-space: nowrap; */
    color: #434343;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    min-height: 65px;
    max-height: 65px;
}

.brand-list-wrapper {
    background: #F5F5F5;
    border-radius: 12px;
}

.single-brand .brand-img-outer {
    background-color: #fff;
    aspect-ratio: 1/1;
    width: 100%;
    border: 2px solid #cacaca;
    border-radius: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.single-brand .brand-img-outer:hover {
    border-color: #f00;
    transform: translateY(-4px);
    transition: 0.3s ease;
    box-shadow: rgba(46, 12, 12, 0.19) 0px 15px 50px 0px;
}

/* .popular-products.fixed-height-desc .product-card {
    min-height: 560px;
    height: 560px;
} */

.popular-products .swiper-button-next:after,
.popular-products .swiper-button-prev:after {
    display: none;
}

/* ============= popular product css ends here ============== */


/* Fixed icon (75x75) bottom-right */
.compare-toggle {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 10;
    border: 2.77778px solid #FF0000;
    opacity: .35;
    transition: all .2s ease;
}

.compare-toggle:hover {
    opacity: 1;
    width: 75px;
    height: 75px;
    transition: all .2s ease;
}

/* small white icon square inside (arrows) */
.compare-toggle .inner-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.compare-close-mini {
    position: absolute;
    right: -6px;
    bottom: 55px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 1110;
    border: 1px solid #f00;
    cursor: pointer;
    opacity: 0;
}

.compare-toggle:hover .compare-close-mini {
    opacity: 1;
}

.compare-popup {
    position: fixed;
    right: 50px;
    bottom: 110px;
    width: 250px;
    background: rgba(207, 207, 207, 0.65);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow);
    z-index: 1090;
    display: none;
}

.compare-popup::after {
    content: "";
    position: absolute;
    right: 38px;
    bottom: -12px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid var(--popup-bg);
}

.compare-popup h5 {
    text-align: center;
    color: #f00;
    margin: 0 0 14px;
    font-size: 18px;
    letter-spacing: 0.6px;
    font-weight: 700;
}

/* pill items */
.compare-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.compare-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.65);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    font-weight: 600;
    color: #222;
    position: relative;
}

.compare-item .label {
    font-size: 15px;
}

.compare-item .close-btn {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #666;
    font-weight: 700;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}

.coming-soon-cta {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.top-brand-ticker .blurder-red-bg,
.popular-category-section .blurder-red-bg {
    position: absolute;
    width: 917.04px;
    height: 75.84px;
    left: 50%;
    top: 50%;
    content: '';
    background: rgba(255, 0, 0, 0.7);
    filter: blur(250px);
    border-radius: 150px;
    transform: rotate(11.23deg) translate(-50%, 20%);
}

.top-brand-ticker .singlebrand {
    height: 175px;
    width: 175px;
    background-color: #fff;
    border-radius: 12px;
    margin: 0 10px;
}

.top-brand-ticker .singlebrand img {
    width: 100%;
    object-fit: contain;
}

.top-brand-ticker::before,
.top-brand-ticker::after {
    content: "";
    position: absolute;
    width: 160px;
    top: 0;
    height: 100%;
    z-index: 2;
}

.top-brand-ticker::before {
    left: auto;
    right: 0;
    background: linear-gradient(270deg, #ffffff 0, rgba(255, 255, 255, 0) 100%);
}

.top-brand-ticker::after {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0, rgba(255, 255, 255, 0) 100%);
}

.hyphen-footer {
    padding: 20px 0 0;
    background-color: #F5F5F5;
}


.hyphen-footer .quick-link-footer .quick-links li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
}

.hyphen-footer .quick-link-footer .quick-links li::before {
    content: url("../img/icons/broken-arrow.svg");
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-40%);
}

.hyphen-footer a {
    text-decoration: none;
}

.hyphen-footer .quick-link-footer .quick-links li a {
    color: #000;
    cursor: pointer;
}

.hyphen-footer .quick-link-footer .quick-links li a:hover {
    color: #f00;
}

.hyphen-footer .quick-link-footer h4.quick-heading {
    color: #f00;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
}

/* 
.hyphen-footer .quick-link-footer h4.quick-heading::after {
    content: "";
    height: 3px;
    width: 40px;
    background-color: #f00;
    position: absolute;
    left: 0;
    bottom: 20px;
} */

.achievement-media img {
    max-height: 75px;
}

.hyphen-footer .newsletter-footer {
    background-color: #000;
}

.hyphen-footer .newsletter-footer .newsletter-form label {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.hyphen-footer .newsletter-footer .newsletter-form .form-control {
    border-radius: 50px;
    border: transparent;
    box-shadow: none !important;
    padding: 10px 105px 10px 20px;
}

.hyphen-footer .newsletter-footer .newsletter-form .btn {
    background-color: #f00;
    color: #fff;
    border-radius: 0 50px 50px 0;
    padding: 8px 30px;
    position: absolute;
    right: 0;
    top: 32px;
}

.hyphen-footer .newsletter-footer .social-list li a {
    height: 35px;
    width: 35px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
}

.hyphen-footer .footer-copyright {
    background: #000;
    border-top: 1px solid #CCCCCC;
}


@media (max-width: 540px) {
    .compare-popup {
        right: 16px;
        left: 16px;
        width: auto;
        bottom: 100px;
    }

    .compare-toggle {
        right: 18px;
        bottom: 18px;
    }

    .compare-close-mini {
        display: none;
    }
}

.mega-dropdown-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 250px;
    /* background: rgba(255, 255, 255, 0.75); */
    background: rgba(255, 255, 255);
    backdrop-filter: blur(20px);
    padding: 30px;
    display: none;
    border-top: 1px solid #e1e1e1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.31);
    z-index: 9;
}

.mega-dropdown-panel .submenu .mega-menu-links-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

/* Column backgrounds */
.mega-dropdown-panel .submenu .mega-menu-links-list::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            #ffffff 0%,
            #ffffff 33.333%,
            #f5f5f5 33.333%,
            #f5f5f5 66.666%,
            #ffffff 66.666%,
            #ffffff 100%);
    z-index: 0;
}

/* Keep list items above background */
.mega-dropdown-panel .submenu .mega-menu-links-list li {
    position: relative;
    z-index: 1;
    padding: 8px 12px;
}


.mega-dropdown-panel .submenu {
    display: none;
}

.parent-item {
    cursor: pointer;
}

.parent-item:hover,
.parent-item.active {
    background: #f5f5f5;
}

.submenu ul {
    padding-left: 0;
    list-style: none;
}

.submenu ul li a {
    font-size: 16px;
    color: #383838;
    text-decoration: none;
}

.submenu ul li a:hover {
    color: #e63946;
}


#compareAnimBg {
    position: fixed;
    right: 30px;
    bottom: 20px;
    width: 75px;
    height: 75px;
    opacity: 0;
    z-index: 999;
    pointer-events: none;
    transition: opacity .35s ease;
}

#compareAnimBg.animate-bg {
    transform: translateY(-100px);
    animation: bgPop 0.8s ease forwards;
}

@keyframes bgPop {
    0% {
        transform: translateY(-100px) scale(0.4);
        opacity: 0;
    }

    30% {
        transform: translateY(-130px) scale(1.15);
        opacity: 1;
    }

    60% {
        transform: translateY(-120px) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(12px) scale(0.4);
        opacity: 0;
    }
}



.contact-modal-wrapper .modal-backdrop.show {
    opacity: 0.4 !important;
    backdrop-filter: blur(8px);
}

.contact-modal-wrapper .contact-modal {
    border-radius: 14px;
    position: relative;
    border: none;
    overflow: hidden;
}

.contact-modal-wrapper .modal-close-btn {
    position: absolute;
    right: 25px;
    top: 25px;
    z-index: 10;
    font-size: 20px;
}

.form-control,
.form-select {
    background: #F5F5F5;
    border: 2px solid #DADADA;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #8C8C8C;
    padding: 10px 16px;
    box-shadow: none !important;
}

.contact-modal-wrapper textarea.form-control {
    height: auto;
}

/* Submit Button */
.contact-modal-wrapper .submit-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 26px;
    border-radius: 8px;
    font-weight: 600;
}

.contact-modal-wrapper .submit-btn:hover {
    background: #c10510;
}

.filter-sidebar {
    background: #F5F5F5;
    border: 2px solid #DADADA;
    border-radius: 12px;
}

.filter-sidebar .filter-icon {
    font-size: 20px;
    cursor: pointer;
}

.filter-sidebar .accordion-button {
    background: transparent !important;
    padding-left: 0;
    font-weight: 600;
    font-size: 15px;
}

.filter-sidebar .accordion-button:not(.collapsed) {
    color: #000;
    background: transparent;
    box-shadow: none;
}

.filter-sidebar .accordion-item {
    border: none;
    background: transparent;
}

.filter-sidebar .accordion-body {
    padding-left: 0;
}

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

.filter-sidebar .filter-list li {
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #626262;
}

.filter-sidebar .filter-list input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.popular-category-section .popular-category-card {
    background-color: #fff;
    border-radius: 12px;
    aspect-ratio: 1/1;
    padding: 8px;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.052);
    text-align: center;
    border: 2px solid #DADADA;
    transition: all .3s ease;
}

.popular-category-section .popular-category-card:hover {
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.22);
    transform: translateY(-5px);
    transition: all .3s ease;
}

/* product details page css starts here */

.product-gallery-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
    flex-direction: row-reverse;
}

/* ---- THUMBS ---- */
.product-gallery-thumbs {
    width: 110px;
    flex: 0 0 110px;
}

.product-gallery-thumbs .swiper-slide {
    height: 90px !important;
    border-radius: 10px;
    overflow: hidden;
    opacity: .7;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .2s;
}

.product-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #d0d0d0;
}

.product-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- MAIN SLIDER ---- */
.product-gallery-main {
    flex: 1;
    min-width: 0;
}

.product-gallery-main .viewed-img-card {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #ebebeb;
    border-radius: 12px;
    padding: 8px;
}

.product-gallery-main .viewed-img-card img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
}


/* Product Title */
.product-info .product-title {
    font-size: 26px;
}

/* Qty Selector */
.quantity-selector .qty-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 6px;
    font-size: 20px;
    line-height: 1;
}

.quantity-selector .qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ccc;
    margin: 0 8px;
    border-radius: 6px;
}

/* Accordion */
.accordion-button {
    font-weight: 600;
    padding-left: 0;
}

.discription-section .benefits-card {
    background: #F5F5F5;
    border-radius: 12px;
}

.discription-section .benefits-card p {
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    color: #434343;
}

/* product details oage css ends here */


.custom-checkbox {
    display: block;
    margin-bottom: 15px;
}

.custom-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.custom-checkbox label {
    position: relative;
    cursor: pointer;
}

.custom-checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #FF0000;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.custom-checkbox input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #FF0000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* compare css starts here */

.compare-products .compare-card {
    background: #F5F5F5;
    border: 2px solid #DADADA;
    border-radius: 12px;
    padding: 20px;
}

.compare-products .compare-product-img {
    width: 140px;
    min-width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.compare-products .compare-product-name {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

.compare-products .compare-section-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.compare-products .compare-table td {
    padding: 8px 10px;
    font-size: 14px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f1f1;
    background-color: transparent;
}

.compare-products .compare-table .title-col {
    font-weight: 500;
    width: 200px;
    color: #555;
}

.compare-products .compare-check {
    color: #24b047;
    font-size: 16px;
}

.compare-products .compare-cross {
    color: #e02424;
    font-size: 16px;
}

.compare-products .remove-compared-product {
    top: 4px;
    left: 4px;
    cursor: pointer;
}

/* compare css ends here  */

/* New Home page for marketplace static css starts here */

.hero-section {
    position: relative;
    background: center/cover no-repeat;
    /* padding: 250px 0 40px; */
    padding: 330px 0 70px;
    height: calc(100vh - 35px);
    min-height: 875px;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 88px;
    left: 0px;
    top: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(159.49deg, #FFFFFF 41.13%, rgba(255, 255, 255, 0.13) 90.92%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-left .hero-title {
    font-family: 'Hiragino Kaku Gothic StdN' !important;
    font-weight: 800;
    font-size: 35px;
    line-height: 50px;
    color: #000000;
}


/* .hero-left .highlight {
    position: relative;
    z-index: 9;
}

.hero-left .highlight::before {
    position: absolute;
    bottom: 10px;
    left: 0;
    height: 20px;
    width: 100%;
    content: '';
    background: #f00;
    z-index: -1;
} */

.hero-left .hero-desc {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 600;
}

/* SEARCH */
.hero-search {
    overflow: hidden;
    max-width: 720px;
    background: #FFFFFF;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    border: 2px solid #DADADA;
}

.hero-search .hero-select {
    max-width: 150px;
    border: none;
    border-right: 1px solid #5b5b5b;
    color: #383838;
}

.hero-search .hero-input {
    border: none;
}

.hero-tags .single-tag {
    display: inline-block;
    border: 1px solid #383838;
    color: #383838;
    padding: 5px 12px;
    margin-right: 8px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s ease;
    font-weight: 600;
    background-color: #fff;
}

.hero-tags .single-tag:hover {
    background-color: #FF0000;
    border: 1px solid #f00;
    transition: all .2s ease;
    color: #fff;
}



/* ========== NAVBAR ========= */
.hero-navbar {
    z-index: 10;
    padding: 24px 0;
    background-color: #fff;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.082);
    /* border-bottom: 1px solid #C9C9C9; */
}

.hero-navbar .main_logo {
    width: 128px;
}

.hero-navbar .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    color: #000000;
}

.hero-navbar .navbar-nav .nav-link.active {
    color: #f00;
}

.hero-navbar.with-serchbar {
    /* padding-bottom: 16px; */
}

.hero-navbar.with-serchbar .header-search-bar {
    background: #f5f5f5;
    padding: 8px;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.052);
    border-radius: 12px;
    border: 2px solid #DADADA;
}

.mrkplace-menu {
    background-color: #fff;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12);
    top: 0;
    margin-top: 93px;
    z-index: 9;
    background: #FFFFFF;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin: 125px 48px 0;
    width: calc(100% - 96px) !important;
}

.mrkplace-dropdown-panel {
    top: 210px;
}

.hero-banner-form {
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid #F5F5F5;
    backdrop-filter: blur(20px);
    border-radius: 16px;
}

/* ========== COUNTER ========= */
.counter-section,
.popular-products-section {
    background: #E5E5E5;
    padding: 40px 0;
}

.counter-section .counter-title {
    /* color: #383838; */
    font-size: 36px;
    font-weight: 700;
    line-height: 130%;
}

.counter-section .counter {
    /* color: #383838; */
    font-weight: 600;
    font-size: 36px;
}

.counter-section p {
    /* color: #383838; */
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}


.categories-section {
    padding: 70px 0;
    background: #f5f5f5;
}

/* Card */
.categories-section .category-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: rgba(100, 100, 111, 0.15) 0px 7px 29px 0px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Title */
.categories-section .category-card .category-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 16px;
}

.categories-section .category-card .category-image {
    border-radius: 14px;
    padding: 0;
    margin-bottom: 16px;
    justify-content: center;
}

.categories-section .category-card .category-image img {
    object-fit: cover;
    width: 100%;
}

/* Button */
.categories-section .category-card .category-btn {
    border: 2px solid #f00;
    color: #f00;
    background: transparent;
    border-radius: 12px;
    font-weight: 600;
    padding: 8px 0;
    transition: 0.3s ease;
}

.categories-section .category-card .category-btn:hover {
    background: #f00;
    color: #fff;
}

.new-product-categories {
    background: #fff;
    padding: 40px 0;
}

.new-product-categories .circle-category {
    width: 160px;
    height: 160px;
    border: 2px solid #cacaca;
    border-radius: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
    margin: 0 10px;
}

.new-product-categories .circle-category:hover {
    border-color: #f00;
    transform: translateY(-4px);
    transition: 0.3s ease;
    box-shadow: rgba(46, 12, 12, 0.19) 0px 15px 50px 0px;
}

.new-product-categories .circle-category img {
    /* filter: brightness(0.05);
    opacity: 0.8; */
    max-width: 120px;
}

.new-product-categories .circle-category:hover img {
    filter: brightness(1);
    opacity: 1;
    transition: 0.3s ease;
}

.new-product-categories .circle-category p {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    line-height: 130%;
    margin: 0;
}

.popular-products-section.popular-products .product-card,
.categories-list-wrapper .brand-list-wrapper,
.categories-list-section.popular-products .product-card {
    background: #FFFFFF;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.052);
    border-radius: 12px;
    border: 2px solid #DADADA;
    transition: all .3s ease;
}

.popular-products-section.popular-products .product-card:hover,
.categories-list-section.popular-products .product-card:hover {
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.22);
    transform: translateY(-5px);
    transition: all .3s ease;
}

.categories-list-section {
    padding: 70px 0;
}

.categories-list-section .categories-list-wrapper {
    background: #F5F5F5;
    border-radius: 12px;
}

.categories-list-section .filter-sidebar {
    background: #FFFFFF;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12);
    border-radius: 12px !important;
    border: 0;
}

.categories-list-wrapper .list-tab-wrapper {
    border-radius: 12px;
    min-height: 296px;
}

.categories-list-wrapper .list-tab-wrapper .nav-link::before {
    content: '';
    height: 8px;
    width: 0px;
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    background-color: #f00;
    z-index: -1;
    transition: all .3s ease;
}

.categories-list-wrapper .list-tab-wrapper .nav-link.active::before,
.categories-list-wrapper .list-tab-wrapper .nav-link:hover::before {
    width: 80px;
    transition: all .3s ease;
}

.categories-list-section.popular-products .product-card .image-wrap {
    aspect-ratio: 1.1/1;
    height: 150px;
    width: auto;
    width: 150px;
    flex-shrink: 0;
    flex-grow: 0;
    /* flex-grow: 1; */
}

.categories-list-section.popular-products .vertical-view .product-card .image-wrap {
    aspect-ratio: 4/3;
    width: 100%;
    height: auto;
}

.categories-list-section.popular-products .product-card .product-heading {
    font-size: 18px;
    text-decoration: none;
}

.categories-list-section.popular-products .product-card .sku {
    font-size: 16px;
}

.categories-list-section.popular-products .product-card .hoverhidden-details,
.popular-products-section.popular-products .product-card .hoverhidden-details {
    height: 42px;
}

.categories-list-section.popular-products .product-card .hoverhidden-details,
.popular-products-section.popular-products .product-card .hoverhidden-details {
    display: block !important;
    transition: all .2s ease;
}

.categories-list-section.popular-products .product-card:hover .hoverhidden-details,
.popular-products-section.popular-products .product-card:hover .hoverhidden-details,
.categories-list-section.popular-products .product-card .buttons-wrppr,
.popular-products-section.popular-products .product-card .buttons-wrppr {
    display: none !important;
    transition: all .2s ease;
}

.categories-list-section.popular-products .product-card:hover .buttons-wrppr,
.popular-products-section.popular-products .product-card:hover .buttons-wrppr {
    display: flex !important;
    transition: all .2s ease;
}


/* New Home page for marketplace static css ends here  */


@media (min-width:1549.98px) {
    .scrollControllers {
        display: none;
    }

    .mega-menu .scrollControllers {
        display: flex;
    }
}


@media (min-width:991.98px) {
    .filter-sidebar {
        position: sticky;
        top: 120px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}

@media (max-width:1399.98px) {
    .popular-category-section .popular-category-card {
        aspect-ratio: auto;
        height: 100%;
    }

    .hero-left .hero-title {
        font-size: 36px;
    }
}

@media (max-width:1199.98px) {
    .common-heading {
        font-size: 40px;
    }

    .hyphen-header .navbar-nav .nav-link {
        padding: 6px 12px !important;
    }

    .hyphen-header::before {
        display: none;
    }

    /* .hyphen-header {
        background: transparent;
        box-shadow: none;
    } */

    /* .hero-video-wrapper {
        min-height: calc(100vh - 110px);
        max-height: calc(100vh - 110px);
    } */

    /* .hero-video-wrapper,
    .hero-img-wrapper {
        margin-top: 95px;
    } */

    .mega-menu {
        top: 0px;
    }

    .mega-dropdown-panel {
        top: 230px;
    }

    .hero-img-wrapper .hero-benner-text {
        /* transform: translate(-50%, -75%); */
        width: 100%;
    }


    .hyphen-header .navbar-nav .nav-link::after {
        content: none !important;
    }

    .hero_banner_section .hero-banner-div .hero-details h1 {
        font-size: 24px;
        line-height: 150%;
    }
}


@media (max-width:991.98px) {

    .top-brand-ticker .blurder-red-bg,
    .popular-category-section .blurder-red-bg {
        width: 200px;
        height: 165.84px;
    }

    .common-heading {
        font-size: 30px;
    }

    .common-section-space {
        padding: 70px 0;
    }

    .common-subheading {
        font-size: 16px;
    }

    .discription-section .benefits-card p {
        font-size: 14px;
    }

    .hyphen-header .container.dashboard-nav {
        padding: 0;
    }

    .mega-dropdown-panel .submenu .mega-menu-links-list {
        column-count: 2;
    }

    .hero-left .hero-title,
    .counter-section .counter-title {
        font-size: 30px;
    }

    .mega-dropdown-panel .submenu .mega-menu-links-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-dropdown-panel .submenu .mega-menu-links-list::before {
        background: linear-gradient(to right,
                #ffffff 0%,
                #ffffff 50%,
                #f5f5f5 50%,
                #f5f5f5 100%);
    }

    .submenu ul li a {
        font-size: 14px;
    }
}


@media(max-width: 767.98px) {
    .compare-products .compare-table .title-col {
        width: auto;
    }

    .product-gallery-wrapper {
        display: block;
    }

    .product-gallery-thumbs {
        width: 100%;
        flex: none;
    }

    .product-gallery-thumbs .swiper-wrapper {
        flex-direction: row;
    }

    .product-gallery-thumbs .swiper-slide {
        width: 100px;
        height: 70px;
    }

    .counter-section,
    .popular-products-section,
    .new-product-categories,
    .categories-list-section {
        padding: 40px 0;
    }

    .new-product-categories .circle-category {
        width: 120px;
        height: 120px;
    }

    .top-brand-ticker::before,
    .top-brand-ticker::after {
        content: "";
        position: absolute;
        width: 80px;
        top: 0;
        height: 100%;
        z-index: 2;
    }

    .new-product-categories {
        padding-bottom: 0;
    }
}

@media(max-width: 575.98px) {
    .hero-search-btn {
        width: 100%;
    }

    /* .hero-search .hero-select {
        max-width: 120px;
    } */

    .categories-list-section.popular-products .product-card .image-wrap {
        height: 130px;
    }
}

@media(max-width: 409.98px) {
    .categories-list-section.popular-products .product-card {
        flex-direction: column;
    }
}