.floral-modal .modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.floral-modal-header {
  background: linear-gradient(135deg, #5b9cf3 0%, #054cf1 100%);
  color: white;
  padding: 1.5rem;
  border-bottom: none;
}

.floral-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.latin-name {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

.floral-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.floral-modal .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.floral-modal-body {
  padding: 1.5rem;
}

.floral-lead {
  font-size: 1.2rem;
  color: #4a934a;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}

.floral-lead:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #4a934a;
  border-radius: 2px;
}

.floral-image-placeholder {
  height: 200px;
  background: linear-gradient(45deg, #f5f5f5, #e0e0e0);
  position: relative;
  overflow: hidden;
}

.floral-image-placeholder:after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23cccccc"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') center no-repeat;
  background-size: 50px;
  opacity: 0.3;
}

.floral-highlight {
  border-left: 3px solid #4a934a !important;
}

.highlight-icon {
  font-size: 1.5rem;
}

.floral-section-title {
  color: #2d5e2d;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.title-decoration {
  height: 1px;
  background: linear-gradient(90deg, transparent, #2d5e2d, transparent);
}

.care-icon {
  font-size: 1.2rem;
  width: 1.8rem;
  text-align: center;
}

.floral-modal-footer {
  flex-direction: column;
  border-top: none;
  padding-top: 0;
}

.floral-poetic {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

.floral-poetic-icons {
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.floral-modal .btn-primary {
  border-color: #0c036e;
  min-width: 120px;
}


.accordion-body.planting-guide {
  color: #333;
}

.img-heart-wrapper {
  width: 230px;
  height: 230px;
  position: relative;
  display: inline-block;
}

.heart-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid white;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.img-heart-wrapper:hover .heart-image {
  transform: scale(1.05) rotate(5deg);
}

.planting-guide .instruction-lead-text {
  font-size: 1.4rem;
  line-height: 1.5;
  background: linear-gradient(90deg, #4a934a, #2d5e2d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.materials-card {
  border-radius: 0.75rem;
  overflow: hidden;
}

.materials-list li {
  transition: background-color 0.3s ease;
}

.materials-list li:hover {
  background-color: rgba(0,0,0,0.04) !important;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px dashed gray;
}

.section-title {
  position: relative;
  font-weight: 600;
}

.section-title:after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #f5f5f5, var(--color-orange));
  margin: 0.75rem auto 0;
  border-radius: 3px;
}

.step-card {
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.step-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-icon:hover {
  transform: scale(1.1);
}

.step-icon img {
  max-width: 80px;
  max-height: 80px;
}

.step-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.step-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.tips-card {
  border-radius: 0.75rem;
  overflow: hidden;
}

.tip-bullet {
  font-weight: bold;
  line-height: 1.4;
}

.final-message {
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  border-left: 5px solid #4a934a;
}

.final-message:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.final-message-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.final-message-text {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
  .floral-modal-title {
    font-size: 1.3rem;
  }
  
  .floral-image-placeholder {
    height: 150px;
  }

  .planting-guide {
    padding: 1.5rem !important;
  }
  
  .planting-guide .instruction-lead-text {
    font-size: 1.2rem;
  }
  
  .step-card {
    margin-bottom: 1rem;
  }
}