/*
Theme Name: Donanım Klinik TR
Theme URI: https://donanimklinik.com.tr
Author: Donanım Klinik
Description: Türkiye'nin en iyi PC donanım inceleme ve PC Toplama rehberi teması
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: donanimklinik-tr
Tags: dark, technology, hardware, reviews, responsive
*/

/* =============================================
   CSS VARIABLES
============================================= */
:root {
  --bg:        #0d0d0d;
  --bg2:       #161616;
  --bg3:       #1f1f1f;
  --border:    #2a2a2a;
  --red:       #e63946;
  --red-dark:  #c1121f;
  --red-glow:  rgba(230,57,70,.18);
  --text:      #f0f0f0;
  --text2:     #a0a0a0;
  --text3:     #666;
  --white:     #ffffff;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,.5);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.7);
  --nav-h:     60px;
  --font:      'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', var(--font);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-mono);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--text2); line-height: 1.8; }

/* =============================================
   LAYOUT HELPERS
============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.section-title h2 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title .see-all {
  margin-left: auto;
  font-size: .8rem;
  color: var(--red);
  font-weight: 600;
  border: 1px solid rgba(230,57,70,.3);
  padding: 4px 12px;
  border-radius: 20px;
  transition: .2s;
}
.section-title .see-all:hover { background: var(--red-glow); }

/* =============================================
   NAVIGATION
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100001;
  background: rgba(13,13,13,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: var(--nav-h);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-logo {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  white-space: nowrap;
  margin-right: 32px;
}
.site-logo span { color: var(--red); }
.site-logo small {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .55rem;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 3px;
  vertical-align: super;
  margin-left: 3px;
  letter-spacing: .05em;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-menu a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text2);
  padding: 6px 12px;
  border-radius: 7px;
  transition: .15s;
  white-space: nowrap;
  position: relative;
  z-index: 100000;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--white);
  background: var(--bg3);
}
.nav-pc-topla {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white) !important;
  background: var(--red) !important;
  padding: 7px 16px !important;
  border-radius: 8px !important;
  margin-left: 8px;
  transition: .2s !important;
}
.nav-pc-topla:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
.nav-search-btn {
  margin-left: 16px;
  color: var(--text2);
  font-size: 1.1rem;
  padding: 8px;
  border-radius: 8px;
  transition: .15s;
}
.nav-search-btn:hover { color: var(--white); background: var(--bg3); }
.nav-hamburger { display: none; color: var(--text); font-size: 1.4rem; margin-left: 12px; }

/* ── DK TOPBAR (anasayfa haber ticker) ── */
.dk-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.dk-topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(230,57,70,.12);
  border: 1px solid rgba(230,57,70,.3);
  color: var(--red);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px 4px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.dk-topbar-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: dkPulse 1.8s ease-in-out infinite;
}
@keyframes dkPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

.dk-topbar-ticker-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 22px;
  overflow: hidden;
}
.dk-topbar-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease, color .2s;
  pointer-events: none;
}
.dk-topbar-item.is-active {
  opacity: 1;
  transform: translateY(0);
  color: var(--white);
  pointer-events: auto;
}
.dk-topbar-item:hover { color: var(--red); }

.dk-topbar-cat {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  background: rgba(230,57,70,.1);
  border: 1px solid rgba(230,57,70,.25);
  padding: 2px 7px;
  border-radius: 10px;
  flex-shrink: 0;
}

.dk-topbar-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--red);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .2s;
}
.dk-topbar-arrow:hover { opacity: .75; }
.dk-topbar-arrow svg { transition: transform .2s; }
.dk-topbar-arrow:hover svg { transform: translateX(3px); }

.dk-topbar-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.dk-topbar-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.dk-topbar-dot.is-active {
  background: var(--red);
  transform: scale(1.4);
}

/* =============================================
   PC TOPLA HERO BANNER  ← Most prominent
============================================= */
.pc-topla-banner {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0608 40%, #0d0d0d 100%);
  border-bottom: 1px solid var(--border);
  padding: 56px 20px;
  position: relative;
  overflow: hidden;
}
.pc-topla-inner { position: relative; z-index: 1; }

