.product-section {
    width: 100%;
    padding: 20px 15px;
    background: #fff;
    display: flex;
    justify-content: center;
}

.product-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
}

.product-gallery {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.main-image {
    width: 100%;
    max-width: 507px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.product-details {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: #000;
    margin: 0;
}

.product-desc {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.review-box {
    border: 1px solid #E88597;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.review-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-content p {
    font-size: 18px;
    margin: 0;
}

.review-author {
    font-weight: 700;
    font-size: 18px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.features-list img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.features-list span {
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 900px) {
    .product-container {
        flex-direction: column;
        gap: 30px;
    }

    .product-gallery {
        width: 100%;
        justify-content: center;
    }

    .product-details {
        width: 100%;
    }

    .product-title {
        font-size: 24px;
        text-align: center;
    }

    .product-desc {
        font-size: 16px;
        text-align: center;
        margin-bottom: 10px;
    }

    .review-box {
        flex-direction: column;
        text-align: center;
        padding: 10px 6px;
    }

    .features-list {
        margin-top: 10px;
    }

    .review-content p {
        font-size: 17px;
    }

    .review-author {
        font-size: 17px;
    }

}