/* ========================================================== hero-section ========================================================== */
.product-hero-section{
    /*background: url('../src/img/product-detail.png') no-repeat center center/cover;*/
    height: 100dvh;
    display: flex;
    align-items: end;
    color: #fff;
    padding-bottom: 90px;
    position: relative;
}
.product-hero-section::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, .56) 0%, rgba(255, 255, 255, 0) 100%);
}
.product-hero-content{
    z-index: 1;
}
.product-hero-content h1{
    font-family: 'Manrope';
    font-size: 110px;
    font-weight: 300;
    letter-spacing: -5px;
    color: #fff;
}
.product-hero-content p{
    font-size: 37px;
    color: #fff;
    letter-spacing: -0.5px;
    font-weight: 200;
    margin-top: -20px;
    padding-bottom: 20px;
}


/* ========================================================== product-overview-section ========================================================== */
.product-overview{
    padding: 170px 0 200px;
}
.product-details{
    padding-right: 50px;
}
.overview{
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-bottom: 100px;
}
.overview .overview-heading h6, .discription-heading h6{
    font-size: 48px;
    color: #3F3F3F;
    letter-spacing: -1px;
    font-weight: 300;
    font-family: 'Manrope';
}
.overview-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
}
.overview-list li{
    display: flex;
    align-items: center;
    gap: 20px;
}
.overview-icon{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #D9BFA9;
    color: #FAF7F4;
}
.overview-icon svg{
    width: 30px;
    height: 30px;
}
.overview-text{
    display: flex;
    flex-direction: column;
}
.overview-text span{
    font-size: 14px;
    font-weight: 300;
    font-family: 'Manrope';
    color: #3F3F3F;
}
.overview-text p{
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    font-family: 'Manrope';
    color: #3F3F3F;
}
.discription p{
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    color: #3F3F3F;
    padding-top: 14px;
}
.discription-list{
    padding-top: 30px;
}
.discription-list h6{
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    font-family: 'Manrope';
    color: #3F3F3F;
}
.discription ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding-top: 30px;

}
.discription ul li{
    font-size: 20px;
    line-height: 30px;
    color: #3F3F3F;
    font-weight: 300;
}
.discription ul li span{
    font-weight: 400;
}

.get-in-touch{
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #F3EBE0;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.1);
}
.heading{
    display: flex;
    flex-direction: column;
}
.heading h6{
    font-size: 46px;
    color: #2E2E2E;
    letter-spacing: -1px;
    font-weight: 400;
}
.heading p{
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
    color: #2E2E2E;
    letter-spacing: -1px;
}
.form-input{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-group{
    position: relative;
}
.form-group input{
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 0px 8px 0px rgba(0, 0, 0, 0.1);
    background-color: #FAF7F4;
    transition: all 0.5s;
    font-size: 18px;
    border: 1px solid transparent;
}
.form-group input:focus{
    box-shadow: 0 0px 8px 0px rgba(0, 0, 0, 0.2);
    border-color: rgba(63, 63, 63, 0.4);
}
.form-group input.phone-input{
    padding-left: 90px;
}
.form-group input.email-input{
    padding-left: 60px;
}
.country-code{
    position: absolute;
    top: 1px;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    outline: none;
    left: 1px;
    font-size: 18px;
    font-weight: 400;
    background-color: #FAF7F4;
    z-index: 1;
    height: calc(100% - 2px);
    border-radius: 30px 0px 0px 30px;
    padding: 0px 20px;
    color: #3F3F3F;
    appearance: none;
}
.form-group svg{
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    left: 20px;
    transform: translateY(-50%);
    color: rgba(46, 46, 46, 0.3);
    pointer-events: none;
}
.form-group input::placeholder{
    color: #A0A0A0;
    font-weight: 300;
}
.get-quote{
    width: fit-content;
    margin: 0 auto;
    padding: 12px 50px;
    border: 1px solid #5C5C5C;
    color: #5C5C5C;
    font-size: 22px;
    font-weight: 300;
    transition: all 0.5s;
    border-radius: 30px;
    background-color: transparent;
    outline: none;
}
.get-quote:hover{
    background-color: #5C5C5C;
    color: #fff;
}

/* ========================================================== product-features-section ========================================================== */
.product-features-section{
    padding-bottom: 200px;
}
.features-heading{
    padding-bottom: 60px;
}
.features-heading h6{
     font-size: 48px;
    color: #3F3F3F;
    letter-spacing: -1px;
    font-weight: 300;
    font-family: 'Manrope';
}
.feature-items{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}
.feature-item{
    display: flex;
    align-items: center;
    gap: 20px;
}
.feature-item div{
        width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #D9BFA9;
    color: #FAF7F4;
}
.feature-item div svg{
    width: 30px;
    height: 30px;
}
.feature-item h6{
        font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    font-family: 'Manrope';
    color: #3F3F3F;
}

/* ========================================================== product-images-section ========================================================== */
.product-images-section{
    padding-bottom: 150px;
}
.product-image-item{
    width: 100%;
    aspect-ratio: 19/10;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    filter: blur(5px);
    transform: scale(0.9);
    transition: all 0.5s;
}


.product-image-item-single{
    max-width: 100%;
    height: auto;
    aspect-ratio: 19/10;
    position: relative;
    overflow: hidden;
    border-radius: 40px;

    transform: scale(0.9);
    transition: all 0.5s;
}

.product-image-item-single img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-images-slider .slick-slide.slick-current.slick-active.slick-center .product-image-item{
    filter: blur(0px);
    transform: scale(1);
}
.product-images-section .slick-dots{
    position: absolute;
    width: 100%;
    bottom: 30px;
}
.product-images-section .slick-dots li{
    width: 16px;
    height: 16px;
    border-color: #DDC6B2;
}
.product-images-section .slick-dots li.slick-active{
    background-color: #DDC6B2;
}
.product-images-section .slick-prev,
.product-images-section .slick-next{
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #DDC6B2;
}
.product-images-section .slick-prev{
    left: 220px;
}
.product-images-section .slick-next{
    right: 220px;
}
.product-images-section .slick-prev::before,
.product-images-section .slick-next::before{
    display: none;
}
.product-images-section .slick-prev::after,
.product-images-section .slick-next::after{
    content: "";
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90%;
    background: url('../src/svg/arrow.svg') no-repeat center center/contain;
}
.product-images-section .slick-prev::after{
    transform: translate(-50%, -50%) rotate(180deg);
}

@media (max-width: 1399px){}
@media (max-width: 1299px){}
@media (max-width: 1199px){
    .product-hero-section {
        padding-bottom: 50px;
    }
    .product-hero-content h1 {
        font-size: 90px;
    }
    .product-details {
        padding-right: 0;
    }
    .overview-icon {
        width: 50px;
        height: 50px;
    }
    .overview-icon svg {
        width: 26px;
        height: 26px;
    }
    .overview-list {
        gap: 25px;
    }
    .overview {
        gap: 20px;
        padding-bottom: 50px;
    }
    .overview .overview-heading h6, .discription-heading h6, .features-heading h6 {
        font-size: 38px;
    }
    .discription-list {
        padding-top: 10px;
    }
    .discription p {
        font-size: 16px;
        line-height: 24px;
        padding-top: 10px;
    }
        .get-in-touch {
        padding: 30px;
        gap: 30px;
    }
    .feature-item {
        gap: 10px;
    }
    .feature-item div {
        width: 50px;
        height: 50px;
    }
    .feature-item div svg {
        width: 24px;
        height: 24px;
    }
    .feature-item h6 {
        font-size: 18px;
    }
    .feature-items {
        gap: 30px;
    }
}
@media (max-width: 1024px){}
@media (max-width: 991px){
    .product-details{
        padding-bottom: 50px;
    }
    .product-overview {
        padding: 100px 0;
    }
    .heading h6 {
        font-size: 40px;
    }
    .feature-items {
        grid-template-columns: 1fr 1fr;
    }
    .product-features-section,
    .product-images-section {
        padding-bottom: 100px;
    }
    .product-images-section .slick-next {
        right: 60px;
    }
    .product-images-section .slick-prev {
        left: 60px;
    }
}
@media (max-width: 767px){
    .product-hero-content h1 {
        font-size: 70px;
        letter-spacing: 0;
    }
    .product-hero-content p {
        font-size: 30px;
        margin-top: 0;
        padding-bottom: 20px;
    }
    .features-heading {
        padding-bottom: 30px;
    }
}
@media (max-width: 575px){
    .form-group input, .form-group textarea, .country-code{
        font-size: 16px;
    }
    .overview-list {
        grid-template-columns: 1fr;
    }
    .product-images-section .slick-next {
        right: 30px;
    }
    .product-images-section .slick-prev {
        left: 30px;
    }
    .product-image-item {
        aspect-ratio: 19 / 15;
        border-radius: 20px;
    }
    .feature-items {
        grid-template-columns: 1fr;
    }
    .product-images-section .slick-prev, .product-images-section .slick-next {
        width: 40px;
        height: 40px;
    }
    .product-images-section .slick-prev::after, .product-images-section .slick-next::after{
        width: 80%;
        height: 80%;
    }
    .product-images-section .slick-dots{
        gap: 14px;
        bottom: 20px;
    }
    .product-images-section .slick-dots li {
        width: 10px;
        height: 10px;
    }

}
@media (max-width: 420px){
        .form-group input, .form-group textarea, .country-code {
        line-height: 24px;
    }
        .name-inputs, .form-input{
        gap: 16px;
    }
}