/* Nokta ızgara dokusu */
.pc-topla-banner {
  background-image:
    linear-gradient(135deg, #0d0d0d 0%, #1a0608 40%, #0d0d0d 100%),
    radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px;
}

/* Işık huzmeleri */
.dk-bg-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.dk-ray {
  position: absolute;
  top: -30%;
  height: 160%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,255,255,0.0) 25%,
    rgba(255,255,255,0.055) 50%,
    rgba(255,255,255,0.0) 75%,
    transparent 100%
  );
  transform: skewX(-22deg);
  animation: dk-ray-sweep linear infinite;
}
.dk-ray.r1 { width: 1px;   animation-duration: 16s; animation-delay:   0s; }
.dk-ray.r2 { width: 2px;   animation-duration: 26s; animation-delay:  -9s; opacity: .55; }
.dk-ray.r3 { width: 1px;   animation-duration: 20s; animation-delay: -15s; opacity: .4;  }
@keyframes dk-ray-sweep {
  from { left: -8%; }
  to   { left: 108%; }
}
.pc-topla-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(230,57,70,.12) 0%, transparent 70%),
    radial-gradient(ellipse 30% 60% at 20% 30%, rgba(230,57,70,.06) 0%, transparent 60%);
  pointer-events: none;
}
.pc-topla-banner::after { display: none; }

/* ── Liquid Blob Background ───────────────────────────────────── */
.dk-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  filter: blur(58px) saturate(1.4);
}
.dk-blob {
  position: absolute;
  mix-blend-mode: screen;
  will-change: transform, border-radius;
}
.dk-blob.b1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle at 45% 45%, rgba(230,57,70,.58), transparent 68%);
  top: -160px; left: -100px;
  animation: dk-blob-1 20s ease-in-out infinite;
}
.dk-blob.b2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle at 55% 35%, rgba(185,20,45,.48), transparent 65%);
  top: -20px; right: -70px;
  animation: dk-blob-2 27s ease-in-out infinite;
}
.dk-blob.b3 {
  width: 560px; height: 320px;
  background: radial-gradient(ellipse at 50% 50%, rgba(110,5,22,.42), transparent 68%);
  bottom: -90px; left: 22%;
  animation: dk-blob-3 23s ease-in-out infinite;
}
.dk-blob.b4 {
  width: 290px; height: 290px;
  background: radial-gradient(circle at 50% 50%, rgba(255,80,55,.28), transparent 65%);
  top: 35%; right: 28%;
  animation: dk-blob-4 17s ease-in-out infinite;
}
@keyframes dk-blob-1 {
  0%,100% { transform:translate(0,0)        scale(1);    border-radius:42% 58% 62% 38%/48% 42% 58% 52%; }
  33%     { transform:translate(65px,-45px)  scale(1.12); border-radius:58% 42% 38% 62%/62% 58% 42% 38%; }
  66%     { transform:translate(-28px,48px)  scale(.91);  border-radius:35% 65% 55% 45%/55% 35% 65% 45%; }
}
@keyframes dk-blob-2 {
  0%,100% { transform:translate(0,0)        scale(1);    border-radius:62% 38% 46% 54%/38% 62% 42% 58%; }
  38%     { transform:translate(-75px,38px)  scale(1.18); border-radius:38% 62% 68% 32%/58% 42% 52% 48%; }
  72%     { transform:translate(48px,-58px)  scale(.87);  border-radius:52% 48% 32% 68%/45% 55% 35% 65%; }
}
@keyframes dk-blob-3 {
  0%,100% { transform:translate(0,0)        scale(1);    border-radius:30% 70% 52% 48%/58% 42% 62% 38%; }
  50%     { transform:translate(-55px,-35px) scale(1.1);  border-radius:65% 35% 42% 58%/38% 62% 48% 52%; }
}
@keyframes dk-blob-4 {
  0%,100% { transform:translate(0,0)        scale(1);    border-radius:55% 45% 38% 62%/42% 58% 52% 48%; }
  25%     { transform:translate(42px,52px)   scale(1.16); border-radius:38% 62% 58% 42%/62% 38% 45% 55%; }
  75%     { transform:translate(-62px,-22px) scale(.84);  border-radius:70% 30% 48% 52%/52% 48% 62% 38%; }
}
@media(max-width:768px) { .dk-blobs { display:none; } }

