/* Shop page specific styles */

.flower-detail-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 20px;
}

.flower-detail-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.flower-detail-card h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}

.flower-pic img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

.shop-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 10px;
}

.price-tag {
  color: #d88195;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 15px 0;
}

.description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 15px 0;
}

.rating {
  color: #ffd700;
  font-size: 1.2rem;
  margin: 10px 0;
}

.stars {
  display: inline-block;
  font-size: 20px;
  color: #ccc;
}

.star {
  cursor: pointer;
  color: #ccc;
  transition: color 0.2s;
}

.star.filled {
  color: gold;
}

.star:hover,
.star:hover ~ .star {
  color: #ffda00;
}