.main {
    flex-grow: 1;
}

.goods {
    padding: 50px 30px;
    display: flex;
    max-width: 100%;
    overflow-y: hidden;
    flex-wrap: wrap;
    gap: 25px
}

.goods__item {
    flex: 1;
    height: 500px;
    /* width: max-content; */
    background-color: rgba(0, 0, 0, 0.7);
    list-style: none;
    border-radius: 3%;
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.goods__item:hover {
    transform: scale(1.05);
}

.item__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    flex-grow: 1;
}

.item__card:hover {
    text-decoration: none;
}

.card__image {
    height: 300px;
}

.card__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.card__title {
    font-size: 24px;
    font-weight: bold;
    font-family: Trebuchet MS, sans-serif;
    text-align: center;
}

.card__price {
    font-family: Trebuchet MS, sans-serif;
    font-size: 20px;
    color: #c78514;
}

.item__card:hover .card__title {
    text-decoration: underline;
    text-decoration-color: white;
}