.pc-topla-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pc-topla-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(230,57,70,.12);
  border: 1px solid rgba(230,57,70,.3);
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pc-topla-label::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.pc-topla-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.pc-topla-title span { color: var(--red); }
.pc-topla-sub {
  font-size: 1.05rem;
  color: var(--text2);
  margin-bottom: 28px;
  max-width: 520px;
}
.pc-topla-types {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pc-type-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: .85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  transition: .2s;
}
.pc-type-btn:hover, .pc-type-btn.active {
  border-color: var(--red);
  color: var(--white);
  background: rgba(230,57,70,.08);
}
.pc-type-btn .icon { font-size: 1.1rem; }

/* PC Topla Card (right side) */
.pc-topla-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.pc-topla-card h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.budget-slider-wrap { margin-bottom: 20px; }
.budget-display {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.budget-display .amount {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}
.budget-display .currency { font-size: .9rem; color: var(--text2); }
.budget-range {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--bg3);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.budget-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(230,57,70,.2);
}
.budget-presets {
  display: flex;
  gap: 7px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.budget-preset {
  font-size: .75rem;
  font-weight: 700;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: .15s;
}
.budget-preset:hover { border-color: var(--red); color: var(--red); }
.use-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.use-case-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  transition: .2s;
  text-align: center;
}
.use-case-item:hover, .use-case-item.selected {
  border-color: var(--red);
  background: rgba(230,57,70,.07);
}
.use-case-item .uc-icon { font-size: 1.4rem; margin-bottom: 4px; }
.use-case-item .uc-label { font-size: .75rem; font-weight: 700; color: var(--text2); }
.use-case-item.selected .uc-label { color: var(--red); }
.btn-build {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--red);
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: .2s;
  letter-spacing: .02em;
}
.btn-build:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,57,70,.4); }
.btn-build svg { width: 18px; height: 18px; }

/* =============================================
   FEATURED ARTICLE (Hero)
============================================= */
.featured-section { padding: 40px 0 0; }
.featured-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: .25s;
}
.featured-card:hover { border-color: rgba(230,57,70,.3); box-shadow: var(--shadow-lg); }
.featured-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg3);
}
.featured-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.featured-card:hover .featured-thumb img { transform: scale(1.04); }
.featured-info { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.featured-cat {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.featured-info h2 { font-size: 1.5rem; margin-bottom: 12px; line-height: 1.3; }
.featured-info p { font-size: .9rem; color: var(--text2); line-height: 1.7; margin-bottom: 18px; }
.featured-meta { display: flex; gap: 16px; font-size: .78rem; color: var(--text3); }
.featured-score {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,57,70,.1);
  border: 1px solid rgba(230,57,70,.2);
  padding: 6px 12px;
  border-radius: 8px;
  margin-top: 16px;
  align-self: flex-start;
}
.featured-score .score-num { font-size: 1.5rem; font-weight: 900; color: var(--red); line-height: 1; }
.featured-score .score-label { font-size: .72rem; color: var(--text2); line-height: 1.3; }

/* =============================================
   ARTICLE CARDS GRID
============================================= */
.articles-section { padding: 40px 0; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.acard {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .25s;
  display: block;
  color: inherit;
}
.acard:hover { transform: translateY(-4px); border-color: rgba(230,57,70,.25); box-shadow: var(--shadow); }
.acard-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg3);
  position: relative;
}
.acard-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.acard:hover .acard-thumb img { transform: scale(1.05); }
.acard-score {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(13,13,13,.9);
  border: 1px solid rgba(230,57,70,.4);
  color: var(--red);
  font-size: .75rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
}
.acard-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 4px;
}
.acard-body { padding: 16px; }
.acard-body h3 { font-size: .95rem; margin-bottom: 8px; line-height: 1.4; color: var(--white); }
.acard-body h3 a { color: inherit; }
.acard-body h3 a:hover { color: var(--red); }
.acard-exc { font-size: .82rem; color: var(--text2); line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.acard-meta { display: flex; align-items: center; gap: 10px; font-size: .75rem; color: var(--text3); }
.acard-meta .dot { width: 3px; height: 3px; background: var(--text3); border-radius: 50%; }

/* =============================================
   LAYOUT: CONTENT + SIDEBAR
============================================= */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding: 40px 0;
}
.main-content {}
.sidebar {}

