

.personalize-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pk-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.personalize-section .content-left {
    flex: 1;
    min-width: 300px;
}

.personalize-section .subtitle {
    color: #b88e2f;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.personalize-section .title {
    font-size: 42px;
    font-family: 'Archivo';
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    line-height: 100%;
    width: 322px;
}

.personalize-section .description {
    font-family: 'Archivo';
    font-size: 18px;
    color: #323232;
    margin-bottom: 30px;
        font-weight: 400;
    line-height: 18px;
}

.personalize-section .features {
    margin-bottom: 40px;
}

.personalize-section .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.personalize-section .feature-item .icon {
    background-color: #b88e2f;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.personalize-section .cta-button {
    background-color: #202129;
    font-family: 'Archivo';
    color: white;
    padding: 15px 40px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  border-radius: 60px;
  width: 210px;
    height: 56px;
}


.personalize-section .cta-button:hover {
    background-color: #FFFFFF;
    color: #202129;
    border: 1px solid #202129;
}

/* Right Side - Interactive Image */
.personalize-section .visual-right {
    width: 69%;
    flex-shrink: 0;
}

.personalize-section .image-wrapper {
    position: relative;
    width: 100%;
    height: 302px;
    overflow: hidden;
    border-radius: 12px;
  
}

.personalize-section .kitchen-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: scale(1.05);
}

.personalize-section .kitchen-image.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}


@media (max-width: 768px) {
   .personalize-section .subtitle {
        color: #333;
        font-size: 13px;
        text-transform: none;
        letter-spacing: 0;
        font-weight: 400;
    }

    .personalize-section {
        padding: 24px 16px;
    }

    .pk-container {
        flex-direction: column;
        gap: 20px;
        text-align: left;
    }

    .personalize-section .visual-right {
        width: 100%;
        min-width: auto;
        order: -1;
    }

    .personalize-section .image-wrapper {
       width: 98% ;
       height: 230px;
        border-radius: 8px;
        margin: 0 auto;
    }

    .personalize-section .content-left {
        width: 100%;
        min-width: auto;
    }

    .personalize-section .title {
        font-size: 28px;
        width: 100%;
    }

    .personalize-section .description {
        font-size: 15px;
        line-height: 1.5;
    }

    .personalize-section .feature-item {
        justify-content: flex-start;
    }
    .personalize-section .cta-button{
        width: 150px;
        height: 44px;
        font-size: 14px;
    }
}