/* Çağla & Yusuf - Anı Kutusu: sürükle-bırak, seçim paneli ve ilerleme */

.memory__lede {
  margin: 0 auto clamp(1.875rem, 6vw, 2.75rem);
  max-width: 32.5rem;
  font-size: var(--text-body);
  line-height: var(--leading-prose);
  color: var(--color-text-body);
  text-wrap: pretty;
}

/* --- Bırakma alanı ---------------------------------------------------- */

.dropzone-label {
  display: block;
  cursor: pointer;
}

/* Etiket içinde satır içi bir <span>; blok davranışı açıkça verilir. */
.dropzone {
  display: block;
  border: 1px dashed var(--color-border-dashed);
  border-radius: var(--radius-panel);
  background: var(--color-surface-soft);
  padding: clamp(2.5rem, 9vw, 3.75rem) 22px;
  text-align: center;
  transition:
    background var(--duration-normal) ease,
    border-color var(--duration-normal) ease;
}

.dropzone.is-over {
  border-color: var(--color-accent);
  background: var(--color-surface-active);
}

.dropzone__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--color-surface-tint);
  font-size: 1.25rem;
  color: var(--color-accent);
}

.dropzone__title {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.0625rem, 4.6vw, 1.1875rem);
  font-weight: 600;
  color: var(--color-accent-strong);
}

.dropzone__hint {
  display: block;
  font-size: var(--text-tiny);
  color: var(--color-text-muted);
}

/* --- Davet kodu ------------------------------------------------------- */

.guest-code {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: var(--width-form);
  margin: 16px auto 0;
}

.guest-code__label {
  font-size: var(--text-tiny);
  font-weight: 600;
  color: var(--color-text-muted);
}

/* --- Seçim paneli ----------------------------------------------------- */

.thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.thumb {
  position: relative;
}

.thumb__image {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-surface-tint), var(--color-surface-soft));
}

.thumb__remove {
  position: absolute;
  top: -7px;
  right: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-on-dark);
  font-size: 0.875rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-thumb);
  transition: background var(--duration-fast) ease;
}

.thumb__remove:hover {
  background: var(--color-accent-strong);
}

.memory__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.memory__note {
  margin: 18px 0 0;
  font-size: var(--text-tiny);
  line-height: var(--leading-body);
  color: var(--color-text-muted);
}

.memory__note--total {
  color: var(--color-accent-muted);
  font-weight: 500;
}
