:root {
    --Primary-font: Poppins, sans-serif;
}

.search-container {
    border: 1px solid rgba(0, 0, 0, 0.20);
}
.login a {
    color: #000;
}
.HomeProductCard {
    background-color: #F4F5F6;
}





.SelectedProductCard {
    background-color: #23262F;
    cursor: pointer;
}
.SelectedProductCard h3, .SelectedProductCard p{
    color: #fff;
}

/* Range Slider */
.range-slider {
    position: relative;
    width: 100%;
    height: 8px;
    margin: 20px 0;
}

.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    outline: none;
}

.range-slider input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: #ddd;
}

.range-slider input[type="range"]::-moz-range-track {
    width: 100%;
    height: 8px;
    background: #ddd;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #23262f;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    pointer-events: all;
    position: relative;
    transform: translateY(-35%); /* Adjust to center */
    z-index: 3;
}

.range-slider input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #23262f;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    pointer-events: all;
    position: relative;
    transform: translateY(-35%); /* Adjust to center */
    z-index: 3;
}

.range-slider .range-highlight {
    position: absolute;
    height: 8px;
    background-color: #23262f;
    z-index: 1;
    pointer-events: none;
    top: 0;
    left: 0;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

/* .price-inputs input[type="number"] {
   
} */

/* Range Slider Ends */


.ProductsMainSection {
    display: flex;
    flex-direction: row;
    gap: 25px;
}
@media (max-width: 1325px) {
    .ProductsMainSection {
        flex-direction: column;
    }
}

.ProductsFilterbar {
    flex: 0 0 17%;
    background-color: #F4F5F6;
    border-radius: 25px;
    height: fit-content;
    
}
.ProductsPageListSection {
    width: 100%;
}
.FilterHeading {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 24px;
    border-bottom: 1px solid rgba(35, 38, 47, 0.10);
    
}
.FilterHeading h2 {
    font-size: 20px;
    font-weight: 800;
    font-family: var(--Primary-font);
}
.FilterContent {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.applyFilterBtn {
    margin: 10px 0px;
}
.applyFilterBtn button{
    padding: 10px 20px;
    background-color: #23262F;
    color: #fff;
    border: 0px;
    border-radius: 7px;

}
.price-inputs label {
    font-size: 13px;
}
.price-inputs input, #products_page_filter_form_max {
    height: 29px;
    border-radius: 4px;
    border: 0px;
    padding: 3px;
    max-width: 70px;
}
#products_page_filter_form_min {
    height: 29px;
    border-radius: 4px;
    border: 0px;
    padding: 3px;
    max-width: 70px;
}
.minInput div {
    display: flex;
    flex-direction: column;
}
.maxInput div {
    display: flex;
    flex-direction: column;
}
.ProductsPageListSection .SortbyBar {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 15px;
    background-color: rgba(35, 38, 47, 0.05);
    height: 63px;
    align-items: center;
}
.SortByDropdown label {
    padding: 10px 15px;
    border-radius: 6px;
    background-color: #00A79D;
    color: #fff;
}
#sortOptions {
    height: 44px;
    border-radius: 6px;
    border: 0.6px solid rgba(35, 38, 47, 0.60);
    width: 160px;
    padding: 0px 8px;
}
.SortByDropdown {
    display: flex;
    gap: 13px;
}
.ProductSearchContainer {
    display: flex;
    gap: 4px;
    border: 1px solid;
    padding: 5px 10px;
    border-radius: 6px;
}
.ProductsSearchBox {
    padding: 1px 10px;
    height: 26px;
    border: 0px;
}
.ProductSearchContainer {
    background-color: #fff;
}
.PageProductCard {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(35, 38, 47, 0.10);
    border-radius: 25px;
    overflow: hidden;
}
.ProductPropertiesSection {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
    gap: 7px;
}
.ProdName .ProductCardName {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 500;
    padding: 0px 0px;
}
.ProductcardPrice {
    display: flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
}
.ProdPriceRs {
    color: #23262F;
    font-family: var(--Primary-font);
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.PriceUnits {
    font-size: 12.25px;
    padding-top:15px;
}
.ProdEnquire .ProdCardEnquire {
    padding: 1px 20px;
    background-color: #23262F;
    color: #fff;
    border-radius: 8px;
}
.ProductPropertiesSection .ProdName {
    min-height: 74px;
}

/* Products Single Page Design */
.productsPageMain {
    padding: 59px 5vw;

}
.ProductsHero {
    display: flex;
    gap: 48px;
}
.productGallery {
    flex: 0 0 43%;
    max-height: 448px;
    display: flex;
    justify-content: center;
    background-color: #fbfbfb;
    flex-direction: column;
}
.productMainDetails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.productGallery img {
    max-width: 100%;
    height: 100%;
}
.productMainDetails h2 {
    font-family: var(--Primary-font);
    font-weight: 500;
}
.productPrice p {
    font-size: 20px;
    font-weight: 600;
}
.ProdDescSnippet {
    margin: 15px 0px;
}
.ProdDescSnippet p {
    color: #707070;
}
.ProdManufacturer {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}
.ProdManufacturer p {
    font-size: 18px;
}
.ProdReviewRatings {
    display: flex;
    gap: 10px;
}
.ProdStarSpecifications {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}
.ProdStarSpecifications .specLable {
    font-weight: 600;
}
.ProdComplSpecifications {
    display: none;
}
.ProdComplSpecifications .specLable {
    font-weight: 600;
}
.ProdEnquireNow a {
    display: flex;
    justify-content: center;
    width: 431px;
    color: #fff;
    background-color: #1BA89D;
    padding: 9px 0px;
    border-radius: 6px;
}
.ProductDetailsMenu {
    margin: 50px 4px;
    display: flex;
    gap: 16px;
}
.ProductDetailsMenu a {
    /* background-color: #23262F; */
    display: flex;
    width: 175px;
    justify-content: center;
    padding: 6px 0px;
    border-radius: 25px;
    color: #000;
    gap: 4px;
}
.ProductDetailsMenu .selected {
    background-color: #23262F;
}
.ProductDetailsMenu .selected img{
    filter: invert(0%);
}
.ProductDetailsMenu .selected .DetmenuName{
    color: #fff;
}
.ProductDetailsMenu img {
    filter: invert(100%);
}
.ProductinfDescription {
    flex: 0 0 76%;
}
.ProductEnquiryForm {
    padding: 27px 25px;
    background-color: #F5F5F5;
    border-radius: 12px;
    height: fit-content;
    width: 100%;
}
.ProdDescriptionEnquiry {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}
.category a {
    color: rgb(32, 34, 36);
}

.ProductEnquiryForm .ProdsellerInfo {
    display: flex;
    gap: 13px;
    align-items: center;
}
.sellerInfo .SellerInfoTag {
    font-size: 12px;
    color: #00A79D;
}
.sellerInfo .SellerInfoName {
    font-size: 15px;
    font-weight: 600;
}
.sellerInfo .SellerInfoDescription {
    font-size: 12px;
    color: #777E90;
}
.ProductEnquiryForm .ProdsellerInfo {
    display: flex;
    gap: 13px;
    align-items: center;
    background-color: #fff;
    padding: 6px 20px;
    border-radius: 10px;
    border: 2px solid #00A79D;
}
.ProdEnquiryFormFields {
    margin-top: 15px;
}
.ProdEnquiryFormFields form{
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.ProdEnquiryFormFields form input {
    font-family: var(--primary-font);
    padding: 18px 16px;
    border: 0px;
    border-radius: 6px;
}
.ProductEnquiryForm h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 17px;
}
.AdminqueriesSection {
    display: flex;
    justify-content: center;
    gap: 60px;
}
.AdminqueriesSection .AdminEmailSection {
    display: flex;
    gap: 13px;
    align-items: center;
}
.AdminqueriesSection .AdminPhoneSection {
    display: flex;
    gap: 13px;
    align-items: center;
}
.AdminQueriesDetails p {
    font-size: 14px;
}
.AdminQueryLabel {
    color: #00A79D;
    font-weight: 600;
}
.AdminQueryValue {
    color: #707070;
}


/* Gallery Slider */

.productGallery {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.productSlider {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.productSlider .slide {
    min-width: 100%;
    transition: 0.5s;
}

.productSlider img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.active, .dot:hover {
    background-color: #717171;
}
#products_page_filter_form_sort {
    padding: 10px;
    border-radius: 6px;
}
.ProdsellerInfo {
    display:none !important;
}
.blurred-text {
    filter: blur(5px); /* Adjust the value to increase or decrease the blur effect */
    -webkit-filter: blur(5px); /* For better support on older WebKit-based browsers */
    pointer-events: none; /* Prevents interaction with the text */
    user-select: none;
}

/* PRODUCT Review Form */
.productReviewForm {
    margin: 50px 0px;
    padding: 50px 0px;
    border-top: 1px solid #EEF2F5;
}
.productReviewForm h3{
    margin-bottom: 30px;
}

.productReviewForm .stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 3px;
}
#productReviewForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.productReviewForm .stars input[type="radio"] {
    display: none;
}

