/* =========================================================
   theyr.de - /assets/css/profil.css  (FINAL – PAGE SCROLL)
   - Scroll: tüm sayfa
   - Sol profil: sticky
   - Search: sticky
   - Kartlar: doğal akışla aşağı iner (sosyal medya hissi)
   ========================================================= */

/* =========================
   PROFIL HERO
   ========================= */
.profile-hero{
  display:flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 18px;
}
.profile-hero-left{ flex: 1; min-width: 0; }
.profile-title{
  font-size: 34px;
  line-height: 1.12;
  margin: 10px 0 2px;
  letter-spacing: -0.02em;
}
.profile-sub{ max-width: 60ch; }

/* Profil başlık: isim + ✓ hemen yanında (tek satır) */
.profile-title{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.profile-title #profileName{ margin-right: 0; }

.profile-verify{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 2px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  vertical-align: middle;
}

.profile-verify.verified--new{
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
}

.profile-verify.verified--experienced{
  background: rgba(59,130,246,0.28);
  border: 1px solid rgba(96,165,250,0.5);
  color: #93c5fd;
}

.profile-verify.verified--pro{
  background: linear-gradient(135deg, rgba(234,179,8,0.35), rgba(202,138,4,0.4));
  border: 1px solid rgba(250,204,21,0.55);
  color: #fde047;
}

/* E-Mail noch nicht bestätigt – Hinweis oben im Profil */
.profile-verify-banner {
  margin-bottom: 14px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.35);
  padding: 12px 14px;
}
.profile-verify-banner .profile-verify-banner-text {
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.4;
}
.profile-verify-banner .btn { margin-top: 0; }

/* Profil aksiyonları: Neuer Tipp, Meine Tipps, Profilbild, Einstellungen */
.profile-actions-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  min-width: 0;
}

.profile-actions-list .btn{ width: 100%; min-width: 0; justify-content: center; }

.profile-avatar-label{ cursor: pointer; margin: 0; }
.profile-avatar-input{ position: absolute; width: 0; height: 0; opacity: 0; overflow: hidden; }
.profile-avatar-wrap{ cursor: pointer; display: block; }

.profile-hero-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 150px;
  flex-shrink: 0;
}

.avatar-ring{
  width: 74px;
  height: 74px;
  border-radius: 999px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(120,140,255,.85), rgba(190,120,255,.55));
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.avatar{
  width:100%; height:100%;
  border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  font-size: 26px; font-weight: 800;
  background: rgba(10,12,20,.75);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  user-select:none;
}

/* Profile badges row (pill style) – sağ sütunda, taşmayı önle */
.profile-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  min-height: 0;
  max-width: 100%;
  justify-content: flex-end;
}
.user-badge-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}
.user-badge-pill--card {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 14px;
}
.tipp-user-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 13px;
}
.tipp-user-badges .user-badge-pill--card {
  display: inline-flex;
}

.stats-mini{
  display:flex;
  flex-direction: column;
  gap: 8px;
  width: 170px;
}
.mini{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.mini .k{ font-size: 12px; opacity:.7; }
.mini .v{ font-size: 18px; font-weight: 800; }

/* =========================
   LAYOUT (2 kolon: sol profil, sağ feed)
   ========================= */
.profile-page main.profile-layout{
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 16px;
  align-items: start;
}

/* Breadcrumb tam genişlik; alt satırda sol=profil, sağ=feed */
.profile-page main.profile-layout > .crumbs{
  grid-column: 1 / -1;
}

/* Header yüksekse burada tek yerden ayarla */
:root{
  --profile-sticky-top: 16px; /* header fixed/sticky ise 76px/88px yap */
}

/* Sol sidebar sticky */
.profile-side{
  position: sticky;
  top: var(--profile-sticky-top);
  align-self: start;
}

/* Sağ content */
.profile-content{
  min-width: 0;
}

/* =========================
   Search row (sticky)
   ========================= */
.profile-search-row{
  display:flex;
  gap:10px;
  align-items:center;
  margin: 0 0 12px;
}

/* Sayfa scroll’a göre yapışsın */
.profile-search-sticky{
  position: sticky;
  top: var(--profile-sticky-top);
  z-index: 5;
  background: rgba(10,12,20,.92);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.08);
}

