/* Option F: Cream + Sage Outlines — Minimal, Scandinavian */

:root {
  --bg: #F0EAD8;
  --text: #4a4a42;
  --accent: #99ABA6;
  --border: #c8c2b2;
  --muted: #b0a994;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

/* Profile */
.profile {
  text-align: center;
  margin-bottom: 28px;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  display: block;
}

.profile-img-placeholder {
  background: var(--accent);
}

.name {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 4px;
}

.bio {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Social Icons Row */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  text-decoration: none;
  transition: filter 0.2s;
}

.social-icon:hover {
  filter: brightness(0.93);
}

/* Link Buttons */
.link-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.link-btn {
  display: flex;
  align-items: center;
  position: relative;
  padding: 15px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s;
  justify-content: center;
  gap: 10px;
}

.link-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.link-btn-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.link-btn-icon svg {
  width: 20px;
  height: 20px;
}

/* Share Button */
.share-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.share-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}

.container {
  position: relative;
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 16px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-divider span {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Affiliate Cards */
.affiliate-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aff-card {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.aff-card-has-copy {
  padding-right: 100px;
}

.aff-card:hover {
  border-color: var(--accent);
}

.aff-card-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}

.aff-thumb {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.aff-thumb-placeholder {
  background: var(--accent);
}

.aff-info h4 {
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.aff-info p {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 300;
}

.aff-copy-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}

.aff-copy-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.aff-copy-btn:active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Copy Toast */
.copy-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--text);
  color: var(--bg);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
  pointer-events: none;
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
