:root {
    --primaryColor: #FC1100;
    --secondaryColor: linear-gradient(-180deg, #fc1100 50%, #c42833 100%);
    --lightBg: #FFF5F5;
    --grayBg: #F8F8F8;
    --blackColor: #000;
    --whiteColor: #fff;
    --smPadding: 3rem .5rem;
    --lgPadding: 4rem 0;
}


/* scroll */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background: var(--whiteColor);
}

::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondaryColor);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* scroll */

/* start font-family */

@font-face {
    font-family: 'urbanist_extrabold';
    src: url('../font/Urbanist-ExtraBold');
    src: url('../font/Urbanist-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../font/Urbanist-ExtraBold.woff2') format('woff2'),
        url('../font/Urbanist-ExtraBold.woff') format('woff'),
        url('../font/Urbanist-ExtraBold.ttf') format('truetype'),
        url('../font/Urbanist-ExtraBold.svg#Urbanist-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'urbanist_medium';
    src: url('../font/Urbanist-Medium.eot');
    src: url('../font/Urbanist-Medium.eot?#iefix') format('embedded-opentype'),
        url('../font/Urbanist-Medium.woff2') format('woff2'),
        url('../font/Urbanist-Medium.woff') format('woff'),
        url('../font/Urbanist-Medium.ttf') format('truetype'),
        url('../font/Urbanist-Medium.svg#Urbanist-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'urbanist_semibold';
    src: url('../font/Urbanist-SemiBold.eot');
    src: url('../font/Urbanist-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../font/Urbanist-SemiBold.woff2') format('woff2'),
        url('../font/Urbanist-SemiBold.woff') format('woff'),
        url('../font/Urbanist-SemiBold.ttf') format('truetype'),
        url('../font/Urbanist-SemiBold.svg#Urbanist-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'russo_one';
    src: url('../font/RussoOne-Regular.eot');
    src: url('../font/RussoOne-Regular.eot?#iefix') format('embedded-opentype'),
        url('../font/RussoOne-Regular.woff2') format('woff2'),
        url('../font/RussoOne-Regular.woff') format('woff'),
        url('../font/RussoOne-Regular.ttf') format('truetype'),
        url('../font/RussoOne-Regular.svg#RussoOne-Regular') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* end font-family */

body {
    font-family: 'urbanist_medium';
    /* font-size: 14px; */
}

h1,
h2,
h3,
h4 {
    font-family: 'russo_one';
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    line-height: 1.5;
    margin-bottom: 0;
}

header,
section,
footer {
    padding: var(--smPadding);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.light-bg {
    background-color: var(--lightBg);
}

.gray-bg {
    background-color: var(--grayBg);
}

.cursor-pointer {
    cursor: pointer;
}

.w-fit {
    width: fit-content;
}

.object-cover {
    object-fit: cover;
}

.btn-primary {
    background: var(--secondaryColor) !important;
    font-weight: 700;
    padding: .6rem 1rem;
    border: 0;
}

.call-number {
    font-family: 'russo_one';
    font-size: 18px;
}

.info-call {
    width: calc(100% - 55px);
}

.info-number .btn-primary {
    width: 50px;
    height: 50px;
    font-size: 21px;
}

textarea {
    resize: none;
}

.w-90 {
    width: 90%;
}

.w-95 {
    width: 95%;
}

.owl-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}



.owl-dot {
    width: 15px;
    height: 15px;
    border: 1px solid var(--primaryColor);
    border-radius: 100px;
}

.owl-dot.active {
    background-color: var(--primaryColor);
}

.btn-secondary {
    background: #F5F6FA;
    border: 0;
    color: #777777;
    width: 230px;
    padding: 13px 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-secondary:hover {
    background-color: #cfcfcf;
    color: #777777;
}

.filter-list {
    display: flex;
    align-items: center;
    /* overflow: scroll; */
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .10);
    background: var(--whiteColor);
    padding: 10px;
    border: 1px solid #F3F3F3;
    border-radius: 8px;
    /* width: fit-content; */
    margin: auto;
}

.filter-list .dropdown {
    width: 15%;
}

button#clear_filters {
    width: 10%;
}

/* .filter-list .dropdown {
    width: calc(50% - 10px);
}

.filter-list .dropdown button {
    width: 100%;
} */

.filter-list .dropdown:last-child button {
    width: fit-content;
    min-width: 150px;
}

.dropdown-toggle::after {
    content: none;
}

/* start banner section */
.banner {
    background: url('../img/banner-bg.png') no-repeat;
    background-size: cover;
    background-position: center;
    height: 80vh;
}

/* end banner section */

/* start product section */
.product .card {
    box-shadow: 0 5px 10px lightgray;
    min-height: 370px;
}

.product .card h5 {
    font-family: urbanist_extrabold;
}

.product .card .card-img-top {
    height: 200px;
    object-fit: contain;
    background-color: white;
}

/* end product section */

/* start testimonial section */
.testimonial .user-img i {
    position: absolute;
    left: 7px;
    bottom: -12px;
    font-size: 30px;
}

/* end testimonial section */

/* start footer section */
footer .follow-us a {
    display: block;
    color: #88889E;
    border: 1px solid #88889E;
    text-align: center;
    padding: 6px 1px 0px 1px;
    width: 35px;
    height: 35px;
    border-radius: 100px;
}

footer .border-bottom {
    background-color: var(--primaryColor);
    width: 73px;
    height: 5px;
    border-radius: 10px;
}

/* end footer section */

/* start inner section */
.inner-banner {
    background: url('../img/inner-bg.png') no-repeat;
    background-size: cover;
}

/* end inner section */

/* start product-details section */
.product-details h6 {
    font-family: "urbanist_extrabold";
}


/* Slider CSS Start  */

.thumbnail_slider {
    max-width: 700px;
    margin: 0px auto;
}

.splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 580px;
    overflow: hidden;
    transition: .2s;
    border-width: 2px !important;
    margin: 10px 4px;
}

.splide__list .splide__slide {
    margin-top: 0;
}

#primary_list .splide__slide {
    height: 320px !important;
    background-size: contain !important;
}

#thumbnail_list .splide--nav>.splide__track>.splide__list>.splide__slide {
    border: 1px solid black !important;
    width: 110px !important;
    height: 110px !important;
}

