/* Card Layout */
.card {
  background: #ffffff;
  border-radius: 16px;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  color: #2c3e50;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: visible;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
}

.card-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.vegetarian-icon {
  position: absolute;
  top: 180px;
  right: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.vegetarian-tooltip {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(76, 175, 80, 0.95);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  z-index: 1000;
  pointer-events: none;
}

.vegetarian-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(76, 175, 80, 0.95);
}

.vegetarian-icon:hover .vegetarian-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

.card-content {
  padding: 24px;
}

.card h2 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 12px 0;
  font-size: 1.6em;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.3;
}

.card p {
  color: #5a6c7d;
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0;
}

.card p b {
  color: #e67e22;
  font-weight: 500;
} 