/* =========================================
   NO HEART PRODUCER PROFILE SYSTEM
========================================= */

.producer-page {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* =========================================
   HERO
========================================= */

.producer-hero {
  position: relative;
  overflow: hidden;

  border-radius: 38px;

  background:
    radial-gradient(circle at top left,
      rgba(240,201,106,.12),
      transparent 30%),
    linear-gradient(
      180deg,
      rgba(10,10,10,.98),
      rgba(6,6,6,.96)
    );

  border: 1px solid rgba(255,255,255,.08);

  min-height: 560px;

  margin-bottom: 34px;
}

.producer-banner {
  height: 260px;
  width: 100%;

  background-size: cover;
  background-position: center;

  position: relative;
}

.producer-banner::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.15),
      rgba(0,0,0,.88)
    );
}

/* =========================================
   PROFILE CONTENT
========================================= */

.producer-content {
  position: relative;
  padding: 0 42px 42px;
}

.producer-avatar {
  width: 150px;
  height: 150px;

  border-radius: 999px;

  overflow: hidden;

  margin-top: -78px;

  border: 6px solid #050505;

  background: #111;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2.6rem;
  font-weight: 900;

  box-shadow:
    0 15px 50px rgba(0,0,0,.45);

  position: relative;
  z-index: 5;
}

.producer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================
   ACTIONS
========================================= */

.producer-actions {
  position: absolute;
  top: 34px;
  right: 42px;

  display: flex;
  gap: 14px;
}

.producer-actions .btn {
  min-width: 150px;
}

/* =========================================
   NAME
========================================= */

.producer-name {
  margin-top: 24px;

  font-size: clamp(3rem, 6vw, 6rem);

  line-height: .92;

  letter-spacing: -.05em;
}

.producer-username {
  margin-top: 10px;

  color: rgba(255,255,255,.58);

  font-size: 1.15rem;

  font-weight: 700;
}

.producer-bio {
  margin-top: 20px;

  max-width: 760px;

  color: rgba(255,255,255,.76);

  font-size: 1.08rem;

  line-height: 1.7;
}

/* =========================================
   STATS
========================================= */

.producer-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;

  margin-top: 34px;
}

.producer-stat {
  min-width: 140px;

  padding: 18px 20px;

  border-radius: 22px;

  background: rgba(255,255,255,.04);

  border: 1px solid rgba(255,255,255,.06);

  backdrop-filter: blur(12px);
}

.producer-stat strong {
  display: block;

  font-size: 1.7rem;

  margin-bottom: 4px;
}

.producer-stat span {
  color: rgba(255,255,255,.55);

  font-size: .92rem;
}

/* =========================================
   LAYOUT
========================================= */

.producer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

/* =========================================
   FEED
========================================= */

.producer-feed {
  display: grid;
  gap: 26px;
}

.profile-beat-card {
  overflow: hidden;

  border-radius: 34px;

  background:
    radial-gradient(circle at top left,
      rgba(240,201,106,.10),
      transparent 35%),
    rgba(10,10,10,.96);

  border: 1px solid rgba(255,255,255,.08);

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.profile-beat-card:hover {
  transform: translateY(-4px);

  border-color: rgba(240,201,106,.22);

  box-shadow:
    0 18px 60px rgba(0,0,0,.4);
}

.profile-beat-card img {
  width: 100%;
  height: 420px;

  object-fit: cover;
  object-position: center;

  display: block;
}

.profile-beat-body {
  padding: 26px;
}

.profile-beat-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;

  margin-bottom: 12px;
}

.profile-beat-top h3 {
  font-size: 2rem;
  line-height: 1;
}

.profile-beat-top strong {
  font-size: 1.5rem;
  color: #f0c96a;
}

.profile-beat-body p {
  color: rgba(255,255,255,.58);
  margin-bottom: 22px;
}

/* =========================================
   BUTTONS
========================================= */

.beat-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.play-btn {
  width: 52px;
  height: 52px;

  border-radius: 999px;

  border: none;

  background: #f0c96a;

  color: #000;

  font-size: 1.1rem;
  font-weight: 900;

  cursor: pointer;
}

.full-btn {
  flex: 1;
}

/* =========================================
   SIDEBAR
========================================= */

.producer-sidebar {
  position: sticky;
  top: 120px;

  height: fit-content;

  display: grid;
  gap: 24px;
}

.sidebar-card {
  padding: 26px;

  border-radius: 30px;

  background:
    radial-gradient(circle at top left,
      rgba(240,201,106,.08),
      transparent 35%),
    rgba(12,12,12,.96);

  border: 1px solid rgba(255,255,255,.08);
}

