/* ================================================================
   WEBHOSTINGSATINAL.BIZ — E-Ticaret / Commerce Teması
   Konsept: Deep Rose + Dark — Satış, dönüşüm, e-ticaret
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --bg:       #0f0508;
  --bg2:      #150a0d;
  --panel:    #1e0f14;
  --panel2:   #251419;
  --accent:   #f43f5e;
  --accent2:  #fb7185;
  --accent3:  #fda4af;
  --gold:     #fbbf24;
  --text:     #fce7e9;
  --text-dim: #8b5a62;
  --border:   rgba(244,63,94,0.15);
  --radius:   16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.8; overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at 70% 10%, rgba(244,63,94,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 10% 80%, rgba(251,191,36,0.04) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}

.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  z-index: 9999; width: 0;
  box-shadow: 0 0 15px var(--accent);
}

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,5,8,0.93);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 10px; }
.logo-dot {
  width: 32px; height: 32px; background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.logo-dot::before { content: '🛒'; }
.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; font-weight: 400; color: #fff; letter-spacing: 0.5px;
}

.nav-links { display: flex; gap: 0.3rem; }
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  padding: 0.4rem 0.9rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; transition: all 0.2s;
}
.nav-links a:hover { color: var(--accent2); background: rgba(244,63,94,0.08); }

.cta-button {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff !important; -webkit-text-fill-color: #fff;
  padding: 0.55rem 1.5rem; border-radius: 10px;
  text-decoration: none; font-size: 0.9rem; font-weight: 700;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(244,63,94,0.3);
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(244,63,94,0.5); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }

.hero-intro { text-align: center; padding: 7rem 2rem 5rem; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,63,94,0.12); border: 1px solid rgba(244,63,94,0.3);
  color: var(--accent2); padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 2rem;
}

.hero-intro h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; color: #fff;
  line-height: 1.2; margin-bottom: 1.5rem;
}
.hero-intro h1 span { color: var(--accent2); font-style: italic; }

.subtitle { color: var(--text-dim); font-size: 1.05rem; max-width: 620px; margin: 0 auto 2.5rem; }

.hero-stats {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.stat-item {
  background: rgba(244,63,94,0.05); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.2rem 1.8rem; min-width: 130px; text-align: center;
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; color: var(--accent2); display: block;
}
.stat-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; }

.content-block { margin: 2rem 0 6rem; }

.section {
  background: linear-gradient(135deg, var(--panel), var(--panel2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 3rem; margin-bottom: 2rem;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.section::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(ellipse at top right, rgba(244,63,94,0.08) 0%, transparent 70%);
}
.section:hover { border-color: rgba(244,63,94,0.3); box-shadow: 0 12px 50px rgba(244,63,94,0.08); }

.section-number {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  color: var(--gold); margin-bottom: 0.5rem; letter-spacing: 2px; text-transform: uppercase;
}

.section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem; font-weight: 400; color: #fff;
  margin-bottom: 1.5rem; line-height: 1.3;
}

.section img { width: 100%; height: 320px; object-fit: cover; border-radius: 12px; margin: 1.5rem 0; border: 1px solid var(--border); transition: transform 0.4s; }
.section img:hover { transform: scale(1.01); }
.section p { color: var(--text-dim); font-size: 0.98rem; margin-bottom: 1.1rem; line-height: 1.9; text-align: justify; }

a { color: var(--accent2); text-decoration: none; font-weight: 600; }
a:hover { color: var(--accent3); }

.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; margin-top: 4rem; }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.footer-col h4 { font-family: 'DM Serif Display', serif; color: var(--accent2); font-size: 1rem; font-weight: 400; margin-bottom: 1.2rem; }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; margin-bottom: 0.5rem; font-size: 0.88rem; transition: all 0.2s; font-weight: 400; }
.footer-col a:hover { color: var(--accent2); }
.footer-desc { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; margin-top: 0.8rem; }
.footer-bottom { text-align: center; font-size: 0.82rem; color: var(--text-dim); }

@media (max-width: 768px) {
  .header-container { flex-direction: column; gap: 1rem; }
  .section { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .nav-links { display: none; }
}

/* ==========================================
   MIGRATED INLINE STYLES
   ========================================== */