.productReviewForm .stars label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
}

.productReviewForm .stars input[type="radio"]:checked ~ label {
    color: #ff9900;
}

.productReviewForm .stars label:hover,
.productReviewForm .stars label:hover ~ label {
    color: #ff9900;
}

.productReviewForm .review textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: 10px;
    font-size: 1rem;
    font-family: var(--Primary-font);
}

.productReviewForm .submit {
    margin-top: 10px;
}

.productReviewForm .submit input {
    background-color: #23262F;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}
.productReviewForm  .rating > label {
    font-weight: 500;
}
.productReviewForm  .review > label {
    font-weight: 500;
}
.productReviewForm  .form-group > label {
    font-weight: 500;
    min-width: 95px;
}
.productReviewForm  .form-group {
    display: flex;
    gap: 11px;
}
.productReviewForm  .form-group > input {
    padding: 5px 10px;
    font-family: var(--Primary-font);
    min-width: 12rem;
}
/* Product Review Form End */

/* 3D View CSS */

.view-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    font-family: var(--Primary-font);
    font-weight: 800;
    color: #22262e;
    border: 2px solid #f3f2f8;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.view-container {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    overflow: hidden;
}
.name-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 5px;
    font-size: 18px;
    border-top: 1px solid #ddd;
}
#viewContainer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
}
.ProdPriceRs .RupeeSymbol {
    font-size: 17px;
    margin-top: -17px;
}



