.menu-item--pending-cake {
  background: linear-gradient(135deg, rgba(246, 117, 19, .045), transparent 58%);
}

.menu-item--pending-cake .pending-cake-image {
  object-fit: cover;
  padding: 0;
}

.pending-cake-copy {
  align-self: center;
}

.pending-cake-copy h4 {
  font-weight: 400;
}

.pending-cake-label {
  color: #8d4c27;
  display: block;
  font-family: Kalameh, Tahoma, sans-serif;
  font-size: 12px;
  margin-top: 7px;
}

@media (prefers-reduced-motion: no-preference) {
  .menu-item--pending-cake {
    animation: pending-cake-in .42s ease both;
  }

  .menu-item--pending-cake:nth-last-child(2) {
    animation-delay: 50ms;
  }

  .menu-item--pending-cake:nth-last-child(1) {
    animation-delay: 100ms;
  }
}

@keyframes pending-cake-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
