p {
    font-size: 20px;
    padding: 0;
    margin: 0;
}

.product {
    display: flex;
    flex-direction: row;
    border-top: 1px solid var(--gray);
    padding: 30px 0;
    position: relative;
    gap: 20px;
}

.product:hover img {
    transform: scale(1.1);
}

.product a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product:first-child {
    border: none;
}

.product img {
    width: 300px;
    transition: transform 0.3s ease;
}

.product > .description {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.product > .description p {
    font-weight: bold;
}

.product > .description span {
    color: gray;
}

@media screen and (max-width: 1300px) {
    .products {
        width: 90%;
    }
}

@media screen and (max-width: 1000px) {
    .product {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .width-1200 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .product > .description span {
        display: none;
    }
}