/* ===================================================
   FELEROUS STORE - STEAM İSTEK LİSTESİ (WISHLIST) STİLLERİ
   =================================================== */

.wishlist-page-wrapper {
  background: #0d121a;
  color: #c6d4df;
  min-height: 100vh;
}

.wishlist-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 20px 80px;
}

/* Üst Kullanıcı Başlık Banner'ı (Screenshot 1) */
.wishlist-header-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.wishlist-user-avatar {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  border: 2px solid #a855f7;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.6);
  background: linear-gradient(135deg, #00e676, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
}

.wishlist-page-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Arama ve Filtreleme Kontrol Çubuğu (Screenshot 1 & 2 & 3) */
.wishlist-controls-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 100;
}

.wishlist-search-box {
  flex: 1;
  position: relative;
}

.wishlist-search-input {
  width: 100%;
  height: 38px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 0 14px;
  color: #ffffff;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wishlist-search-input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.wishlist-btn-control {
  height: 38px;
  background: #212b3b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: #c6d4df;
  padding: 0 16px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.wishlist-btn-control:hover, .wishlist-btn-control.active {
  background: #2e3d53;
  color: #ffffff;
  border-color: #38bdf8;
}

.wishlist-btn-share {
  width: 38px;
  height: 38px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Sıralama Açılır Menüsü */
.wishlist-sort-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 200px;
  background: #171d25;
  background-color: #171d25 !important;
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 6px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95);
  padding: 6px 0;
  display: none;
  z-index: 99999;
}

.wishlist-sort-dropdown.show {
  display: block;
  animation: fadeIn 0.15s ease-out;
}

.wishlist-sort-item {
  display: block;
  padding: 8px 16px;
  color: #c6d4df;
  font-size: 0.82rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.wishlist-sort-item:hover, .wishlist-sort-item.active {
  background: #0284c7;
  color: #ffffff;
}

/* Seçenekler Geniş Filtreleme Paneli / Modalı */
.wishlist-options-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 760px;
  max-width: 90vw;
  background: #171d25;
  background-color: #171d25 !important;
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 8px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.98);
  padding: 24px;
  display: none;
  z-index: 99999;
}

.wishlist-options-panel.show {
  display: block;
  animation: fadeIn 0.18s ease-out;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 24px;
  margin-bottom: 20px;
}

.option-group-title {
  font-size: 0.76rem;
  font-weight: 800;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.option-item-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #c6d4df;
  margin-bottom: 6px;
  cursor: pointer;
}

.option-item-row input[type="radio"],
.option-item-row input[type="checkbox"] {
  accent-color: #0284c7;
  cursor: pointer;
}

.option-slider-container {
  grid-column: span 2;
}

.option-slider {
  width: 100%;
  accent-color: #38bdf8;
  cursor: pointer;
}

.option-slider-label {
  font-size: 0.78rem;
  color: #8f98a0;
  text-align: center;
  margin-top: 4px;
}

.options-panel-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-notif-settings {
  background: #0284c7;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-notif-settings:hover {
  background: #0369a1;
}

/* Sayaç Çubuğu */
.wishlist-count-bar {
  font-size: 0.8rem;
  font-weight: 700;
  color: #8f98a0;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ===================================================
   İSTEK LİSTESİ OYUN KARTLARI LİSTESİ (Screenshot 1)
   =================================================== */
.wishlist-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wishlist-item-row {
  display: flex;
  align-items: center;
  background: #1b2838;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.wishlist-item-row:hover {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* Sol Sıra Numarası & Sürükleme Tutamacı */
.wishlist-item-rank {
  width: 44px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #627289;
  flex-shrink: 0;
}

/* Banner Görseli */
.wishlist-item-thumb-box {
  width: 260px;
  height: 110px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #000;
}

.wishlist-item-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.wishlist-item-row:hover .wishlist-item-thumb {
  transform: scale(1.04);
}

/* Orta Detay Alanı */
.wishlist-item-info {
  flex: 1;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.wishlist-item-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.15s;
}

.wishlist-item-title:hover {
  color: #38bdf8;
}

.wishlist-item-categories-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #8f98a0;
}

.wishlist-btn-add-cat {
  background: #2a475e;
  border: none;
  color: #c6d4df;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.wishlist-btn-add-cat:hover {
  background: #0284c7;
  color: #fff;
}

.wishlist-item-release {
  font-size: 0.75rem;
  color: #8f98a0;
}

.wishlist-item-release strong {
  color: #c6d4df;
}

.wishlist-item-tags-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.wishlist-tag-pill {
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  font-size: 0.7rem;
  color: #8f98a0;
  text-decoration: none;
}

.wishlist-tag-pill:hover {
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
}

/* Sağ Fiyat & Aksiyon Alanı */
.wishlist-item-actions {
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
  flex-shrink: 0;
}

.wishlist-item-date-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: #8f98a0;
}

.wishlist-btn-remove {
  background: none;
  border: none;
  color: #8f98a0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  transition: color 0.15s;
}

.wishlist-btn-remove:hover {
  color: #ef4444;
}

.wishlist-price-action-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wishlist-price-badge {
  background: #000000;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.wishlist-price-badge.free {
  color: #00e676;
}

.wishlist-discount-pill {
  background: #4ade80;
  color: #000000;
  font-weight: 900;
  font-size: 0.82rem;
  padding: 4px 6px;
  border-radius: 2px;
}

.wishlist-btn-cart {
  background: linear-gradient(135deg, #00e676, #059669);
  color: #000;
  border: none;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}

.wishlist-btn-cart:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.5);
}