.search-input{
  flex:1;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  outline: none;
}
.search-input::placeholder{ color: rgba(255,255,255,.55); }

/* =========================
   Feed (tek kolon)
   ========================= */
.profile-page .tipps-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* “profile-feed-scroll” artık scroll container değil */
.profile-feed-scroll{
  overflow: visible;
}

/* Kart */
.tipp-card{ padding: 16px; }
.tipp-head{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}
.tipp-user{ display:flex; gap:10px; align-items:center; min-width:0; }
.tipp-avatar{
  width: 38px; height: 38px; border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 800;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.tipp-user-name{ font-weight: 700; white-space: nowrap; overflow:hidden; text-overflow: ellipsis; }
.tipp-user-sub{ font-size: 12px; }
.tipp-title{ margin: 6px 0 8px; font-size: 18px; }
.tipp-text{ margin: 0 0 12px; }
.tipp-actions{ display:flex; gap:10px; flex-wrap: wrap; }

/* =========================
   Profil feed – IMAGE FIX (profil.js: .tipp-media + img.tipp-img)
   ========================= */
.profile-page .tipp-card .tipp-media{
  width: 100%;
  margin: 12px 0;
  display: flex;
  justify-content: center;
}
.profile-page .tipp-card .tipp-media .tipp-img{
  max-width: 100%;
  max-height: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  display: block;
}

@media (max-width: 640px){
  .profile-page .tipp-card .tipp-media .tipp-img{ max-height: 200px; }
}

/* =========================
   MOBILE (tek kolon, sticky mantıklı kalsın)
   ========================= */
@media (max-width: 860px){
  .profile-page main.profile-layout{
    grid-template-columns: 1fr;
  }

  .profile-side{
    position: static;
    top: auto;
  }

  .profile-search-sticky{
    position: static;
    top: auto;
    backdrop-filter: none;
    background: transparent;
    padding: 0;
    border: 0;
    margin-bottom: 12px;
  }

  .profile-hero{ flex-direction: column; }
  .profile-hero-right{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
  }
  .stats-mini{ width: 100%; max-width: 420px; }
}

@media (max-width: 520px){
  .profile-title{ font-size: 28px; }
  .profile-search-row{ flex-direction: column; align-items: stretch; }
  .profile-hero-right{ flex-direction: column; align-items: flex-start; }
  .stats-mini{ width: 100%; }
}
/* =========================================
   PROFIL – PLUS / MINUS (tipps.css ile aynı görsel dil)
   profil.js: .tipp-pros-cons + .pc-box.plus/.minus
   ========================================= */

.profile-page .tipp-pros-cons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0 6px;
}

