/* ============================================
   EmojiHub - Ana Stil Dosyası
   Dark Glassmorphism + Neon Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── CSS Değişkenleri ── */
:root {
  --bg-primary: #07070f;
  --bg-secondary: #0e0e1a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);

  --accent-1: #a855f7;   /* Mor */
  --accent-2: #ec4899;   /* Pembe */
  --accent-3: #f97316;   /* Turuncu */
  --accent-4: #06b6d4;   /* Cyan */
  --accent-5: #10b981;   /* Yeşil */

  --gradient-main: linear-gradient(135deg, #a855f7, #ec4899, #f97316);
  --gradient-text: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f97316 100%);
  --gradient-blue: linear-gradient(135deg, #06b6d4, #a855f7);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #475569;

  --shadow-glow: 0 0 30px rgba(168, 85, 247, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.6);

  --border-radius: 16px;
  --border-radius-sm: 10px;
  --border-radius-lg: 24px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Sıfırlama & Temel ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Space Grotesk', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ── Arka Plan Efektleri ── */
body::before {
  content: '';
  position: fixed;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: bgFloat1 20s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: bgFloat2 25s ease-in-out infinite alternate;
}

@keyframes bgFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 80px) scale(1.15); }
}

@keyframes bgFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, -60px) scale(1.1); }
}

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0 24px;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 28px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.5px;
}

.header-nav {
  display: flex;
  gap: 4px;
}

.nav-btn {
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.nav-btn:hover,
.nav-btn.active {
  background: var(--glass);
  color: var(--text-primary);
}

.nav-btn.active {
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent-1);
}

/* Global search */
.header-search {
  flex: 1;
  max-width: 360px;
  position: relative;
}

.header-search input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
}

.header-search input:focus {
  border-color: var(--accent-1);
  background: rgba(168, 85, 247, 0.08);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
}

.header-search input::placeholder {
  color: var(--text-muted);
}

.header-search .search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
}

/* ── Ana İçerik ── */
.main-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

/* ── Section ── */
.section {
  display: none;
  animation: fadeIn 0.4s ease;
}

.section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Kategori Sekmeleri ── */
.category-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 4px 0;
}

.cat-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.cat-btn:hover {
  border-color: rgba(168, 85, 247, 0.4);
  color: var(--text-primary);
  background: rgba(168, 85, 247, 0.08);
  transform: translateY(-1px);
}

.cat-btn.active {
  border-color: var(--accent-1);
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent-1);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.2);
}

.cat-btn .cat-emoji {
  font-size: 16px;
}

/* ── Emoji Grid ── */
.emoji-section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  margin-top: 8px;
}

.emoji-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(62px, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.emoji-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: var(--border-radius-sm);
  background: var(--bg-card);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.emoji-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: inherit;
}

.emoji-item:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.2);
  background: var(--bg-card-hover);
}

.emoji-item:hover::before {
  opacity: 0.08;
}

.emoji-item:active {
  transform: scale(0.94);
}

.emoji-item.copied {
  border-color: var(--accent-5);
  animation: copyPulse 0.5s ease;
}

@keyframes copyPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
  50% { transform: scale(1.15); box-shadow: 0 0 20px rgba(16, 185, 129, 0.5); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
}

.emoji-char {
  font-size: 28px;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
  display: block;
  text-align: center;
}

.emoji-item:hover .emoji-char {
  transform: scale(1.1);
}

.emoji-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(15, 15, 30, 0.95);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(8px);
  font-family: 'Inter', sans-serif;
}

.emoji-item:hover .emoji-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* ── Toast Bildirimi ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  backdrop-filter: blur(16px);
  color: var(--accent-5);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  font-size: 16px;
}

/* ── Şekilli Yazı Bölümü ── */
.fancy-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.input-panel {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.input-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
}

.input-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  display: block;
}

.fancy-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
  resize: none;
  min-height: 80px;
}

.fancy-input:focus {
  border-color: var(--accent-1);
  background: rgba(168, 85, 247, 0.05);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.fancy-input::placeholder {
  color: var(--text-muted);
  font-size: 18px;
}

.input-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.char-count {
  font-size: 12px;
  color: var(--text-muted);
}

.clear-btn {
  padding: 6px 14px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  color: #ef4444;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.clear-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
}

/* ── Fancy Text Sonuçları ── */
.fancy-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.fancy-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 18px 20px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.fancy-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.fancy-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.15);
}

.fancy-card:hover::after {
  opacity: 0.04;
}

.fancy-card:active {
  transform: scale(0.98);
}

.fancy-card.copied {
  border-color: var(--accent-5);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

.fancy-style-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.style-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-main);
  flex-shrink: 0;
}

.fancy-text-output {
  font-size: 19px;
  color: var(--text-primary);
  word-break: break-all;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  min-height: 28px;
  letter-spacing: 0.5px;
}

.fancy-text-output.empty {
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
}

.copy-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.copy-hint-icon {
  font-size: 12px;
}

/* ── Hero Banner ── */
.hero-banner {
  text-align: center;
  padding: 48px 24px 52px;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-1);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.1;
  letter-spacing: -1.5px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ── Section Header ── */
.section-header {
  margin-bottom: 24px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.section-title-icon {
  font-size: 24px;
}

.section-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── Favori Butonu ── */
.fav-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
  z-index: 5;
  background: none;
  border: none;
}

.emoji-item:hover .fav-btn {
  opacity: 1;
}

