/* ===================================================
   FELEROUS STORE - PUAN DÜKKÂNI (POINTS SHOP) STİLLERİ
   =================================================== */

.points-page-wrapper {
  min-height: 100vh;
  background: #0e141d;
  color: #c6d4df;
  font-family: var(--font-body);
}

/* Üst Hero Banner (Screenshot 1) */
.points-hero-banner {
  background: radial-gradient(circle at 50% 30%, #1e3a5f 0%, #0e141d 80%);
  padding: 40px 20px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.points-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.points-hero-mascots {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 20px;
}

.points-mascot-coin {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, #38bdf8, #1e3a8a);
  border: 4px solid #7dd3fc;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
  font-size: 2.2rem;
  animation: floatCoin 3s ease-in-out infinite;
}

@keyframes floatCoin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.points-hero-title {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

.points-hero-subtitle {
  font-size: 0.95rem;
  color: #8f98a0;
  max-width: 580px;
  margin: 0 auto 18px;
  line-height: 1.5;
}

.points-how-it-works-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #38bdf8;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.points-how-it-works-btn:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: #38bdf8;
  color: #fff;
}

/* Ana Düzen (Sidebar + İçerik) */
.points-main-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  max-width: 1300px;
  margin: 30px auto;
  padding: 0 20px;
}

/* Sol Sidebar */
.points-sidebar {
  position: sticky;
  top: 80px;
  height: fit-content;
}

.points-balance-card {
  background: linear-gradient(135deg, #17253b, #0f172a);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.points-balance-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0284c7;
  border: 2px solid #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}

.points-balance-info {
  display: flex;
  flex-direction: column;
}

.points-balance-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #8f98a0;
  letter-spacing: 0.5px;
}

.points-balance-val {
  font-size: 1.25rem;
  font-weight: 900;
  color: #38bdf8;
}

/* Sidebar Menü Grupları */
.points-nav-group {
  margin-bottom: 20px;
}

.points-group-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 1px;
  margin-bottom: 8px;
  padding-left: 10px;
}

.points-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.points-nav-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #8f98a0;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.points-nav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.points-nav-btn.active {
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
}

/* Sağ İçerik Bölümleri */
.points-section-card {
  margin-bottom: 40px;
}

.points-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.points-section-title-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.points-section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.points-see-all-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #8f98a0;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.points-see-all-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.points-slider-controls {
  display: flex;
  gap: 6px;
}

.points-arrow-btn {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #8f98a0;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.15s;
}

.points-arrow-btn:hover {
  background: #38bdf8;
  color: #000;
}

/* Ürün Kartları Izgarası (Grid) */
.points-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.points-item-card {
  background: #141b28;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
}

.points-item-card:hover {
  border-color: #38bdf8;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.points-item-thumb-box {
  width: 100%;
  height: 140px;
  background: #0a0e17;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.points-item-thumb-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.2s;
}

.points-item-card:hover .points-item-thumb-box img {
  transform: scale(1.05);
}

.points-item-badge-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.points-item-animated-tag {
  position: absolute;
  bottom: 6px;
  right: 6px;
  font-size: 0.65rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 2px 5px;
  border-radius: 2px;
  color: #38bdf8;
}

.points-item-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.points-item-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.points-item-type {
  font-size: 0.72rem;
  color: #8f98a0;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.points-item-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.points-item-price-pill {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
}

.points-item-price-pill.owned {
  background: rgba(0, 230, 118, 0.12);
  border-color: rgba(0, 230, 118, 0.4);
  color: #00e676;
}

/* Satın Alma / Önizleme Modalı */
.points-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.points-modal-box {
  background: #141b27;
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 8px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  animation: modalScale 0.2s ease-out;
}

@keyframes modalScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.points-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.points-modal-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.points-modal-close {
  background: none;
  border: none;
  color: #8f98a0;
  font-size: 1.4rem;
  cursor: pointer;
}

.points-modal-close:hover {
  color: #fff;
}

.points-modal-body {
  padding: 24px;
  text-align: center;
}

.points-modal-preview {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  background: #0a0e17;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
}

.points-modal-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.points-modal-desc {
  font-size: 0.85rem;
  color: #8f98a0;
  margin-bottom: 20px;
  line-height: 1.5;
}

.points-modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .points-main-layout {
    grid-template-columns: 1fr;
  }
  .points-sidebar {
    position: static;
  }
  .points-items-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}
