.detail-product-1{
    padding: 80px 0;
}

.detail-product-2{
    padding: 80px 0;
    background-color: var(--gray-50);
}

.wrapper-detail-product-image {
    width: 588px;
    height: 320px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
}

.img-detail-product {
    width: 100%;
    height: 100%;
    transition: all 1s;
    transform: scale(1,1);
}

.img-detail-product:hover {
    transform: scale(1.1,1.1);
}

.read-more {
    font-weight: 600;
    color: var(--gray-700);
    transition: margin 1s;
    text-decoration: none;
}

.read-more:hover {
    color: var(--primary-500);
}

.read-more .arrow-read-more {
    margin: 0;
    transition: margin 300ms;
}

.read-more:hover .arrow-read-more {
    margin-left: 5px;
}

@media (min-width : 360px) and (max-width : 922px) {
    .wrapper-detail-product-image {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .detail-product-1, .detail-product-2{
        padding: 40px 0;
    }
    
    
}

@media (min-width : 923px) and (max-width : 1399px) {
    .wrapper-detail-product-image {
        width: 480px;
        height: 320px;
        border-radius: 8px;
    }
}