/* ── Boş durum ── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}

.empty-state-icon {
  font-size: 64px;
  margin-bottom: 16px;
  display: block;
  opacity: 0.5;
}

.empty-state-text {
  font-size: 16px;
  font-weight: 500;
}

/* ── Footer ── */
.site-footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.footer-heart {
  color: var(--accent-2);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 0;
    gap: 10px;
  }

  .header-search {
    order: 3;
    max-width: 100%;
    width: 100%;
  }

  .header-nav {
    gap: 2px;
  }

  .nav-btn {
    padding: 7px 12px;
    font-size: 13px;
  }

  .main-wrapper {
    padding: 20px 16px 60px;
  }

  .emoji-grid {
    grid-template-columns: repeat(auto-fill, minmax(54px, 1fr));
    gap: 6px;
  }

  .emoji-char {
    font-size: 24px;
  }

  .fancy-results {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    padding: 32px 16px 36px;
  }

  .hero-stats {
    gap: 20px;
  }

  .category-bar {
    gap: 6px;
  }

  .cat-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .emoji-grid {
    grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
  }

  .logo-text {
    font-size: 18px;
  }
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 85, 247, 0.5);
}

/* ── Seçim rengi ── */
::selection {
  background: rgba(168, 85, 247, 0.3);
  color: var(--text-primary);
}

/* ── Loading animasyonu ── */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.loading {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.03) 25%,
    rgba(255,255,255,0.07) 50%,
    rgba(255,255,255,0.03) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ── Kategori renk aksentleri ── */
.cat-btn[data-cat="smileys"] .cat-emoji,
.cat-btn[data-cat="people"] .cat-emoji { filter: hue-rotate(0deg); }

/* ── Pulse efekti (kopyalandığında) ── */
@keyframes ripple {
  0% { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.4);
  pointer-events: none;
  animation: ripple 0.6s ease-out forwards;
  z-index: 10;
}

/* Tüm kopyalan kartlar */
.copy-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gradient-main);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.copy-all-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

/* ─────────────────────────────────────────────────────────────
   AKILLI KOMBİNASYON ÜRETİCİ
───────────────────────────────────────────────────────────── */
.combo-generator-panel {
  background: linear-gradient(135deg, rgba(168,85,247,0.08), rgba(236,72,153,0.06), rgba(6,182,212,0.06));
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.combo-generator-panel::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.6), transparent);
  animation: slide-line 3s ease-in-out infinite;
}

@keyframes slide-line {
  0%   { left: -100%; }
  100% { left: 200%; }
}

.gen-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.gen-icon {
  font-size: 32px;
  animation: dice-spin 3s ease-in-out infinite;
}

@keyframes dice-spin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50%       { transform: rotate(15deg) scale(1.1); }
}

.gen-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gen-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.gen-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.gen-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 15px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
}

.gen-input:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
  background: rgba(255,255,255,0.08);
}

.gen-input::placeholder { color: var(--text-muted); }

.gen-btn {
  background: var(--gradient-main);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  color: white;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(168,85,247,0.35);
}

.gen-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(168,85,247,0.5);
}

.gen-btn:active { transform: scale(0.97); }

/* Öneri Chip'leri */
.gen-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.gen-sug-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gen-suggestion-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.gen-suggestion-chip:hover {
  background: rgba(168,85,247,0.15);
  border-color: rgba(168,85,247,0.4);
  color: var(--text-primary);
  transform: translateY(-1px);
}

/* Sonuç Grid'i */
.gen-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  min-height: 60px;
}

.gen-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  padding: 24px 0;
}

.gen-combo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  animation: combo-pop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
  position: relative;
  overflow: hidden;
}

@keyframes combo-pop {
  from { opacity: 0; transform: scale(0.7) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.gen-combo-card:hover {
  background: rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.35);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(168,85,247,0.2);
}

.gen-combo-card.copied {
  background: rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.4);
}

.gen-combo-text {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 6px;
  word-break: break-all;
}

.gen-combo-copy {
  font-size: 11px;
  color: var(--text-muted);
  transition: var(--transition);
}

.gen-combo-card:hover .gen-combo-copy {
  color: var(--accent-1);
}

/* Fotoğraf Yükleme */
.gen-photo-section { margin: 18px 0 8px; }

.gen-photo-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.divider-text {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  white-space: nowrap;
}

.gen-photo-drop {
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255,255,255,0.02);
}
.gen-photo-drop:hover,
.gen-photo-drop.drag-over {
  border-color: var(--accent-1);
  background: rgba(168,85,247,0.06);
}
.photo-drop-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.photo-drop-icon { font-size: 28px; }
.photo-drop-text {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.photo-drop-hint {
  font-size: 11px;
  color: var(--text-muted);
}

.photo-preview-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.photo-preview-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.1);
}
.photo-preview-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.photo-color-swatches {
  display: flex;
  gap: 6px;
}
.photo-color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.photo-remove-btn {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px;
  padding: 5px 14px;
  font-size: 12px;
  color: #f87171;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.photo-remove-btn:hover {
  background: rgba(239,68,68,0.25);
}

/* Responsive */
@media (max-width: 600px) {
  .gen-input-row { flex-direction: column; }
  .gen-btn { width: 100%; }
  .gen-results { grid-template-columns: repeat(auto-fill, minmax(100px,1fr)); }
  .combo-generator-panel { padding: 18px; }
  .photo-preview-row { flex-direction: column; align-items: flex-start; }
}