#thumbnail_list .splide__slide.is-active.is-visible {

    background-size: contain !important;
    border: 1px solid black !important;
}



/* .splide--nav>.splide__track>.splide__list>.splide__slide.is-active {
    box-shadow: 2px 3px 8px #000000a3;
} */

.splide__slide img {
    width: auto;
    height: auto;
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

/* Slider CSS End  */

/* end product-details section */
/* custpm css */
.product-image {
    width: 100%;
    height: 220px;
    /* fixed height */
    object-fit: cover;
    /* prevents stretching and keeps proportions */
    border-radius: 8px;
}

.product-main-img {
    width: 100%;
    height: 350px;
    object-fit: fill;
}

.product-thumb-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
}

.swiper-wrapper {
    position: relative;
}

.swiper-slide {
    border: 1px solid #ddd !important;
    padding: 5px !important;
}

.thumbSwiper .swiper-slide-thumb-active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
}

.thumb-prev,
.thumb-next {
    width: 20px !important;
    height: 20px !important;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

    position: absolute;
    top: 80% !important;
    transform: translateY(-80%) !important;
    /* 🔥 centers vertically */

    z-index: 10;
}

.thumb-prev::after,
.thumb-next::after {
    font-size: 12px !important;
    font-weight: bold;
    color: #000;
}

.thumb-prev {
    left: 0px !important;
}

.thumb-next {
    right: 0px !important;
}

.loader {
    padding: 20px;
    display: none;
    text-align: center;
}

.lang-switch {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.border-red {
    border: 1px solid #c42833;
}

.compat-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 14px;
    min-height: 100px;
}

/*.spec-card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 16px;
    height: 100%;
}

.spec-label {
    display: block;
    font-weight: 700;
  
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #6c757d;
    letter-spacing: 0.5px;
}

.spec-value {
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #212529;
}*/
.spec-wrapper {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 10px 12px;
}

.spec-row {
    padding: 14px 20px;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 700;
    /* BOLD */
    color: #495057;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.4px;
}

.spec-value {
    font-weight: 500;
    color: #212529;
}

.stock-qty {
    font-weight: 600;
    opacity: 0.9;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.product-img-wrap {
    border-radius: 12px 12px 0 0 !important;
    overflow: hidden !important;
}

.product-img-wrap img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
}

.product-title {
    font-weight: 600;
    color: #212529;
    line-height: 1.3;
}

.rating i {
    color: #f5b301;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.8rem;
    color: #6c757d;
    margin-left: 4px;
}

.product-price {
    font-weight: 700;
    color: #000;
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f5b301;
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.meta-info small {
    font-size: 0.8rem;
}

.product-gallery {
    position: relative;
}

.featured-badge-detail {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffc107;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    z-index: 10;
    text-transform: uppercase;
}

.center-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-loader .loader-box {
    padding: 15px 25px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
}

.disp-none {
    display: none;
}