/* Wishes */
.wishes-form {
  width: 100%;
  max-width: 400px;
}
.input-light {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: var(--text-color);
}
.input-light::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.wishes-list {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.wish-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  text-align: left;
}
.wish-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.wish-msg {
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Gallery */
.gallery-slider {
  display: flex;
  align-items: flex-start; /* FIX: Mencegah flex stretch yang merusak aspect-ratio di Safari */
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  overflow-x: auto;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 45%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  /* Fallback minimum height in case aspect-ratio fails entirely */
  min-height: 200px; 
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
