@media (max-width: 600px) {

    main {
        margin: 40px 30px;
    }

    .container {
        max-width: 530px;
        background-color: hsl(0, 0%, 100%);
        display: grid;
        grid-template-rows: 1fr 1fr;
        border-radius: 30px;
        overflow: auto;
    }

    .product-img img {
        width: 530px;
        height: 450px;

    }

    .information {
        width: 530px;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
    }

    .product-category {
        font-family: "Montserrat", sans-serif;
        font-size: 23px;
        font-weight: 500;
        letter-spacing: 5px;
        color: hsl(228, 12%, 48%);
        margin: 27px 0 10px 0;
    }

    .product-name {
        font-family: "Fraunces", serif;
        font-weight: 700;
        font-size: 50px;
        margin-bottom: 20px;
    }

    .description {
        font-family: "Montserrat", sans-serif;
        font-size: 23px;
        font-weight: 500;
        text-align: left;
        line-height: 1.6;
        color: hsl(228, 12%, 48%);
        margin-bottom: 10px;
    }

    .prices {
        display: flex;
        gap: 30px;
        margin-bottom: 10px;
        align-items: center;
        font-family: "Fraunces", serif;
        font-size: 38px;
        font-weight: 700;
        color: hsl(158, 36%, 37%);
    }

    .full-price {
        font-family: "Montserrat", sans-serif;
        font-size: 23px;
        font-weight: 500;
        color: hsl(228, 12%, 48%);
        text-decoration: line-through;
    }

    button {
        color: hsl(0, 0%, 100%);
        background-color: hsl(158, 36%, 37%);
        border-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        margin-bottom: 20px;
        font-size: 30px;
    }

    button:hover {
        background-color: hsl(158, 42%, 18%);
    }
}