/* =========================================
   Ajans 360 ADMIN - COSMIC PREMIUM THEME
   ========================================= */
:root {
  /* --- YENİ RENK PALETİ (Deep Space & Neon) --- */
  --bg-dark: #020617; /* Çok koyu, neredeyse siyah zemin */
  --bg-gradient: radial-gradient(
    circle at top center,
    #1e1b4b,
    #020617
  ); /* Uzay efekti */

  /* Glassmorphism (Cam) Kart Rengi */
  --bg-card: rgba(30, 41, 59, 0.6);
  --bg-sidebar: rgba(15, 23, 42, 0.7);

  /* Ana Vurgu Renkleri */
  --primary: #8b5cf6; /* Parlak Menekşe */
  --primary-glow: rgba(139, 92, 246, 0.5);
  --accent: #0ea5e9; /* Neon Mavi */
  --text-main: #f8fafc; /* Beyaz Yazı */
  --text-muted: #94a3b8; /* Gri Yazı */

  /* Kenarlıklar */
  --border: rgba(255, 255, 255, 0.1); /* Daha belirgin ince beyaz çizgi */

  --sidebar-width: 260px;
  --glass-blur: blur(16px); /* Cam bulanıklık seviyesi */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", "Plus Jakarta Sans", sans-serif;
}

body {
  background-color: var(--bg-dark);
  background-image: var(--bg-gradient); /* Uzay derinliği */
  background-attachment: fixed; /* Scroll yaparken arkaplan sabit kalsın */
  color: var(--text-main);
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
}

/* --- SIDEBAR (SOL MENÜ - GLASS) --- */
.sidebar {
  width: var(--sidebar-width);
  background: var(--bg-sidebar);
  backdrop-filter: var(--glass-blur); /* Cam Efekti */
  -webkit-backdrop-filter: var(--glass-blur);
  border-right: 1px solid var(--border);
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  padding: 20px;
  z-index: 100;
  transition: transform 0.3s ease;

  /* Scrollbar Ayarları */
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

/* Sidebar Scrollbar Özelleştirme */
.sidebar::-webkit-scrollbar {
  width: 4px;
}
.sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  letter-spacing: -0.5px;
}

.brand span {
  color: var(--primary);
  text-shadow: 0 0 15px var(--primary-glow); /* Logo Parlaması */
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 15px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border: 1px solid transparent; /* Hover'da zıplamayı önler */
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transform: translateX(5px); /* Hafif sağa kayma */
}

.nav-link.active {
  background: linear-gradient(
    90deg,
    rgba(139, 92, 246, 0.2) 0%,
    rgba(139, 92, 246, 0) 100%
  );
  color: white;
  border-left: 3px solid var(--primary);
  border-color: rgba(255, 255, 255, 0.1); /* Çerçeve efekti */
}

.nav-icon {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}
.nav-link.active .nav-icon {
  opacity: 1;
  color: var(--primary);
}

/* --- MAIN CONTENT (SAĞ TARAF) --- */
.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
  padding: 30px;
  transition: margin-left 0.3s ease;
}

/* Header */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.page-title h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Yazı Gradienti */
}

.page-title p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 5px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 15px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  ); /* Avatar Gradient */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  box-shadow: 0 0 10px var(--primary-glow);
}

/* --- STATS CARDS (KARTLAR - GLASS) --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  padding: 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--primary); /* Hoverda çerçeve parlasın */
}

.stat-info h3 {
  font-size: 2.2rem;
  margin-bottom: 5px;
  color: white;
}
.stat-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.stat-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
}