/* About Us Page CSS */

.headerContainer {
    display: flex;
    padding: 26px 33px;
    display: flex;
    padding: 26px 33px;
    gap: 30px;
}
.headerContainer .Logoarea {
    flex: 0 0 20%;
}
.headerContainer #Logoarea img {
    max-width: 215px;

}
.searchbarMenu {
    flex: 0 0 66%;
}
.Searchbar {
    width: 97%;
    height: 35px;

}
.NotificationProfile img {
    max-width: 32px;
}
.About-herosection {
    min-height: 32rem;
    position: relative;
    overflow: hidden;
    background-color: #00000085;
    display: flex;
    justify-content: center;
    align-items: center;
}

.TextContainer {
    min-height: 19rem;
    align-items: center;
    justify-content: center;
    padding: 0px 40px;
    flex-direction: column;
    font-size: 50px
}
.TextContainer h2{
    font-size: 48px;
    text-align: center;
    font-family: var(--Primary-font);
    color: #ffffff;
}
.TextContainer h6{
    color: rgba(255, 255, 255, 0.70)
}
.searchbarMenu input {
    padding: 5px 10px;
    border-radius: 8px;
    min-height: 35px;
}
.Navigation {
    display: flex;
    justify-content: center;
    gap: 53px;
    margin: 18px 0px;
}
.Navigation a {
    text-decoration: none;
    color: #D9F1FD;
 
    ;
}
.HeroBackgroundimg {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    background-color: #00000083;
}
.Single.imgcontainer{
    display: flex;
}
.single.TextContainer{
    flex-direction: column;
    font-size: 56px;
    margin-bottom: 16px;
}
.Single {
    display: flex;
    align-items: center;
    padding: 45px 50px;
    gap: 90px ;
   
}
.TextContainer{
    min-height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 118px;
    flex-direction: column;
    font-size: 50px;
    color: #ffffff;
}
.imgcontainer img{
    width: 368px;
    height: 250px;
}
.imacontainer2 img{
    max-width: 1000px;
    padding: 39px 176px;
}
.scale{
    display: flex;
    gap: 22px;
    align-items: center;
    min-height: 26rem;
    padding: 45px 50px;
}

.text2container{
    font-size: 18px;
    flex: 0 0 70%;
    margin-top: -15px;

   
}
.submit{
    display: flex;
    gap: 15px;
    margin-top: 70px;
}

