main {
    min-height: calc(100dvh - 380px - 85px);
}

.product {
    display: flex;
    flex-direction: row;
    padding: 30px 0;
    gap: 20px;
}

.product img {
    max-width: 600px;
    width: 100%;
    height: 100%;
}

.description p {
    font-weight: bold;
    margin: 0;
}

hr {
    margin: 20px 0;
}

.section-base {
    border-bottom: none;
}

@media screen and (max-width: 1300px) {
    .product {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .width-1200 {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .description {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .description p {
        font-size: 16px;
    }
    .description span {
        font-size: 14px;
    }
    .btn {
        font-size: 16px;
    }
}