:root {
      --accent-color: #f97316;
      --accent-hover: #ea580c;
      --bg-color: #f8fafc;
      --text-color: #334155;
      --heading-color: #0f172a;
      --border-color: #e2e8f0;
      --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

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

    body {
      background-color: var(--bg-color);
      color: var(--text-color);
      font-family: var(--font-family);
      line-height: 1.7;
      padding-top: 70px;
    }

    /* Reading Progress Bar */
    .progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      background-color: var(--accent-color);
      width: 0;
      z-index: 9999;
      transition: width 0.1s ease-out;
    }

    a {
      color: var(--accent-color);
      text-decoration: none;
      font-weight: 500;
    }
    a:hover {
      text-decoration: underline;
    }

    /* Header & Navigation */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 70px;
      background-color: #ffffff;
      border-bottom: 1px solid var(--border-color);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-dot {
      width: 14px;
      height: 14px;
      background-color: var(--accent-color);
      border-radius: 50%;
      display: inline-block;
    }

    .logo-text {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--heading-color);
    }

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

    nav.nav-links a {
      color: #475569;
      font-weight: 500;
      font-size: 0.95rem;
    }

    nav.nav-links a:hover {
      color: var(--accent-color);
      text-decoration: none;
    }

    .header-cta .cta-button {
      background-color: var(--accent-color);
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 0.9rem;
      font-weight: 600;
      transition: background-color 0.2s;
    }

    .header-cta .cta-button:hover {
      background-color: var(--accent-hover);
      text-decoration: none;
    }

    /* Hero Section */
    .hero-intro {
      background-color: #ffffff;
      border-bottom: 1px solid var(--border-color);
      padding: 80px 40px;
      text-align: center;
    }

    .hero-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .hero-tag {
      display: inline-block;
      background-color: rgba(249, 115, 22, 0.1);
      color: var(--accent-color);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .hero-intro h1 {
      font-size: 2.5rem;
      color: var(--heading-color);
      line-height: 1.25;
      margin-bottom: 20px;
      font-weight: 800;
    }

    .hero-intro h1 span.highlight {
      color: var(--accent-color);
    }

    .hero-intro .subtitle {
      font-size: 1.15rem;
      color: #64748b;
      margin-bottom: 40px;
      max-width: 750px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 20px;
    }

    .stat-item {
      background-color: var(--bg-color);
      padding: 20px;
      border-radius: 10px;
      border: 1px solid var(--border-color);
    }

    .stat-val {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--accent-color);
      margin-bottom: 4px;
    }

    .stat-lbl {
      font-size: 0.85rem;
      color: #64748b;
      font-weight: 600;
    }

    /* Main Layout (Two Columns with Sidebar) */
    .main-layout {
      max-width: 1300px;
      margin: 40px auto;
      padding: 0 40px;
      display: flex;
      gap: 40px;
    }

    .sidebar {
      position: sticky;
      top: 100px;
      height: fit-content;
      width: 280px;
      flex-shrink: 0;
    }

    .sidebar-box {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 24px;
      border: 1px solid var(--border-color);
      box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .sidebar-box h3 {
      font-size: 1.05rem;
      color: var(--heading-color);
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--accent-color);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .toc-list {
      list-style: none;
    }

    .toc-list li {
      margin-bottom: 8px;
    }

    .toc-list a {
      color: #475569;
      font-size: 0.88rem;
      text-decoration: none;
      display: block;
      padding: 4px 0;
      transition: all 0.2s;
    }

    .toc-list a:hover {
      color: var(--accent-color);
      padding-left: 6px;
    }

    .content-block {
      flex: 1;
      min-width: 0;
    }

    /* Section Styles */
    .section {
      background-color: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 40px;
      margin-bottom: 40px;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
      scroll-margin-top: 90px;
    }

    .section-number {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--accent-color);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
      display: inline-block;
      background-color: rgba(249, 115, 22, 0.08);
      padding: 4px 10px;
      border-radius: 4px;
    }

    .section h2 {
      font-size: 1.8rem;
      color: var(--heading-color);
      margin-bottom: 20px;
      font-weight: 700;
      line-height: 1.3;
    }

    .section img {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 24px;
      border: 1px solid var(--border-color);
    }

    .section p {
      color: var(--text-color);
      font-size: 1rem;
      margin-bottom: 20px;
      text-align: justify;
    }

    .section-cta {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid var(--border-color);
    }

    /* Custom CSS Components */
    .winner-box {
      border: 2px solid var(--accent-color);
      background-color: rgba(249, 115, 22, 0.03);
      border-radius: 10px;
      padding: 24px;
      margin: 24px 0;
      position: relative;
    }

    .winner-box::before {
      content: "🏆 EDİTÖRÜN TAVSİYESİ";
      position: absolute;
      top: -12px;
      left: 20px;
      background-color: var(--accent-color);
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 800;
      padding: 3px 12px;
      border-radius: 20px;
      letter-spacing: 0.5px;
    }

    .winner-box p {
      margin-bottom: 0;
    }

    .cta-primary {
      display: inline-block;
      background-color: var(--accent-color);
      color: #ffffff !important;
      padding: 12px 28px;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid var(--accent-color);
      text-align: center;
    }

    .cta-primary:hover {
      background-color: transparent;
      color: var(--accent-color) !important;
      text-decoration: none;
      transform: translateY(-2px);
    }

    .compare-table-wrapper {
      overflow-x: auto;
      margin: 24px 0;
      border: 1px solid var(--border-color);
      border-radius: 8px;
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      background-color: #ffffff;
      font-size: 0.92rem;
    }

    .compare-table th, .compare-table td {
      padding: 14px 18px;
      text-align: left;
      border-bottom: 1px solid var(--border-color);
    }

    .compare-table th {
      background-color: #f8fafc;
      font-weight: 700;
      color: var(--heading-color);
    }

    .compare-table tr:last-child td {
      border-bottom: none;
    }

    .compare-table tr:hover td {
      background-color: rgba(249, 115, 22, 0.02);
    }

    .feature-list {
      list-style: none;
      margin: 24px 0;
    }

    .feature-list li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 12px;
      font-size: 0.95rem;
    }

    .feature-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent-color);
      font-weight: 800;
      font-size: 1.1rem;
    }

    .tip-box {
      background-color: rgba(249, 115, 22, 0.05);
      border-left: 4px solid var(--accent-color);
      padding: 18px 22px;
      margin: 24px 0;
      border-radius: 0 8px 8px 0;
    }

    .tip-box h4 {
      margin-top: 0;
      margin-bottom: 8px;
      color: var(--accent-color);
      font-size: 1rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .tip-box p {
      margin-bottom: 0;
      font-size: 0.92rem;
      color: #475569;
    }

    /* FAQ Component */
    .faq-list {
      margin: 24px 0;
    }

    .faq-item {
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 12px;
      background-color: #ffffff;
      overflow: hidden;
    }

    .faq-question {
      padding: 16px 20px;
      font-weight: 600;
      cursor: pointer;
      background-color: #f8fafc;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.2s ease;
      color: var(--heading-color);
      font-size: 0.96rem;
    }

    .faq-question:hover {
      background-color: rgba(249, 115, 22, 0.02);
    }

    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      color: #475569;
      font-size: 0.92rem;
      line-height: 1.6;
    }

    .faq-item.active .faq-answer {
      padding: 16px 20px;
      max-height: 500px;
      border-top: 1px solid var(--border-color);
    }

    .faq-question::after {
      content: "+";
      font-size: 1.2rem;
      color: var(--accent-color);
      transition: transform 0.3s ease;
      font-weight: bold;
    }

    .faq-item.active .faq-question::after {
      transform: rotate(45deg);
    }

    /* Rating Component */
    .rating-bar-wrapper {
      margin: 20px 0;
    }

    .rating-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.88rem;
      font-weight: 600;
      color: #475569;
      margin-bottom: 6px;
    }

    .rating-bar-bg {
      background-color: #e2e8f0;
      height: 8px;
      border-radius: 4px;
      overflow: hidden;
    }

    .rating-bar-fill {
      background-color: var(--accent-color);
      height: 100%;
      border-radius: 4px;
      transition: width 1s ease-out;
    }

    /* Footer */
    footer {
      background-color: #0f172a;
      color: #94a3b8;
      padding: 60px 40px 20px;
      border-top: 1px solid #1e293b;
      margin-top: 60px;
    }

    .footer-columns {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1.5fr 1.5fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-col h4 {
      color: #ffffff;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .footer-col p {
      font-size: 0.9rem;
      line-height: 1.6;
    }

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

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      color: #94a3b8;
      font-size: 0.9rem;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: #ffffff;
      text-decoration: none;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 20px;
      border-top: 1px solid #1e293b;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
    }

    .footer-bottom p {
      margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .main-layout {
        flex-direction: column;
        padding: 0 20px;
      }

      .sidebar {
        width: 100%;
        position: static;
        margin-bottom: 20px;
      }

      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
      }

      header {
        padding: 0 20px;
      }

      nav.nav-links {
        display: none;
      }
    }

    @media (max-width: 576px) {
      .hero-stats {
        grid-template-columns: 1fr;
      }

      .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .hero-intro h1 {
        font-size: 1.8rem;
      }

      .section {
        padding: 20px;
      }

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

