body {
  font-family: "Inter", sans-serif;
  color: #3e362e;
  margin: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

main {
  padding: 20px;
}

h1 {
  font-size: 48px;
  margin: 0 0 32px;
  font-weight: 700;
}
h2 {
  font-size: 24px;
  color: #846c5b;
  margin: 0 0 24px;
  font-weight: 600;
}
p {
  font-size: 20px;
  margin: 0 0 32px;
  color: #3e362e;
}
a {
  color: #846c5b;
  text-decoration: none;
}

.the-2-columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

#meny-all-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.big-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 38px;
}

.meny-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #d0d0d0;
  border-radius: 38px;
}

.meny-card img {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  object-fit: cover;
}

.meny-card-content {
  flex: 1;
}

.meny-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}
.meny-card .description {
  margin: 0 0 8px;
  font-size: 13px;
  color: #666;
}
.meny-card .price {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.plus-button,
.heart-button {
  background: none;
  border: none;
  color: #846c5b;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
}

.heart-button.active {
  color: #d36965;
}

@media (max-width: 900px) {
  .the-2-columns {
    grid-template-columns: 1fr;
  }
  #meny-all-cards {
    grid-template-columns: 1fr;
  }
}
