/* ============================================================
   For You feed (feed.php) — product cards reuse dp-* from
   drops.css; this file adds the feed chrome.
   ============================================================ */

.feed-head {
  background:
    radial-gradient(ellipse 55% 70% at 85% 0%, rgba(240, 103, 36, 0.1) 0, transparent 65%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(218, 161, 91, 0.09) 0, transparent 60%),
    var(--cream);
  padding: 40px 0 26px;
}
.feed-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.feed-eyebrow {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 8px;
}
.feed-title {
  font-family: var(--font-editorial);
  font-size: clamp(30px, 4.6vw, 46px);
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 8px;
}
.feed-sub { font-size: 14.5px; color: var(--ink-soft); max-width: 540px; line-height: 1.65; }
.feed-edit-btn { align-self: center; white-space: nowrap; }

.feed-dna-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.feed-dna-chip {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  color: var(--maroon);
  background: rgba(123, 51, 49, 0.07);
  border: 1px solid rgba(123, 51, 49, 0.16);
  border-radius: 999px;
  padding: 6px 13px;
}
.feed-dna-chip.edit { color: var(--orange); border-color: rgba(240, 103, 36, 0.35); background: rgba(240, 103, 36, 0.06); }
.feed-dna-chip.edit:hover { background: var(--orange); color: #fff; }

/* Cold-start setup cards */
.feed-setup { padding: 36px 0 8px; }
.feed-setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.feed-setup-card {
  display: block;
  background: var(--paper);
  border: 1.5px solid rgba(123, 51, 49, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feed-setup-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--orange); }
.feed-setup-icon { font-size: 30px; display: block; margin-bottom: 12px; }
.feed-setup-card h3 { font-family: var(--font-editorial); font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.feed-setup-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 14px; }
.feed-setup-cta { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--orange); }

/* Sections */
.feed-section { padding: 34px 0 10px; }
.feed-section:last-child { padding-bottom: 60px; }
.feed-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.feed-empty { font-size: 14px; color: var(--ink-soft); padding: 6px 0 14px; line-height: 1.6; }
.feed-empty a { color: var(--orange); font-weight: 700; }
.feed-subhead {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin: 26px 0 14px;
}

/* Followed curators row */
.feed-curator-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.feed-curator-chip {
  display: flex; align-items: center; gap: 12px;
  background: var(--paper);
  border: 1px solid rgba(123, 51, 49, 0.12);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  transition: box-shadow 0.15s;
}
.feed-curator-chip:hover { box-shadow: var(--shadow-soft); }
.feed-curator-link { display: flex; align-items: center; gap: 10px; }
.feed-curator-chip img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.feed-curator-name { display: block; font-family: var(--font-display); font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.feed-curator-link:hover .feed-curator-name { color: var(--maroon); }
.feed-curator-sub { display: block; font-size: 11.5px; color: var(--ink-soft); }
.feed-unfollow {
  border: none; background: none;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: rgba(26, 17, 16, 0.35);
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.15s;
}
.feed-unfollow:hover { color: var(--maroon); }

/* Drop banner */
.feed-drop-banner-wrap { padding-top: 18px; }
.feed-drop-banner {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/4.5;
  min-height: 160px;
}
.feed-drop-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.feed-drop-banner:hover img { transform: scale(1.03); }
.feed-drop-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26, 17, 16, 0.82) 0%, rgba(26, 17, 16, 0.25) 70%, transparent 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 36px;
  color: var(--cream);
}
.feed-drop-eyebrow {
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 6px;
}
.feed-drop-overlay h3 { font-family: var(--font-editorial); font-size: clamp(20px, 3vw, 30px); margin-bottom: 8px; }
.feed-drop-cta { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--cream); }
.feed-drop-banner:hover .feed-drop-cta { color: var(--orange); }

@media (max-width: 560px) {
  .feed-curator-chip { width: 100%; justify-content: space-between; }
  .feed-drop-overlay { padding: 0 20px; }
}
