* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #09090b;
  --bg-card: #131316;
  --bg-elevated: #1a1a1f;
  --border: #23232a;
  --border-hover: #33333d;
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --text-dim: #52525b;
  --accent: #6d28d9;
  --accent-light: #8b5cf6;
  --accent-glow: rgba(109, 40, 217, 0.15);
  --green: #22c55e;
  --red: #ef4444;
  --orange: #f97316;
  --purple: #a855f7;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.logo-icon {
  font-size: 22px;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--text);
  background: var(--bg-elevated);
}

/* ===== HERO ===== */
.hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 16px;
  line-height: 1.5;
}

.hero-sources {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.source-badge {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.source-trendyol-badge {
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.source-hb-badge {
  background: rgba(168, 85, 247, 0.12);
  color: var(--purple);
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.source-amazon-badge {
  background: rgba(255, 153, 0, 0.12);
  color: #ff9900;
  border: 1px solid rgba(255, 153, 0, 0.25);
}

/* ===== SEARCH ===== */
.hero-search {
  max-width: 640px;
  margin: 0 auto;
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.search-bar:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow), var(--shadow);
}

.search-icon {
  width: 20px;
  height: 20px;
  color: var(--text-dim);
  margin-left: 16px;
  flex-shrink: 0;
}

.search-bar input {
  flex: 1;
  padding: 14px 16px;
  font-size: 15px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
}

.search-bar input::placeholder {
  color: var(--text-dim);
}

.search-bar button {
  padding: 12px 28px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-bar button:hover {
  background: var(--accent-light);
}

.search-bar button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.spin {
  width: 18px;
  height: 18px;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Popular Searches */
.popular-searches {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.popular-label {
  font-size: 13px;
  color: var(--text-dim);
}

.popular-tag {
  padding: 6px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.popular-tag:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--text);
}

/* ===== FILTERS BAR ===== */
.filters-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.filters-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.results-title {
  font-size: 20px;
  font-weight: 700;
}

.results-count {
  font-size: 13px;
  color: var(--text-dim);
  padding: 4px 10px;
  background: var(--bg-elevated);
  border-radius: 20px;
}

.filters-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-group select {
  padding: 8px 12px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s;
}

.filter-group select:hover {
  border-color: var(--border-hover);
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}

.filter-check input {
  accent-color: var(--accent);
}

/* ===== COMPARISON CARD ===== */
.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 16px;
}

.comp-item {
  text-align: center;
}

.comp-vs {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  padding: 8px 12px;
  background: var(--bg-elevated);
  border-radius: 8px;
}

.comp-item .site-name {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  font-weight: 600;
}

.comp-item .site-price {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.comp-trendyol .site-price { color: var(--orange); }
.comp-hb .site-price { color: var(--purple); }
.comp-amazon .site-price { color: #ff9900; }
.comp-item .site-price.no-data { color: var(--text-dim); font-size: 18px; }
.comp-item .site-count { font-size: 11px; color: var(--text-dim); margin-top: 4px; }

.comp-winner {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius);
  padding: 14px 24px;
  text-align: center;
  grid-column: 1 / -1;
}

.comp-winner .winner-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  font-weight: 600;
}

.comp-winner .winner-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  margin-top: 2px;
}

.comp-winner .winner-diff {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ===== FEATURED / EDITOR PICKS ===== */
.featured-section {
  padding: 20px 0 40px;
}

.featured-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(168, 85, 247, 0.15));
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 20px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.featured-card .fav-btn {
  top: 12px;
  right: auto;
  left: 12px;
}

.featured-card .discount-tag {
  top: 48px;
  left: 12px;
}

.featured-card::before {
  content: '★ Editör Seçimi';
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  color: white;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.featured-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.1), var(--shadow-lg);
}

.featured-card .product-img-wrap {
  height: 240px;
}

.featured-card .product-info {
  padding: 18px;
}

.featured-card .current-price {
  font-size: 24px;
  color: var(--orange);
}

/* ===== CATEGORIES ===== */
.categories-section {
  padding: 20px 0 40px;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.cat-btn {
  padding: 16px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transition: all 0.2s;
}

.cat-btn:hover {
  background: var(--bg-elevated);
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cat-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.product-card .discount-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--red);
  color: white;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  background: #0c0c0e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.3s;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-img-placeholder {
  color: var(--text-dim);
  font-size: 48px;
}

.product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-source {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.source-trendyol { color: var(--orange); }
.source-hepsiburada { color: var(--purple); }
.source-amazon { color: #ff9900; }

.product-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-prices {
  margin-top: auto;
}

.current-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.old-price {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-left: 8px;
}

.product-action {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 10px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  color: var(--accent-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  flex: 1;
}

.product-action:hover {
  background: var(--accent);
  color: white;
}

/* ===== SKELETON LOADING ===== */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.skeleton-img {
  height: 220px;
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-line {
  height: 14px;
  margin: 12px 16px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-line.w70 { width: 70%; }
.skeleton-line.w40 { width: 40%; margin-bottom: 16px; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== NO RESULTS ===== */
.no-results {
  text-align: center;
  padding: 80px 0;
}

.no-results-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.no-results h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.no-results p {
  color: var(--text-dim);
  font-size: 14px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 48px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header.center {
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 24px 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.trust-item:hover {
  border-color: var(--border-hover);
}

.trust-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 11px;
  color: var(--text-dim);
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 60px;
  padding: 48px 0 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-desc {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-site-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.trendyol-dot { background: var(--orange); }
.hb-dot { background: var(--purple); }
.amazon-dot { background: #ff9900; }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
}

.live-stats {
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-stats .pulse {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: var(--shadow);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== FAVORITE BUTTON ===== */
.fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.25s;
  color: var(--text-dim);
}

.fav-btn svg {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: all 0.25s;
}

.fav-btn:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: var(--red);
  color: var(--red);
  transform: scale(1.1);
}

.fav-btn.fav-active {
  color: var(--red);
  background: rgba(239, 68, 68, 0.15);
  border-color: var(--red);
}

.fav-btn.fav-active svg {
  fill: var(--red);
  stroke: var(--red);
}

.fav-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--red);
  color: white;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  margin-left: 4px;
}

.nav-fav-link {
  display: flex;
  align-items: center;
}

/* ===== CARD ACTIONS (Urune Git + Share) ===== */
.card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.card-actions .product-action {
  flex: 1;
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  color: var(--accent-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  margin-top: 0;
}

.card-actions .product-action:hover {
  background: var(--accent);
  color: white;
}

.share-btns {
  display: flex;
  gap: 4px;
}

.share-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-dim);
}

.share-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.share-wa:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: #25d366;
  color: #25d366;
}

.share-copy:hover {
  background: rgba(109, 40, 217, 0.12);
  border-color: var(--accent);
  color: var(--accent-light);
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.toast {
  padding: 12px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.toast-show {
  opacity: 1;
  transform: translateY(0);
}

.toast-hide {
  opacity: 0;
  transform: translateY(-16px);
}

/* ===== PWA INSTALL BANNER ===== */
.install-banner {
  background: linear-gradient(135deg, var(--accent), #4c1d95);
  padding: 12px 0;
  position: relative;
  z-index: 50;
}

.install-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.install-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.install-text strong {
  font-size: 14px;
  color: white;
}

.install-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.install-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.install-btn {
  padding: 8px 20px;
  background: white;
  color: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.install-btn:hover {
  background: #f0f0f0;
  transform: scale(1.02);
}

.install-dismiss {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.install-dismiss:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ===== RECENT SECTION ===== */
.recent-section {
  padding: 20px 0 32px;
}

.recent-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clear-recent-btn {
  padding: 6px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.clear-recent-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.recent-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}

.recent-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-elevated);
}

.recent-img-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #0c0c0e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recent-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.recent-img-placeholder {
  font-size: 24px;
}

.recent-info {
  min-width: 0;
}

.recent-name {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-top: 2px;
}

/* ===== COMPACT MODE (arama sonuclari gosterilirken) ===== */
body.has-results .hero {
  padding: 20px 0 16px;
}

body.has-results .hero-badge,
body.has-results .hero h1,
body.has-results .hero-desc,
body.has-results .hero-sources,
body.has-results .popular-searches {
  display: none;
}

body.has-results .hero-search {
  max-width: 720px;
}

body.has-results .how-it-works,
body.has-results .trust-bar {
  display: none;
}

body.has-results .main-content {
  padding-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 40px 0 28px; }
  .hero h1 { font-size: 32px; }
  .hero-desc { font-size: 15px; }

  .comparison-card {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 16px;
  }

  .comp-item .site-price { font-size: 22px; }

  .product-grid, .skeleton-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
  }

  .product-img-wrap { height: 160px; }
  .current-price { font-size: 18px; }
  .product-info { padding: 12px; }

  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }

  .featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .featured-header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .filters-bar { flex-direction: column; align-items: flex-start; }
  .filters-right { width: 100%; }

  .recent-grid {
    grid-template-columns: 1fr 1fr;
  }

  .install-inner {
    flex-direction: row;
    gap: 12px;
  }

  .card-actions .product-action {
    padding: 8px;
    font-size: 12px;
  }

  .share-btn {
    width: 32px;
    height: 32px;
  }

  /* Hamburger mobile */
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 100;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .nav-link {
    font-size: 20px;
    padding: 12px 32px;
  }

  /* How it works - mobile */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Trust bar - mobile */
  .trust-items {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust-item {
    padding: 12px;
  }

  /* Footer - mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .search-bar input { font-size: 14px; padding: 12px; }
  .search-bar button { padding: 12px 18px; font-size: 14px; }
  .container { padding: 0 16px; }

  .trust-items { grid-template-columns: 1fr; }
}