.sidebar-card h3 {
  margin-bottom: 18px;
}

.side-beats {
  display: grid;
  gap: 12px;
}

.side-beat {
  display: flex;
  justify-content: space-between;
  gap: 14px;

  padding: 14px 16px;

  border-radius: 18px;

  background: rgba(255,255,255,.04);

  border: 1px solid rgba(255,255,255,.05);

  transition: .2s ease;

  text-decoration: none;
}

.side-beat:hover {
  transform: translateX(4px);

  border-color: rgba(240,201,106,.18);
}

/* =========================================
   EMPTY
========================================= */

.empty-card {
  padding: 26px;

  border-radius: 24px;

  background: rgba(255,255,255,.04);

  border: 1px solid rgba(255,255,255,.06);

  color: rgba(255,255,255,.58);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

  .producer-layout {
    grid-template-columns: 1fr;
  }

  .producer-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {

  .producer-content {
    padding: 0 22px 28px;
  }

  .producer-actions {
    position: relative;
    top: auto;
    right: auto;

    margin-top: 20px;
  }

  .producer-avatar {
    width: 120px;
    height: 120px;

    margin-top: -60px;
  }

  .profile-beat-card img {
    height: 260px;
  }

  .producer-name {
    font-size: 3rem;
  }

  .producer-stat {
    flex: 1;
  }
}

.profile-post-card {
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(240,194,88,.12), transparent 40%),
    rgba(255,255,255,.045);

  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: 18px;
}

.profile-post-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-post-avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg,#f3c443,#a87400);
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.profile-post-content {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  white-space: pre-wrap;
}

/* =========================
   POST INTERACTIONS
========================= */

.profile-post-actions{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:22px;
  flex-wrap:wrap;
}

.post-like-btn{
  border:none;
  background:rgba(255,255,255,.06);
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:10px 18px;
  font-weight:700;
  cursor:pointer;
  transition:.25s ease;
}

.post-like-btn:hover{
  transform:translateY(-2px);
  background:rgba(212,175,55,.14);
  border-color:rgba(212,175,55,.4);
}

.post-like-btn.liked{
  background:linear-gradient(
    135deg,
    #d4af37,
    #f3d77a
  );
  color:#000;
  border:none;
}

.post-comments{
  margin-top:22px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.post-comment{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  padding:14px 16px;
}

.post-comment strong{
  display:block;
  margin-bottom:6px;
  color:#fff;
}

.post-comment p{
  color:rgba(255,255,255,.72);
  line-height:1.6;
}

.post-comment-form{
  display:flex;
  gap:12px;
  margin-top:20px;
}

.post-comment-form input{
  flex:1;
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px 16px;
  color:#fff;
  font-size:15px;
  outline:none;
  transition:.25s ease;
}

.post-comment-form input:focus{
  border-color:#d4af37;
  box-shadow:0 0 0 3px rgba(212,175,55,.12);
}

.post-comment-form button{
  border:none;
  border-radius:14px;
  padding:14px 20px;
  background:linear-gradient(
    135deg,
    #d4af37,
    #f3d77a
  );
  color:#000;
  font-weight:800;
  cursor:pointer;
  transition:.25s ease;
}

.post-comment-form button:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
}

.comment-item{
  margin-top:16px;
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,215,100,.08);
}

.comment-head{
  display:flex;
  align-items:center;
  gap:14px;
}

.comment-avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  overflow:hidden;
  background:#f4c84f;
  color:#000;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.comment-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.comment-meta{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.comment-meta strong{
  color:#fff;
  font-size:.95rem;
}

.comment-meta span{
  color:rgba(255,255,255,.55);
  font-size:.78rem;
}

.comment-body{
  margin-top:14px;
  color:#fff;
  line-height:1.6;
  font-size:.96rem;
}

.comment-controls{
  margin-left:auto;
  display:flex;
  gap:8px;
}

.comment-edit-btn,
.comment-delete-btn{
  border:none;
  border-radius:12px;
  padding:8px 14px;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}

.comment-edit-btn{
  background:rgba(255,255,255,.06);
  color:#fff;
}

.comment-delete-btn{
  background:rgba(255,80,80,.12);
  color:#ff8d8d;
}

.comment-edit-btn:hover{
  background:rgba(255,255,255,.12);
}

.comment-delete-btn:hover{
  background:rgba(255,80,80,.22);
}

.comment-input-row{
  display:flex;
  gap:12px;
  margin-top:16px;
}

.comment-input-row input{
  flex:1;
}