@import url('developer.css');
@import url('color.css');
@import url('fonts.css');
@import url('style.css');

.fixed-header .bottom-header {
    background: #1e1e1e;
}

.fixed-header .light-header .bottom-header {
    background: #fff;
}

.product-card:hover .heart-btn {
    opacity: 1;
}

.modal-box .form-group label {
    color: var(--black-white-black);
}


/* Custom styling for the main image area to ensure a good aspect ratio */
.swiper-container-main {
    width: 100%;
    height: 500px;
    /* Fixed height for demo */
    max-width: 450px;
}

/* Styling for the thumbnail slider */
.swiper-container-thumbs {
    width: 100%;
    max-width: 450px;
    height: 100px;
    box-sizing: border-box;
    padding: 10px 65px;
    margin-top: 10px;
}


/* Thumbnail image styling */
.thumbnail-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    cursor: pointer;
}

/* Styling for Swiper navigation buttons */
.swiper-button-prev,
.swiper-button-next {
    color: #000;
    background: #fff;
    width: 44px;
    border: solid 1px #E2E8F0;
    height: 44px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 14px !important;
}

/* Adjusting font size for product title */
.product-title {
    font-size: 2.5rem;
    /* 40px */
    line-height: 1;
}

.swiper-container-thumbs .swiper-slide {
    padding: 8px;
    border: solid 1px var(--color-slate-200);
}

.swiper-container-thumbs .swiper-slide.swiper-slide-thumb-active {
    border-color: var(--black-white-black);
}
@media (min-width: 768px) {
    .product-title {
        font-size: 3rem;
        /* 48px */
    }
}

/* Custom scrollbar to match dark inquiry button */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}



#main-swiper .swiper-button-prev,#main-swiper .swiper-button-next{display: none !important;}