.submit a{
    color: #ffffff;
    text-decoration: none;
    border: 1px solid;
    padding: 10px 20px;
    background-color: #000;
    border-radius: 15px
}
.imagecontainer img{
    padding: 0px 0px;
    
}
.text3container{
    text-align: center;
    padding: 36px 9px;
}
.Accelerate{
    background-color: #add8e62e;
    padding: 23px 42px;
}
.test5container{
    text-align: center;
    margin-left: auto;
    position: absolute;
    top: 10px;
    left: 0;
    
}
.test6container{
    text-align: center;
    position: absolute;
    top: 19px;
    right: 32px;
    max-width: 18rem;
}
.ima5container img{
    width: 100%;
    display: flex;
}
.everything{
    display: flex;
    padding: 21px 60px;
    min-height: 25rem;
    align-items: center;
    gap: 22px;

}
.text7container{
    font-size: 18px;
    flex: 0 0 70%;
    margin-left: 31px;
}
.text8container {
    font-size: 18px;
}
.text8container ul{
    margin-left: 26px;
}
.ima6container {
    flex: 0 0 30%;
    overflow: hidden;
    border-radius: 25px;
    max-width: 368px;
    max-height: 244px;
}
.ima6container img{
    max-width:100%;
}
.automate{
    display: flex;
    padding: 22px 60px;
    gap: 35px;
    align-items: center;
}
.page3{
    display: flex;
    gap: 0px;
    position: relative;
    justify-content: center;
}
.ima5container {
    height: 284px;
    width: 368px;
    overflow: hidden;
    border-radius: 25px;
}
.test5container{
    margin-left: auto;
    position: absolute;
    top: 0px;
    left: 05px;
}
.test6container{
    position: absolute;
    top: 10px;
    right: 32px;
    max-width: 18rem;
}
.imagecontainer img{
    max-width: 1000px;
    text-align: center;
}
.text9container{
    height: 206px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.text9container p {
    height: 206px;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    max-width: 509px;
}
.ABOUTUS{
    color: #ffffff;
}
.TextContainer h6{
    font-family: var(--Primary-font);
    
}
.Text10Container h3{
    margin-bottom: 20px;
}
.scaleimgcon {
    max-height: 264px;
    overflow: hidden;
    border-radius: 14px;
}
.scaleimgcon img{
    max-width: 100%;
    margin-top: -72px;
}
.Single .imgcontainer {
    flex: 0 0 28%;   
}
.Single .imgcontainer img{
    max-width: 100%;
    border-radius: 25px;
}

.text2container ul {
    padding-left: 25px;
    padding-top: 15px;
}
.text7container ul {
    flex: 0 0 70%;
    margin-left: 31px;
}


/* About Us CSS Ends */


/* Roshni CSS */
.container{
    background-color: #add8e62e;
}
.head1 h1 {
    text-align: center;
    font-size: 3rem;
    padding-top: 5%;
}
.image{
    text-align: center;
    min-width: 80%;

}
.image img{
    min-width: 80%;
}
.content-con {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap:1%;
}

.content {
    padding: 20px;
    text-align: center;
    width: 200px; 
}
.top{
    display: flex;
    padding: 30px;
    gap: 75px;
font-size: 25px;}
.top li{
    font-size:18px;
}

.bottom{
    display: flex;
    padding: 30px;
    gap: 75px;
    font-size: 27px;
}
.bottom li{
    font-size: 18px;

}

/* Roshini CSS Ends  */


/* Terms of Use */

.TermsTextContainer h2{
    font-size: 32px;
    margin-bottom: 14px;
}
.TermsTextContainer h3{
    font-size: 26px;
    margin: 28px 9px;
}
.TermsTextContainer p{
    margin: 14px 0px;
}

/* End Terms of Use */

/* Contact Us Page CSS */

.Contact-Main {
    display: flex;
    justify-content: center;
    gap: 90px;
    margin: 74px 0px;

}
.ContactEmailUs {
    display: flex;
    gap: 16px;
    margin-top: 21px;
    border: 1px solid #F1F3F7;
    border-radius: 6px;
    width: 299px;
    padding: 15px 20px;
}

.ContactEmailUsRight .SupportEmail {
    font-weight: 600;
}

.Contact-Right form .FormRow1 {
    display:flex;
    gap: 32px;
}
.Contact-Right form .FormRow2 {
    display:flex;
    gap: 32px;
}
.Contact-Right form .form-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.Contact-Right form .form-field input {
    padding: 10px 16px;
    min-width: 237px;
    border: 1px solid #F1F3F7;
    border-radius: 6px;
}
.Contact-Right form .form-field textarea {
    padding: 10px 16px;
    border: 1px solid #F1F3F7;
    border-radius: 6px;
}

.Contact-Right form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.Contact-Left {
    max-width: 478px;
}
.Contact-Left h3 {
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.70);
}
.Contact-Left p {
    color: #6D758F;
}
.Contact-Right {
    border: #E1E4ED 1px solid;
    color:#6D758F;
    border-radius: 8px;
    padding: 32px;
}
.form-submit button {
    padding: 10px 18px;
    border-radius: 6px;
    border: 0px;
    background-color: rgba(0, 0, 0, 0.80);
    color: #fff;
    cursor: pointer;
}
/* Contact Us Page CSS END */

