.giftgrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 300px));
    justify-content: center;
    gap: .5rem;

    margin: 2rem;
}
@media (max-width: 654px) {
    .giftgrid {
        grid-template-columns: repeat(1, minmax(0, 300px));
        margin: 0.5rem;
    }
}

.giftitem {
    border-radius: 5px;
    background-color: var(--heading-color);
    color: black;

    padding-top: 2rem;
    padding-bottom: 2rem;

    text-align: center;

    display: flex;
        flex-direction: column;
        align-items: center;

    object-fit: contain;
}
.giftitem > h2 {
    margin: 0;
}
.giftitem > hr {
    margin: 0;

    width: 80%;
}
.giftitem > img {
    margin-top: 2rem;

    max-width: 20rem;
    max-height: 20rem;
}

.price {
    margin: 0;
    margin-bottom: 2rem;
}
.contains {
    margin: 0;
}

.giftitem > ul {
    list-style-position: inside;
    transform: translateX(-5%)
}