/* ─── GIFT RESULT PAGE ─── */

.gift-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(44, 24, 16, 0.07);
  z-index: 100;
}

.gift-nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
  text-decoration: none;
}

.gift-nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}

.gift-nav-cta:hover { background: #c0615a; }

.result-main {
  max-width: 700px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}

/* ─── HEADER ─── */
.result-header {
  text-align: center;
  margin-bottom: 48px;
}

.result-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 16px;
}

.result-header h1 em {
  font-style: italic;
  color: var(--accent);
}

/* ─── PHOTO ─── */
.result-photo {
  text-align: center;
  margin-bottom: 48px;
}

.result-photo img {
  max-height: 320px;
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.12);
}

/* ─── SECTION LABEL ─── */
.result-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

/* ─── CARD MESSAGE ─── */
.result-card {
  background: var(--fg);
  border-radius: 24px;
  padding: 40px 44px;
  margin-bottom: 32px;
}

.result-card .result-section-label { color: rgba(255, 248, 240, 0.5); }

.result-message {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 24px;
}

/* ─── COPY BUTTON ─── */
.copy-btn {
  background: transparent;
  border: 1.5px solid rgba(255, 248, 240, 0.25);
  color: var(--cream);
  border-radius: 100px;
  padding: 8px 22px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.copy-btn:hover { background: rgba(255, 248, 240, 0.1); }
.copy-btn.copied { border-color: var(--sage); color: var(--sage); }

/* ─── BUNDLE ─── */
.result-bundle {
  background: var(--cream);
  border-radius: 24px;
  padding: 40px 44px;
  border: 1px solid rgba(44, 24, 16, 0.07);
  margin-bottom: 32px;
}

.bundle-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}

.bundle-theme {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  font-style: italic;
}

.bundle-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bundle-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--fg);
}

.bundle-dot {
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ─── SHARE ─── */
.result-share {
  background: var(--warm);
  border-radius: 24px;
  padding: 32px 44px;
  margin-bottom: 32px;
}

.share-url-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.share-url {
  flex: 1;
  background: white;
  border: 1.5px solid rgba(44, 24, 16, 0.12);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-family: var(--font-body);
  min-width: 0;
}

.result-share .copy-btn {
  border-color: rgba(44, 24, 16, 0.2);
  color: var(--fg);
  white-space: nowrap;
}

.result-share .copy-btn:hover { background: rgba(44, 24, 16, 0.04); }
.result-share .copy-btn.copied { border-color: var(--sage); color: var(--sage); }

/* ─── CTA ─── */
.result-cta {
  text-align: center;
  margin-bottom: 40px;
}

.btn-generate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 18px 48px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-generate:hover {
  background: #c0615a;
  transform: translateY(-2px);
}

/* ─── STORY DETAILS ─── */
.result-story {
  border: 1px solid rgba(44, 24, 16, 0.08);
  border-radius: 14px;
  padding: 20px 28px;
  margin-bottom: 16px;
}

.result-story summary {
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

.result-story p {
  margin-top: 14px;
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .result-card, .result-bundle, .result-share { padding: 28px 24px; }
  .result-main { padding: 80px 16px 60px; }
  .share-url-wrap { flex-direction: column; }
  .share-url { width: 100%; }
}
