/* Flavor profile styles */
.flavor-profile {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  align-items: center;
  gap: 8px;
}

.flavor-bar {
  height: 8px;
  flex-grow: 1;
  background: #eee;
  border-radius: 4px;
  margin-left: 10px;
  position: relative;
  overflow: hidden;
  min-width: 150px;
}

.flavor-level {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
  animation: pulse 2s ease-in-out;
}

@keyframes pulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

/* Durian variety card styles */
.variety-card {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.variety-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.durian-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
  background-color: #fff;
  color: #333;
}

/* Card header colors */
.card-header-bg {
  padding: 1rem;
}

/* Rating stars */
.star-rating {
  color: #f59e0b;
}

:root {
  --durian-yellow: #f59e0b;
  --durian-green: #10b981;
}