.profile-page .pc-box{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.profile-page .pc-box::before{
  content:"";
  position:absolute;
  left:0; top:0;
  width:4px; height:100%;
  border-radius:4px 0 0 4px;
}

.profile-page .pc-title{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  letter-spacing:.2px;
  font-weight: 700;
}

.profile-page .pc-box ul{ margin:0; padding-left:18px; }
.profile-page .pc-box li{ font-size:13.5px; line-height:1.45; margin-bottom:4px; }

/* PLUS */
.profile-page .pc-box.plus::before{ background: linear-gradient(180deg, #22c55e, #16a34a); }
.profile-page .pc-box.plus .pc-title,
.profile-page .pc-box.plus li::marker{ color:#4ade80; }

/* MINUS */
.profile-page .pc-box.minus::before{ background: linear-gradient(180deg, #ef4444, #dc2626); }
.profile-page .pc-box.minus .pc-title,
.profile-page .pc-box.minus li::marker{ color:#f87171; }

/* Mobil */
@media (max-width: 640px){
  .profile-page .tipp-pros-cons{ grid-template-columns: 1fr; }
}
.profile-page .tipp-actions .btn{
  min-width: 140px;
}
@media (max-width: 640px){
  .profile-page .tipp-actions .btn{
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   PROFILE – ACTION BUTTONS (EŞİTLEME FINAL)
   ========================================= */

.profile-page .tipp-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: stretch;     /* 🔥 yükseklik eşitliği */
}

/* 3 buton aynı taban */
.profile-page .tipp-actions .btn{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 40px !important;         /* 🔥 hepsi aynı */
  padding: 0 16px !important;      /* 🔥 dikey padding farkı biter */
  line-height: 1 !important;

  min-width: 160px;                /* 🔥 optik eşitlik */
  border-radius: 14px !important;

  white-space: nowrap;
  box-sizing: border-box;
}

/* Butonlar aynı satırda sığmazsa düzgün aksın */
.profile-page .tipp-actions .btn.small{
  height: 40px !important;
}

/* Mobilde tam genişlik */
@media (max-width: 640px){
  .profile-page .tipp-actions{
    flex-direction: column;
    align-items: stretch;
  }
  .profile-page .tipp-actions .btn{
    width: 100% !important;
    min-width: 0 !important;
  }
}
	.profile-page .tipp-when{
  opacity: .75;
  font-size: 0.78rem;
  white-space: nowrap;
}
	/* =========================================
   PROFILE – ACTIONS + SIGNALS (theyr vibe)
   ========================================= */

.profile-page .tipp-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap: wrap;
}

.profile-page .tipp-signals{
  margin-left: auto;             /* 🔥 çapraz sağ */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-size: 0.82rem;
  white-space: nowrap;
}

.profile-page .tipp-signals .sep{
  opacity: .45;
}

.profile-page .sig{
  display:inline-flex;
  align-items:center;
  gap: 6px;
}

.profile-page .sig-num{
  font-weight: 700;
  letter-spacing: .2px;
}

/* “Passt” sinyali biraz farklı dursun */
.profile-page .sig.passt{
  color: rgba(140, 170, 255, .95);
}

/* simple mask icons */
.profile-page .sig-ico{
  width: 16px;
  height: 16px;
  display:inline-block;
  opacity: .8;
  background: currentColor;
}

/* eye */
.profile-page .sig-ico.eye{
  mask: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='white' d='M12 5C5 5 1 12 1 12s4 7 11 7 11-7 11-7-4-7-11-7zm0 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8z'/>\
</svg>") center/contain no-repeat;
}

/* bookmark */
.profile-page .sig-ico.bookmark{
  mask: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='white' d='M6 2h12a2 2 0 0 1 2 2v18l-8-5-8 5V4a2 2 0 0 1 2-2z'/>\
</svg>") center/contain no-repeat;
}

/* check (Passt) */
.profile-page .sig-ico.check{
  mask: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/>\
</svg>") center/contain no-repeat;
}

/* Mobil: sinyaller alta insin */
@media (max-width: 640px){
  .profile-page .tipp-signals{
    margin-left: 0;
    width: 100%;
    justify-content: flex-end;
  }
}


/* =========================================
   PROFILE – ACTIONS ALIGN FIX (primary kayması)
   ========================================= */

.profile-page .tipp-actions{
  align-items: center !important; /* 🔥 baseline kaymasını bitir */
}

/* 3 buton aynı yükseklik + aynı iç hizalama */
.profile-page .tipp-actions .btn{
  height: 42px !important;
  padding: 0 16px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transform: none !important;     /* primary hover/active kaydırmasın */
  position: relative !important;
  top: 0 !important;
}

/* primary buton özel: border/padding override */
.profile-page .tipp-actions .btn.primary{
  border-width: 1px !important;
  box-shadow: none !important;
}

/* hover’da da yer değiştirmesin */
.profile-page .tipp-actions .btn:hover{
  transform: none !important;
}

/* Eğer primary hover’da translateY varsa öldür */
.profile-page .tipp-actions .btn.primary:hover{
  transform: none !important;
}
/* =========================================
   PROFILE – HARD LOCK: 3 BUTON AYNI HİZA
   (Zum Vergleich yukarı kayma fix)
   ========================================= */

.profile-page .tipp-actions{
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* sadece 3 ana buton (sinyaller hariç) */
.profile-page .tipp-actions > a.btn{
  height: 44px !important;
  min-height: 44px !important;

  padding: 0 18px !important;     /* dikey padding yok */
  line-height: 44px !important;   /* 🔥 baseline farkını öldürür */

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  vertical-align: middle !important;
  box-sizing: border-box !important;

  position: relative !important;
  top: 0 !important;
  transform: none !important;
}

/* primary özel override */
.profile-page .tipp-actions > a.btn.primary{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-width: 1px !important;
  box-shadow: none !important;
}

/* hover/active kaydırma varsa öldür */
.profile-page .tipp-actions > a.btn:hover,
.profile-page .tipp-actions > a.btn:active,
.profile-page .tipp-actions > a.btn.primary:hover,
.profile-page .tipp-actions > a.btn.primary:active{
  transform: none !important;
  top: 0 !important;
}
/* =========================================
   SAFARI FIX — grid + flex baseline bug
   ========================================= */

/* grid içindeyiz ama action satırı izole */
.profile-page .tipp-card{
  display: block !important;
}

/* action satırı kendi dünyasında */
.profile-page .tipp-actions{
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;

  /* 🔥 kritik Safari fix */
  align-self: stretch !important;
}

/* butonlar TAM kilit */
.profile-page .tipp-actions > a.btn{
  height: 44px !important;
  min-height: 44px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 18px !important;
  line-height: 1 !important;

  vertical-align: middle !important;
  box-sizing: border-box !important;
}

/* primary özel override */
.profile-page .tipp-actions > a.btn.primary{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  transform: none !important;
}

/* hover/active Safari kayması öldür */
.profile-page .tipp-actions > a.btn:hover,
.profile-page .tipp-actions > a.btn:active{
  transform: none !important;
}
	.profile-page .tipp-buttons a:nth-child(2){
  border-color: rgba(120,140,255,.35);
}
/* ==============================
   Tipp Create Form Layout FIX
   ============================== */

.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* label */
.form .label {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 4px;
  display: block;
}

/* inputs */
.form .input,
.form .textarea,
.form select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  font-size: 14px;
}

.form .textarea {
  resize: vertical;
  min-height: 100px;
}

/* iki kolonlu alanlar */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Buton alanı */
.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}
.tip-highlight{
  outline: 2px solid rgba(80,255,160,.45);
  box-shadow: 0 12px 30px rgba(80,255,160,.10);
  transform: translateY(-1px);
}

.tip-highlight{
  outline:2px solid rgba(80,255,160,.45);
  box-shadow:0 12px 30px rgba(80,255,160,.10);
}

.tipp-card--rich{ display:block; text-decoration:none; }
.tipp-card__preview{ margin-top:10px; opacity:.9; line-height:1.45; }

.tipp-card__img{ margin-top:10px; }
.tipp-card__img img{ width:100%; display:block; border-radius:14px; object-fit:cover; max-height:360px; }

.tipp-card__chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.tipp-card__chips .chip{
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.20);
  font-size:12px;
}

.tipp-card__usage{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:8px; opacity:.9; }
.tipp-card__usage .pill{
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.14);
  font-size:12px;
}

.tipp-card__boxes{ display:grid; gap:10px; margin-top:12px; }
@media (min-width:780px){ .tipp-card__boxes{ grid-template-columns: 1fr 1fr; } }

.tipp-card__box{
  padding:12px; border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
}
.tipp-card__boxTitle{ font-weight:700; margin-bottom:8px; }
.tipp-card__box ul{ margin:0; padding-left:18px; }

	.tipp-card{
  background: rgba(15,18,30,.72);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}

.tipp-head{ margin-bottom: 10px; }
.tipp-user{ display:flex; gap:12px; align-items:center; }
.tipp-user .avatar{ width:44px; height:44px; border-radius: 999px; overflow:hidden; border:1px solid rgba(255,255,255,.12); }
.tipp-user .avatar img{ width:100%; height:100%; object-fit:cover; display:block; }

.u-line1{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.u-name{ font-weight: 700; }
.u-badge{
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.u-line2{ font-size: 12px; opacity:.8; margin-top:2px; }

.tipp-title{
  margin: 10px 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.tipp-text{ opacity:.9; line-height:1.5; margin: 0 0 12px; }

.tipp-media{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 10px;
  display:flex;
  justify-content:center;
  margin: 10px 0 12px;
}
.tipp-media img{
  max-width: 340px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.tipp-tags{ display:flex; gap:8px; flex-wrap:wrap; margin: 8px 0 14px; }
.tag-chip{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.tipp-procon{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 10px 0 14px;
}

.box{
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.box-title{ font-weight: 800; margin-bottom: 8px; }
.box.plus{ border-left: 3px solid rgba(0,255,140,.55); }
.box.minus{ border-left: 3px solid rgba(255,80,80,.65); }
.box ul{ margin:0; padding-left: 18px; }
.box li{ margin: 6px 0; opacity:.9; }
.muted{ opacity:.7; }

.tipp-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(120,120,255,.25);
  border: 1px solid rgba(140,140,255,.35);
  text-decoration:none;
  color: inherit;
}
.btn.ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 860px){
  .tipp-procon{ grid-template-columns: 1fr; }
  .tipp-media img{ max-width: 100%; }
}
.u-time{
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  opacity: .85;
}

.profile-feed-scroll{
  display: flex;
  flex-direction: column;
  gap: 24px;   /* ← kartlar arası boşluk */
}
	.profile-feed-scroll{
  padding-bottom: 40px;
}
/* ===== HEADER ACTIONS ===== */

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Profil ikon */
.icon-btn{
  width:40px;
  height:40px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color:#fff;
}

.icon-btn .icon{
  font-size:18px;
}

/* ===== DESKTOP ===== */
@media (min-width: 881px){

  /* Hamburger gizli */
  .menu-btn{
    display:none;
  }

  /* Desktop nav açık */
  .desktop-nav{
    display:flex;
  }

  /* Profil ikon daha sade */
  .icon-btn{
    background:transparent;
    border:none;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 880px){

  /* Desktop nav gizli */
  .desktop-nav{
    display:none;
  }

  /* Hamburger görünür */
  .menu-btn{
    display:flex;
  }

  .icon-btn{
    width:38px;
    height:38px;
  }
}

/* ===== EINSTELLUNGEN (Ayarlar) ===== */
.settings-wrap{ max-width: 560px; margin: 0 auto; padding-bottom: 40px; }
.settings-container{ margin-top: 16px; }
.settings-card{ padding: 24px; }
.settings-title{ font-size: 24px; font-weight: 800; margin: 0 0 20px; }
.settings-section{ margin-bottom: 24px; }
.settings-section:last-of-type{ margin-bottom: 0; }
.settings-section-title{ font-size: 15px; font-weight: 700; margin: 0 0 12px; color: rgba(255,255,255,0.9); }
.settings-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
}
.settings-label{ font-size: 14px; opacity: 0.85; }
.settings-value{ font-size: 14px; }
.settings-form{ display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.settings-form .form-label{ display: grid; gap: 6px; font-size: 14px; }
.settings-form .form-label span{ opacity: 0.9; }
.settings-form input{
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 14px;
}
.settings-form input::placeholder{ color: rgba(255,255,255,0.45); }
.settings-footer{ margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }

/* ===== Tip detay modal (profil içinde, tipps-detail yerine) ===== */
.tip-detail-modal{
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}

.tip-detail-modal--open{
  visibility: visible;
  opacity: 1;
}

.tip-detail-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  cursor: pointer;
}

.tip-detail-inner{
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: rgba(18,20,28,0.98);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  padding: 20px;
  z-index: 1;
}

.tip-detail-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.tip-detail-close:hover{
  background: rgba(255,255,255,0.2);
}

.tip-detail-content{
  margin-top: 8px;
}

.tip-detail-content .tip-card{ margin: 0; }

/* Report modal */
.report-modal{ position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; visibility: hidden; opacity: 0; transition: visibility 0.2s, opacity 0.2s; }
.report-modal--open{ visibility: visible; opacity: 1; }
.report-modal-backdrop{ position: absolute; inset: 0; background: rgba(0,0,0,0.6); cursor: pointer; }
.report-modal-box{ position: relative; width: 100%; max-width: 400px; background: var(--glass-bg, #1a1d28); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); z-index: 1; }
.report-modal-box h3{ margin: 0 0 16px; font-size: 18px; }
.report-modal-box label{ display: block; margin-bottom: 12px; font-size: 13px; }
.report-modal-box select,.report-modal-box textarea{ width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); background: rgba(0,0,0,0.25); color: inherit; margin-top: 4px; }
.report-modal-actions{ display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }

