body {
    background-color: #000000;
}
/* Main Content */
.main-content {
    padding: 60px 0;
    width: 100%;
    margin-inline: auto;
    background-color: #000000;
    color: #fff;
}

/* Hero Banner Section */
.personalisation-hero-section {
    .page-title-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        .page-title {
            font-family: 'Figtree', sans-serif;
            font-size: clamp(24px, calc(1.5rem + (48 - 24) * ((100vw - 767px) / (1920 - 767))), 48px);
            text-align: center;
            color: #ffffff;
            font-weight: 400;
            margin: 0;
        }
        .title-divider {
            width: 256px;
            height: 1px;
            background: linear-gradient(
                to right,
                rgba(0, 0, 0, 0) 0%,
                #b68e44 50%,
                rgba(0, 0, 0, 0) 100%
            );
        }
    }
    .intro-text {
        font-family: 'Figtree', sans-serif;
        font-size: 24px;
        line-height: 36px;
        text-align: center;
        color: #ffffff;
        max-width: 850px;
        margin: 0 auto;
    }
    .personalisation-hero-image  {
        aspect-ratio: 16 / 4.66;
        img {
            object-fit: cover;
            height: 100%; 
            width: 100%;
            /* aspect-ratio: 16 / 7; */
        }
    }
    
}

/* Feature Product  Grid */
.feature-products-sec {
    .feature-products-head {
        display: flex;
        flex-direction: column;
        align-items: center;
        .section-title {
            font-family: "Noto Sans Display", sans-serif;
            font-size: clamp(20px, calc(1.25rem + (30 - 20) * ((100vw - 767px) / (1920 - 767))), 30px);
            text-align: center;
            color: #b68e44;
            letter-spacing: 1.8955px;
            font-weight: 400;
        }
        .section-description  {
            font-family: 'Figtree', sans-serif;
            font-size: 16px;
            line-height: 26px;
            text-align: center;
            color: #ffffff;
            letter-spacing: -0.3125px;
            font-weight: 400;
            max-width: 800px;
        }
    }
    .feature-product-grid {
        row-gap: 50px;
        .product-card {
            display: flex;
            flex-direction: column;
              
               
            .product-image-wrap {
                position: relative;
                width: 100%;
                /* overflow: hidden; */
            
                &::before {
                    content: "";
                    position: absolute;
                    right: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background: #000;
                    z-index: 1;
                    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
                    opacity: 0;
                }
                &:hover {
                    .product-image {
                        transform: scale(1.15);
                    }
                &::before {
                    opacity: 1;
                }
                .product-buttons {
                    opacity: 1;
                    bottom: 0;
                    }
                }
                .product-image {
                    width: 100%;
                    height: auto;
                    aspect-ratio: 4 / 5;
                    object-fit: cover;
                    transition: transform 0.5s ease;
                }
                
            }
            .product-caption {
                font-family: 'Figtree', sans-serif;
                font-size: 1rem;
                text-align: center;
                color: rgba(255, 255, 255, 0.6);
                letter-spacing: 1px;
                margin: .5rem 0 0;
            }
        }
    }
}



.product-buttons {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: -4rem;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: bottom 0.3s;
    z-index: 2;
    padding: 1rem;
    .product-btn {
        flex: 1;
        height: 34px;
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        color: rgba(255, 255, 255, 0.7);
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 1.2px;
        cursor: pointer;
        transition: all 0.3s;
        &:hover, &.active {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }
    }
    
} 


/* customized-script Section */
.customized-script-section {
    margin: 50px auto 0;
    .customized-script-image-wrap {
        position: relative;
        width: 100%;
        /* border: 1px solid rgba(182, 142, 68, 0.2); */
        /* border-radius: .5rem; */
        /* overflow: hidden; */
       
        display: block;
        .customized-script-image-inner {
            position: relative;
             aspect-ratio: 16 / 7;
            &::after {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
        }
        &:hover {
            .customized-script-image {
                transform: scale(1.15);
            }
        }
        }
        
        .customized-script-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
    }
}

.customized-script-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 2;

    .customized-script-title {
        font-family: 'Inter', sans-serif;
        font-size: clamp(16px, calc(1rem + (20 - 16) * ((100vw - 767px) / (1920 - 767))), 20px);
        text-align: center;
        color: #ffffff;
        letter-spacing: 0.5508px;
        font-weight: 400;
    }
}



.customized-script-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    .customized-script-btn {
        height: 38px;
        padding: 0 25px;
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        color: rgba(255, 255, 255, 0.7);
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 1.2496px;
        cursor: pointer;
        transition: all 0.3s;
        &:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }
    }

}


@media (min-width: 1921px) {
    .personalisation-hero-section {
        .personalisation-hero-image {
            aspect-ratio: 16 / 7.3;
        }
    }
}
@media (min-width: 2550px) {
    .personalisation-hero-section {
        .personalisation-hero-image {
            aspect-ratio: 16 / 6.5;
        }
    }
}

@media (max-width: 767px) {
    .main-content {
        padding: 30px 0;
    } 
    .personalisation-hero-section {
        & .personalisation-hero-image {
            aspect-ratio: 16 / 9;
        }
    }
    .feature-products-sec {
        & .feature-product-grid {
            & .product-card {
                .product-image-wrap {
                    .product-image {
                        aspect-ratio: 3 / 3;
                    }
                }
            }
        }
    }

    .customized-script-section {
        .customized-script-image-wrap {
            .customized-script-image-inner {
                aspect-ratio: 16 / 12;
            }
            
        }
    }

    .customized-script-buttons {
        gap: .5rem;
        .customized-script-btn {
            padding: 0 15px;
        }

    }

   
}