.menu_items {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-left: 250px;
    margin-right: 250px;
    flex-wrap: wrap;
}

@media screen and (max-width: 1000px) {
    .card {
        width: 175px !important;
        height: 254px !important;
    }

.menu_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    margin-right: 15px;
    margin-left: 15px;
    align-items: center;
    justify-items: center;
}
}

.card {
--card-bg: linear-gradient(360deg, #ffd700, #c58030);;
--card-accent: #341c12;
--card-text: var(--text-color);
--card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);

width: 195px;
height: 264px;
background: var(--card-bg);
border-radius: 20px;
position: relative;
overflow: hidden;
transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
box-shadow: var(--card-shadow);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, sans-serif;
}

.card__content {
padding: 1.25em;
height: 85%;
display: flex;
flex-direction: column;
gap: 0.75em;
position: relative;
z-index: 2;
}

.card__image {
width: 100%;
height: 100px;
background: linear-gradient(45deg, #4b291a, #341c12);
border-radius: 12px;
transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
position: relative;
overflow: hidden;
}

.card__image::after {
content: "";
position: absolute;
inset: 0;
opacity: 0.5;
}

.card__text {
display: flex;
flex-direction: column;
gap: 0.25em;
}

.card__title {
color: var(--card-text);
font-size: 1.1em;
margin: 0;
font-weight: 700;
transition: all 0.3s ease;
}

.card__description {
color: var(--card-text);
font-size: 0.75em;
margin: 0;
opacity: 0.7;
transition: all 0.3s ease;
}

.card__footer {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: auto;
}

.card__price {
color: var(--card-text);
font-weight: 700;
font-size: 1em;
transition: all 0.3s ease;
}

/* Hover Effects */
.card:hover {
transform: translateY(-10px);
box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card:hover .card__image {
transform: translateY(-5px) scale(1.03);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card:hover .card__title {
color: var(--card-accent);
transform: translateX(2px);
}

.card:hover .card__description {
opacity: 1;
transform: translateX(2px);
}

.card:hover .card__price {
color: var(--card-accent);
transform: translateX(2px);
}

/* Active State */
.card:active {
transform: translateY(-5px) scale(0.98);
}

/* Animations */
@keyframes pulse {
0% {
    transform: scale(1);
}

50% {
    transform: scale(1.2);
}

100% {
    transform: scale(1);
}
}