.product-search-section {
    width: 85%;
    margin: auto;
    padding-bottom: 100px;
}

.search-box {
    border: 1px solid var(--BlackColor);
    border-radius: 25px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.search-box .search-input {
    border: none;
    padding: 12px 20px;
    flex: 1;
    border-radius: 0;
    font-size: var(--Font18);
    font-weight: var(--Font400);
    outline: none;
    box-shadow: none;
}

.search-box .search-btn {
    border-radius: 0;
    background-color: var(--PrimaryColor);
    border: none;
    padding: 12px 25px;
    font-size: var(--Font18);
    font-weight: var(--Font400);
    color: var(--WhiteColor);
    transition: background-color 0.3s ease;
    margin: 6px 10px;
    border-radius: 20px;
}

.search-box .search-btn:hover {
    background-color: var(--PrimaryColor);
}

.tabs-scrollable {
    overflow-x: auto;
    padding-bottom: 10px;
}

.tabs-wrapper {
    gap: 10px;
    display: flex;
}

.tab-btn {
    border: 1px solid var(--BorderColor);
    border-radius: 25px;
    background-color: var(--WhiteColor);
    padding: 8px 20px;
    white-space: nowrap;
    font-size: var(--Font20);
    font-weight: var(--Font500);
    color: var(--BlackColor);
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.tab-btn.active {
    background-color: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.tab-btn:hover {
    background-color: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.tab-content .tab-panel {
    display: none;
}

.tab-content .tab-panel.active {
    display: block;
}

.product-card {
    border: 1px solid var(--BorderColor);
    border-radius: 15px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    padding: 20px;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.productCardWrap {
    padding: 30px 5%;
    text-align: center;
    border: solid 1px var(--BorderColor);
    border-radius: 100px;
    overflow: hidden;
}

.productCardWrap:hover {
    border: solid 1px var(--LightPrimary);
    background: var(--LightPrimary);
}

.productCardWrap .productCardImage img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: var(--WhiteColor);
    border-radius: 50px;
}

.productCardWrap .productTitle {
    font-weight: var(--Font500);
    font-size: var(--Font30);
    color: var(--BlackColor);
}

.productCardWrap .productDesc {
    font-weight: var(--Font400);
    font-size: var(--Font20);
    color: var(--BlackColor);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;

}

/* Cards Styles */

.whyChooseSectionWrap,
.productDetailsWrap {
    width: 85%;
    margin: auto;
    padding-bottom: 20px;
}

.whyChooseTitle {
    margin: 20px 0;
    font-size: var(--Font48);
    font-weight: var(--Font800);
    color: var(--BlackColor);
    text-transform: capitalize;
}

.feature-card {
    border: 1px solid var(--BorderColor);
    border-radius: 30px;
    background-color: var(--WhiteColor);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    padding: 1px;
}

.feature-card img {
    display: block;
    margin: 0 auto;
}

.feature-card h5 {
    font-weight: var(--Font500);
    font-size: var(--Font30);
    color: var(--BlackColor);
}

.feature-card p {
    font-weight: var(--Font400);
    font-size: var(--Font20);
    color: var(--BlackColor);
    margin: 0 auto;
    max-width: 80%;
    text-transform: capitalize;
}

.featureCardInner {
    margin: 10px;
    padding: 10px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.featureCardInner:hover {
    background-color: var(--LightPrimary);
}

.featureCardInner img {
    width: 60px;
}

/* Product Details Styles */

.productGallery {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.mainImageWrap {
    width: 100%;
    height: 500px;
    border-radius: 70px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 var(--BoxShadow);
    margin-bottom: 20px;
}

.mainImageWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.thumbsWrapper {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    background: var(--WhiteColor);
}

.thumbsWrapper::-webkit-scrollbar {
    height: 6px;
}

.thumbItem {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 0 10px 0 var(--BoxShadow);
    cursor: pointer;
    transition: border 0.3s ease;
}

.thumbItem.active {
    border-color: var(--PrimaryColor);
}

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

.productDetailsTitle{
    margin: 10px 0;
    font-size: var(--Font48);
    font-weight: var(--Font800);
    color: var(--BlackColor);
    text-transform: capitalize;
}

.productDetailsDesc{
    font-size: var(--Font24);
    font-weight: var(--Font400);
    color: var(--BlackColor);
    text-transform: capitalize;
    margin: 0 auto 20px auto;
}

.productDetailsPoints p{
    font-weight: var(--Font400);
    font-size: var(--Font20);
    color: var(--BlackColor);
}

.technicalTitle{
    font-weight: var(--Font400);
    font-size: var(--Font16);
    color: var(--SmallTextColor);
    margin-bottom: 0;
}

.technicalDesc{
    font-weight: var(--Font500);
    font-size: var(--Font24);
    color: var(--BlackColor);
    margin-bottom: 0;
}

.stickyWrap {
    position: sticky;
    top: 130px;
    align-self: flex-start;
}

/* Quota Modal */

#requestQuoteModal .modal-header{
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    padding: 25px;
}

#requestQuoteModal .modal-header h1 {
    font-size: var(--fontLarge) !important;
    font-weight: var(--fontW400);
}

#requestQuoteModal .modal-header button{
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--WhiteColor);
    border-radius: 50%;
    opacity: 1;
}


#requestQuoteModal label {
    font-size: var(--Font22);
    font-weight: var(--Font400);
    color: var(--BlackColor);
}

#requestQuoteModal input,
#requestQuoteModal select,
#requestQuoteModal textarea {
    padding: 10px 15px;
    border-radius: 50px;
    border: solid 1px var(--BorderColor);
    font-size: var(--Font20);
    font-weight: var(--Font400);
    color: var(--BlackColor);
    box-shadow: none;
    outline: none;
}

#requestQuoteModal textarea {
    border-radius: 30px !important;
    height: 150px;
    resize: none;
}


/* LightBox Modal Styles */

#lightboxThumbnails img.active-thumb {
    border: 3px solid var(--WhiteColor);
    padding: 2px;
    box-sizing: border-box;
    border-radius: 5px;
}


#productLightboxModal .modal-content{
    background: var(--LightPrimaryColor);
    backdrop-filter: blur(10px);
}

#productLightboxModal #lightboxThumbnails{
    flex-wrap: nowrap;
    overflow: auto;
}

#productLightboxModal #lightboxThumbnails::-webkit-scrollbar{
    display: none;
}