/* Sidebar widgets */
.widget {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.widget-title {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text2);
}
.widget-body { padding: 16px; }

/* Popular posts widget */
.pop-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.pop-item:last-child { border-bottom: none; padding-bottom: 0; }
.pop-thumb { width: 64px; height: 48px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: var(--bg3); }
.pop-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pop-info h4 { font-size: .82rem; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 4px; }
.pop-info h4 a:hover { color: var(--red); }
.pop-info span { font-size: .72rem; color: var(--text3); }

/* Amazon product widget */
.amazon-widget-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.amazon-widget-item:last-child { border-bottom: none; }
.amazon-widget-thumb { width: 60px; height: 60px; flex-shrink: 0; background: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.amazon-widget-thumb img { max-width: 54px; max-height: 54px; object-fit: contain; }
.amazon-widget-info h4 { font-size: .8rem; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 4px; }
.amazon-widget-price { font-size: .85rem; font-weight: 800; color: var(--red); }
.amazon-widget-btn {
  display: block;
  text-align: center;
  background: #ff9900;
  color: #000;
  font-size: .72rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: 5px;
  transition: .15s;
}
.amazon-widget-btn:hover { background: #e88a00; }

/* =============================================
   CATEGORY BAND
============================================= */
.cat-band {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}
.cat-band-inner {
  display: flex;
  gap: 6px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}
.cat-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text2);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  transition: .15s;
  white-space: nowrap;
}
.cat-chip:hover { color: var(--white); border-color: var(--red); background: var(--red-glow); }

/* =============================================
   SINGLE POST
============================================= */
.post-header { padding: 48px 0 32px; }
.post-cat-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.post-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 18px; }
.post-meta { display: flex; gap: 20px; font-size: .82rem; color: var(--text3); flex-wrap: wrap; align-items: center; margin-bottom: 28px; }
.post-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 36px; aspect-ratio: 16/9; background: var(--bg3); }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.post-content { color: var(--text2); line-height: 1.9; }
.post-content h2 { color: var(--white); font-size: 1.4rem; margin: 36px 0 14px; padding-left: 14px; border-left: 3px solid var(--red); }
.post-content h3 { color: var(--white); font-size: 1.15rem; margin: 28px 0 10px; }
.post-content p { margin-bottom: 18px; }
.post-content ul, .post-content ol { padding-left: 22px; margin-bottom: 18px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--red); }
.post-content a:hover { text-decoration: underline; }
.post-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .9rem; }
.post-content th { background: var(--bg3); color: var(--white); padding: 10px 14px; text-align: left; font-size: .8rem; }
.post-content td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text2); }
.post-content blockquote { border-left: 3px solid var(--red); background: var(--bg2); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 24px 0; font-style: italic; }