/* --- TABLE (LİSTE - GLASS) --- */
.recent-orders {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 25px;
  overflow-x: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.section-head {
  margin-bottom: 25px;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 600px;
}

th,
td {
  padding: 18px 15px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

td {
  font-size: 0.95rem;
  color: #e2e8f0;
}

tr:last-child td {
  border-bottom: none;
}
tr:hover td {
  background: rgba(255, 255, 255, 0.02);
} /* Satır hover efekti */

.status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status.success {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.status.pending {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* --- MOBILE TOGGLE --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
    background: #020617; /* Mobilde tam opak olsun */
  }
  .sidebar.active {
    transform: translateX(0);
  }
  .main-content {
    margin-left: 0;
  }
  .menu-toggle {
    display: block;
    margin-right: 15px;
  }
  .top-header {
    justify-content: flex-start;
  }
  .user-profile {
    margin-left: auto;
    border: none;
    background: transparent;
    padding: 0;
  }
}

/* =========================================
   YAYINCILAR SAYFASI & MODAL STİLLERİ
   ========================================= */

/* Filtre ve Arama Alanı */
.filter-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 15px;
  flex-wrap: wrap;
}

.search-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: 10px;
  color: white;
  width: 320px;
  outline: none;
  transition: all 0.3s;
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  transition: all 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

/* Tablo İçi Kullanıcı Detayı */
.user-cell {
  display: flex;
  align-items: center;
  gap: 15px;
}

.table-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.table-avatar.default {
  background: linear-gradient(45deg, #334155, #475569);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.user-info {
  display: flex;
  flex-direction: column;
}
.user-info .name {
  font-weight: 600;
  font-size: 0.95rem;
  color: white;
}
.user-info .email {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Aksiyon Butonları */
.btn-action {
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 5px;
  transition: all 0.2s;
}

.btn-action:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.btn-action.edit {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.btn-action.delete {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* --- MODAL (POP-UP - DARK GLASS) --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Arkaplanı daha çok karart */
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #0f172a; /* Düz renk yerine opak koyu zemin veya gradient */
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.95),
    rgba(15, 23, 42, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 500px;
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform 0.3s;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

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

.modal-header h3 {
  font-size: 1.2rem;
  color: white;
  font-weight: 700;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
}
.close-btn:hover {
  color: white;
}

.modal-body {
  padding: 25px;
}

/* Form Elemanları */
.edit-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 500;
}

.form-input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 8px;
  color: white;
  outline: none;
  font-size: 0.95rem;
  transition: border 0.3s;
}

.form-input:focus {
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.6);
}

.form-row {
  display: flex;
  gap: 20px;
}
.form-row .form-group {
  flex: 1;
}

/* Fotoğraf Yükleme */
.form-group.center {
  align-items: center;
  margin-bottom: 10px;
}
.img-preview img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}
.upload-btn {
  color: var(--accent);
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 10px;
  font-weight: 600;
}
.upload-btn:hover {
  text-decoration: underline;
}

.modal-footer {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.btn-cancel {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-cancel:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.btn-save {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}
.btn-save:hover {
  background: #7c3aed;
}

/* =========================================
   BAŞVURU SAYFASI & İNCELEME STİLLERİ
   ========================================= */

/* Tab Filtreleri */
.tab-filters {
  display: flex;
  gap: 10px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

/* Platform Rozetleri (Neon Style) */
.platform-badge {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-badge.tiktok {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 0, 80, 0.5);
  color: #ff0050;
  box-shadow: 0 0 8px rgba(255, 0, 80, 0.2);
  text-shadow: 1px 1px 0 rgba(0, 242, 234, 0.8); /* TikTok Glitch efekti */
}
.platform-badge.twitch {
  background: rgba(145, 70, 255, 0.15);
  color: #bf94ff;
  border: 1px solid rgba(145, 70, 255, 0.4);
}
.platform-badge.youtube {
  background: rgba(255, 0, 0, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(255, 0, 0, 0.4);
}

/* İncele Butonu */
.btn-action.review {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-action.review:hover {
  background: white;
  color: black;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* --- İNCELEME MODALI ÖZEL STİLLER --- */
.review-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.review-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.review-info h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: white;
}
.platform-tag {
  font-size: 0.8rem;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.detail-item {
  margin-bottom: 25px;
}
.detail-item .label {
  display: block;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.link-text {
  color: #38bdf8;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.link-text:hover {
  color: #7dd3fc;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.note-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 12px;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Büyük Onay/Red Butonları */
.review-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.review-actions button {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-actions button:hover {
  transform: translateY(-3px);
}

.btn-reject-big {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4) !important;
}
.btn-reject-big:hover {
  background: rgba(239, 68, 68, 0.25);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.btn-approve-big {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-approve-big:hover {
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

/* =========================================
   KANIT (SS) GÖRÜNTÜLEME ALANI
   ========================================= */

/* Modalı Genişlet */
.modal-box.large {
  width: 850px;
  max-width: 95%;
}

.review-grid {
  display: flex;
  gap: 35px;
}
.review-left {
  flex: 1;
  border-right: 1px solid var(--border);
  padding-right: 25px;
}
.review-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* SS Kutusu */
.evidence-container {
  margin-top: 15px;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.evidence-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.evidence-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}

.evidence-container:hover .evidence-overlay {
  opacity: 1;
}
.evidence-container:hover img {
  transform: scale(1.1);
}

/* MOBİL UYUM */
@media (max-width: 768px) {
  .review-grid {
    flex-direction: column;
  }
  .review-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 25px;
  }
  .evidence-container {
    height: 220px;
  }
}

/* =========================================
   MOBİL İÇİN ÖZEL MODAL AYARLARI (GÜÇLENDİRİLMİŞ)
   ========================================= */
@media (max-width: 900px) {
  .modal-box.large {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    background: #020617; /* Mobilde tam siyah daha performanslı */
  }

  .review-grid {
    flex-direction: column;
    gap: 20px;
  }

  .modal-body {
    overflow-y: auto;
    flex: 1;
    padding: 20px;
  }

  .review-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  .evidence-container {
    height: 220px;
    background: #000;
  }

  .review-actions {
    padding: 15px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    margin-top: 0;
  }
  .review-actions button {
    padding: 15px;
    font-size: 1rem;
  }
}

/* =========================================
   MOBİL İÇİN TABLO VE GENEL DÜZEN
   ========================================= */
@media (max-width: 900px) {
  .main-content {
    padding: 15px;
    width: 100%;
    overflow-x: hidden;
  }
  .top-header {
    flex-wrap: wrap;
    gap: 15px;
  }
  .page-title h2 {
    font-size: 1.6rem;
  }
  .filter-bar {
    overflow-x: auto;
    padding-bottom: 10px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .tab-filters {
    display: inline-flex;
  }

  .recent-orders {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
  }
  table {
    width: 100%;
    min-width: 700px;
    white-space: nowrap;
  }
  th,
  td {
    padding: 15px 12px;
  }
  .user-cell {
    min-width: 180px;
  }
}

/* --- Detay Kutuları Stili --- */
.value-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  font-family: "Courier New", monospace;
  letter-spacing: 1px;
}

.value-box.highlight {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.1);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.1);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =========================================
   YENİ ÜRÜN KARTI STİLLERİ
   ========================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.product-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.25);
  border-color: var(--primary);
}

.product-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Rozet (Fiziksel/Dijital) */
.product-card .platform-badge {
  padding: 4px 10px;
  font-size: 0.7rem !important;
  border-radius: 6px !important;
  margin-bottom: 10px !important;
  align-self: flex-start;
  background: rgba(14, 165, 233, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.product-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 15px;
  height: 40px;
  overflow: hidden;
  line-height: 1.4;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.btn-talep {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-talep:hover:not(:disabled) {
  background: #7c3aed;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}