/* Review score box */
.review-score-box {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 1px solid rgba(230,57,70,.25);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.rsc-score {
  text-align: center;
  flex-shrink: 0;
  background: rgba(230,57,70,.1);
  border: 2px solid var(--red);
  border-radius: 14px;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rsc-score .num { font-size: 2rem; font-weight: 900; color: var(--red); line-height: 1; }
.rsc-score .out { font-size: .7rem; color: var(--text3); }
.rsc-info h4 { font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.rsc-verdict { font-size: .88rem; color: var(--text2); }

/* Buy box */
.buy-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.buy-box-price { font-size: 1.6rem; font-weight: 900; color: var(--white); }
.buy-box-price small { font-size: .8rem; color: var(--text3); font-weight: 400; display: block; }
.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff9900;
  color: #000;
  font-weight: 800;
  font-size: .9rem;
  padding: 12px 24px;
  border-radius: 8px;
  transition: .2s;
}
.btn-amazon:hover { background: #e88a00; transform: translateY(-2px); }
.btn-amazon-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text2);
  font-weight: 700;
  font-size: .85rem;
  padding: 11px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: .2s;
}
.btn-amazon-all:hover { border-color: #ff9900; color: #ff9900; transform: translateY(-2px); }

/* =============================================
   BENCHMARK REVEAL ANIMATION
============================================= */
@keyframes dk-scan {
  0%   { top: -40%; opacity: .7; }
  100% { top: 120%;  opacity: 0;  }
}
@keyframes dk-glow-flash {
  0%   { box-shadow: 0 0 0    0   rgba(230,57,70,0); }
  35%  { box-shadow: 0 0 28px 8px rgba(230,57,70,.6); }
  100% { box-shadow: 0 0 0    0   rgba(230,57,70,0); }
}
.rsc-score { position: relative; overflow: hidden; }
.rsc-score .dk-scanline {
  position: absolute; left: 0; right: 0; height: 45%;
  background: linear-gradient(transparent, rgba(230,57,70,.25) 50%, transparent);
  pointer-events: none; opacity: 0;
}
.rsc-score.is-scanning .dk-scanline {
  opacity: 1;
  animation: dk-scan .45s ease-in-out forwards;
}
.rsc-score.is-done { animation: dk-glow-flash .7s ease-out forwards; }

/* Benchmark bar */
.dk-bench { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.dk-bench-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 8px;
}
.dk-bench-track {
  height: 5px; background: var(--bg3); border-radius: 4px; overflow: hidden;
}
.dk-bench-fill {
  height: 100%; width: 0; border-radius: 4px;
  transition: width 1.3s cubic-bezier(.16,1,.3,1);
}
.dk-bench-fill.tier-great { background: linear-gradient(90deg,#16a34a,#22c55e); }
.dk-bench-fill.tier-good  { background: linear-gradient(90deg,#ca8a04,#eab308); }
.dk-bench-fill.tier-avg   { background: linear-gradient(90deg,#ea580c,#f97316); }
.dk-bench-fill.tier-low   { background: linear-gradient(90deg,var(--red-dark),var(--red)); }

/* =============================================
   CONTACT FORM
============================================= */
.dk-contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:28px; }
.dk-contact-card { background:var(--bg2); border-radius:12px; padding:20px; border-top:3px solid var(--red); }
.dk-contact-card h3 { font-size:.95rem; font-weight:700; margin-bottom:8px; color:var(--text); }
.dk-contact-card p { font-size:14px; color:var(--text3); margin:0 0 10px; }
.dk-contact-card a { font-size:14px; font-weight:600; color:var(--red); }
.dk-form-wrap { background:var(--bg2); border-radius:14px; padding:28px; margin:20px 0 24px; }
.dk-form-wrap .form-group { margin-bottom:16px; }
.dk-form-wrap label { display:block; font-size:13px; font-weight:600; color:var(--text2); margin-bottom:6px; }
.dk-form-wrap input[type=text],
.dk-form-wrap input[type=email],
.dk-form-wrap select,
.dk-form-wrap textarea { width:100%; background:var(--bg3); border:1px solid var(--border); border-radius:8px; padding:10px 14px; font-size:14px; color:var(--text); font-family:var(--font); outline:none; transition:border-color .2s; -webkit-appearance:none; appearance:none; }
.dk-form-wrap input[type=text]:focus,
.dk-form-wrap input[type=email]:focus,
.dk-form-wrap select:focus,
.dk-form-wrap textarea:focus { border-color:var(--red); }
.dk-form-wrap textarea { resize:vertical; min-height:130px; }
.dk-form-submit { width:100%; background:var(--red); color:#fff; font-weight:700; font-size:15px; padding:13px 32px; border:none; border-radius:9px; cursor:pointer; transition:background .2s; margin-top:4px; }
.dk-form-submit:hover { background:var(--red-dark); }
.dk-form-note { font-size:.88rem; color:var(--text3); margin-top:16px; }
@media(max-width:600px) { .dk-contact-grid { grid-template-columns:1fr; } }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  padding: 48px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand p { font-size: .85rem; color: var(--text3); margin-top: 10px; line-height: 1.7; }
.footer-col h4 { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text2); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: .85rem; color: var(--text3); transition: .15s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  text-align: center;
  font-size: .78rem;
  color: var(--text3);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom a { color: var(--red); }

/* =============================================
   BREADCRUMB
============================================= */
.breadcrumb { display: flex; gap: 8px; font-size: .78rem; color: var(--text3); align-items: center; padding: 14px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--text3); transition: .15s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text2); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .pc-topla-inner { grid-template-columns: 1fr; gap: 28px; }
  .pc-topla-banner::after { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: block; }
  .dk-topbar-badge { display: none; }
  .dk-topbar-dots { display: none; }
  .dk-topbar-arrow { display: none; }
  .dk-topbar-item { font-size: .78rem; }
  .featured-card { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .use-case-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .articles-grid { grid-template-columns: 1fr; }
  .use-case-grid { grid-template-columns: 1fr 1fr; }
  .review-score-box { flex-direction: column; text-align: center; }
  .buy-box { flex-direction: column; align-items: flex-start; }
  .pc-topla-types { gap: 7px; }
}

/* =============================================
   UTILITIES
============================================= */
.text-red { color: var(--red); }
.text-muted { color: var(--text3); }
.badge-new { background: #00b894; color: #fff; font-size: .65rem; font-weight: 800; padding: 2px 6px; border-radius: 3px; text-transform: uppercase; letter-spacing: .05em; vertical-align: middle; margin-left: 6px; }

/* =============================================
   PC TOPLA SONUÇ SAYFASI
============================================= */
.pct-page { padding: 40px 0 80px; }
.pct-baslik { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; }
.pct-baslik h1 { font-size: 1.8rem; margin: 0 0 4px; }
.pct-toplam { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 16px 24px; text-align: right; min-width: 190px; }
.pct-tablo { display: flex; flex-direction: column; gap: 10px; }
.pct-satir { display: flex; align-items: center; gap: 16px; background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; flex-wrap: wrap; }
.pct-kat { display: flex; align-items: center; gap: 8px; min-width: 130px; }
.pct-kat-icon { font-size: 1.4rem; }
.pct-kat-ad { font-weight: 600; font-size: 0.88rem; color: var(--muted); white-space: nowrap; }
.pct-urun-bilgi { flex: 1; min-width: 200px; }
.pct-urun-ad { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.pct-badge { display: inline-block; font-size: 0.7rem; background: rgba(230,57,70,.15); color: var(--red); border-radius: 4px; padding: 2px 8px; font-weight: 600; margin-bottom: 6px; }
.pct-alts { display: flex; flex-direction: column; gap: 3px; margin-top: 4px; }
.pct-alt { font-size: 0.78rem; text-decoration: none; }
.pct-ucuz { color: #22c55e; }
.pct-pahali { color: #f59e0b; }
.pct-alt:hover { text-decoration: underline; }
.pct-fiyat { font-weight: 700; font-size: 1rem; white-space: nowrap; }
.pct-amzn-btn { background: #ff9900; color: #000 !important; font-weight: 700; font-size: 0.82rem; padding: 8px 16px; border-radius: 6px; text-decoration: none !important; white-space: nowrap; }
.pct-amzn-btn:hover { background: #ffad33; }
@media (max-width: 640px) {
  .pct-satir { flex-direction: column; align-items: flex-start; }
  .pct-baslik { flex-direction: column; }
  .pct-toplam { text-align: left; }
}
.pct-manuel-wrap { display: grid; grid-template-columns: 1fr 260px; gap: 24px; align-items: start; }
.pct-manuel-list { display: flex; flex-direction: column; gap: 10px; }
.pct-manuel-row { display: flex; align-items: center; gap: 14px; background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; flex-wrap: wrap; }
.pct-manuel-select-wrap { flex: 1; min-width: 200px; display: flex; align-items: center; gap: 12px; }
.pct-manuel-select { flex: 1; background: var(--bg3); border: 1px solid var(--border); color: var(--fg); padding: 8px 12px; border-radius: 7px; font-size: 0.88rem; font-family: inherit; cursor: pointer; outline: none; }
.pct-manuel-select:focus { border-color: var(--red); }
.pct-manuel-fiyat { font-weight: 700; font-size: 0.95rem; white-space: nowrap; color: var(--red); min-width: 80px; text-align: right; }
.pct-manuel-amzn { padding: 7px 12px; font-size: 0.78rem; }
.pct-manuel-sidebar { position: sticky; top: 80px; }
.pct-toplam-sayi { font-size: 1.8rem; font-weight: 800; color: var(--red); }
@media (max-width: 860px) {
  .pct-manuel-wrap { grid-template-columns: 1fr; }
  .pct-manuel-sidebar { position: static; }
}
.badge-hot { background: var(--red); color: #fff; font-size: .65rem; font-weight: 800; padding: 2px 6px; border-radius: 3px; text-transform: uppercase; letter-spacing: .05em; vertical-align: middle; margin-left: 6px; }

/* =============================================
   HEADER TICKER (logo sağında)
============================================= */
.header-ticker-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 16px;
  min-width: 0;
}
/* Yanıp sönen kırmızı nokta */
.ticker-blink {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: ticker-blink 1.1s ease-in-out infinite;
  box-shadow: 0 0 6px var(--red);
}
@keyframes ticker-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}
/* Slayt alanı */
.ticker-slides-wrap {
  flex: 1;
  position: relative;
  height: 28px;
  overflow: hidden;
  min-width: 0;
}
.ticker-slide {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  will-change: transform, opacity;
}
.ticker-slide.active {
  animation: tk-in 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: auto;
}
.ticker-slide.leaving {
  animation: tk-out 0.6s ease-in forwards;
  pointer-events: none;
}
.ticker-slide:hover { color: var(--white); }
@keyframes tk-in {
  0%   { opacity: 0; transform: translateY(120%); }
  50%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes tk-out {
  0%   { opacity: 1; transform: translateY(0);      }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-120%); }
}
/* Nokta indikatörler */
.ticker-dots-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ticker-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.ticker-pip.active {
  background: var(--red);
  transform: scale(1.4);
}
.ticker-pip:hover { background: var(--text2); }
/* Desktop'ta nav-menu gizle (cat-band tüm sayfada var) */
@media (min-width: 769px) {
  .nav-menu { display: none !important; }
}

/* =============================================
   NEWS TICKER
============================================= */
.news-ticker {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  height: 34px;
  overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0 14px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
}
.ticker-overflow {
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 50s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 0.8rem;
  color: var(--text2);
  padding: 0 20px;
  transition: color 0.2s;
  white-space: nowrap;
}
.ticker-item:hover { color: var(--white); }
.ticker-dot {
  color: var(--red);
  font-size: 0.4rem;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PC TOPLA: Manuel Seç Butonu ────────────────────────────── */
.btn-manuel-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border: 1.5px solid var(--red);
  border-radius: 10px;
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  background: rgba(230,57,70,.06);
  box-shadow: 0 0 14px rgba(230,57,70,.2);
  letter-spacing: 0.01em;
}
.btn-manuel-sec:hover {
  background: rgba(230,57,70,.14);
  box-shadow: 0 0 24px rgba(230,57,70,.45);
  transform: translateY(-1px);
}

/* ── PC TOPLA: CPU Neon + Hint ───────────────────────────────── */
.pct-cpu-neon {
  border-radius: 12px;
  animation: cpu-neon-pulse 1.8s ease-in-out infinite;
}
@keyframes cpu-neon-pulse {
  0%, 100% {
    box-shadow: 0 0 6px rgba(230,57,70,.4), 0 0 14px rgba(230,57,70,.15);
    outline: 1.5px solid rgba(230,57,70,.55);
  }
  50% {
    box-shadow: 0 0 14px rgba(230,57,70,.75), 0 0 28px rgba(230,57,70,.3);
    outline: 1.5px solid rgba(230,57,70,.95);
  }
}
.pct-cpu-hint {
  padding: 10px 16px;
  background: rgba(230,57,70,.07);
  border: 1px solid rgba(230,57,70,.25);
  border-radius: 8px;
  color: #e63946;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 14px;
  text-align: center;
}

/* ── PC TOPLA: Uyumluluk Durumu ─────────────────────────────── */
.pct-uyumlu {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pct-uyumlu.ok {
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.3);
  color: #22c55e;
}
.pct-uyumlu.warn {
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.3);
  color: #f59e0b;
}
