/*
 Theme Name: ByZensShop
 Theme URI: https://byzensshop.com
 Author: ByZensShop & ChatGPT
 Description: Custom lightweight affiliate & blog theme for ByZensShop.
 Version: 1.0.1
 Text Domain: byzensshop
*/

:root {
  --bz-bg: #050816;
  --bz-bg-alt: #07111f;
  --bz-primary: #2563eb;
  --bz-primary-soft: rgba(37, 99, 235, 0.14);
  --bz-accent: #22c55e;
  --bz-text: #e5e7eb;
  --bz-muted: #9ca3af;
  --bz-border: rgba(148, 163, 184, 0.35);
  --bz-radius-xl: 1.5rem;
  --bz-radius-lg: 1rem;
  --bz-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.55);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0f172a 0, #020617 52%, #000 100%);
  color: var(--bz-text);
  line-height: 1.6;
}

a {
  color: var(--bz-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.bz-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER / NAV */

.bz-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.65), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.bz-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.bz-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bz-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #38bdf8, #1d4ed8 40%, #020617 100%);
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.87);
}

.bz-logo-text-main {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.bz-logo-text-sub {
  font-size: 0.7rem;
  color: var(--bz-muted);
}

.bz-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.bz-nav a {
  font-size: 0.9rem;
  color: var(--bz-text);
  opacity: 0.86;
}

.bz-nav a:hover {
  opacity: 1;
}

.bz-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.7);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), rgba(37, 99, 235, 0.18));
  color: #e5e7eb;
  font-size: 0.85rem;
  box-shadow: 0 0 22px rgba(37, 99, 235, 0.4);
}

.bz-nav-cta span.badge {
  font-size: 0.68rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.48);
  background: rgba(15, 23, 42, 0.88);
}

/* HERO */

.bz-hero {
  padding: 5.25rem 0 3.75rem;
}

.bz-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 3.25rem;
  align-items: center;
}

.bz-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.12rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.75rem;
  color: var(--bz-muted);
  margin-bottom: 0.9rem;
}

.bz-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.9);
}

.bz-hero-title {
  font-size: clamp(2.3rem, 3.1vw + 1.6rem, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.bz-gradient-text {
  background-image: linear-gradient(120deg, #60a5fa, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

.bz-hero-subtitle {
  font-size: 0.98rem;
  color: var(--bz-muted);
  max-width: 32rem;
  margin-bottom: 1.7rem;
}

.bz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.bz-btn-primary,
.bz-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.bz-btn-primary {
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.92), #1d4ed8);
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.65);
  color: #e5e7eb;
}

.bz-btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  border-color: var(--bz-border);
  color: var(--bz-muted);
}

.bz-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.8rem;
  color: var(--bz-muted);
}

.bz-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.bz-meta-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #38bdf8;
}

/* HERO VISUAL */

.bz-hero-card {
  border-radius: 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.96));
  box-shadow: var(--bz-shadow-soft);
  padding: 1.4rem 1.5rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.bz-hero-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--bz-muted);
  margin-bottom: 0.5rem;
}

.bz-hero-metric {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.bz-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.3rem;
}

.bz-pill {
  font-size: 0.72rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: rgba(15, 23, 42, 0.96);
}

/* TOOLS GRID */

.bz-section {
  padding: 2.6rem 0;
}

.bz-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.bz-section-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.bz-section-sub {
  font-size: 0.9rem;
  color: var(--bz-muted);
}

.bz-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.bz-tool-card {
  border-radius: 1.1rem;
  border: 1px solid var(--bz-border);
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.55), rgba(15, 23, 42, 0.98));
  padding: 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.bz-tool-name {
  font-size: 1rem;
  font-weight: 600;
}

.bz-tool-tagline {
  font-size: 0.85rem;
  color: var(--bz-muted);
}

.bz-tool-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--bz-muted);
}

.bz-pill-soft {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 0.75rem;
}

/* FOOTER */

.bz-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  margin-top: 3rem;
  padding: 1.5rem 0 2.3rem;
  font-size: 0.8rem;
  color: var(--bz-muted);
}

.bz-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: 1rem;
}

.bz-footer-col {
  max-width: 400px;
}

.bz-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
}

.bz-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* CONTENT */

.bz-main {
  padding-top: 1.2rem;
}

.bz-page-wrap {
  padding: 2.2rem 0 3rem;
}

.bz-page-title {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

.bz-page-intro {
  font-size: 0.96rem;
  color: var(--bz-muted);
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.bz-prose p {
  margin-bottom: 0.9rem;
  font-size: 0.96rem;
  color: #e5e7eb;
}

.bz-prose h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}

.bz-prose h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.bz-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 0.72rem;
  color: var(--bz-muted);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .bz-hero {
    padding-top: 4rem;
  }
  .bz-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.4rem;
  }
  .bz-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .bz-hero-title {
    font-size: 2.1rem;
  }
  .bz-header-inner {
    padding-inline: 0.4rem;
  }
}
/* =========================
   HERO META CHIP (Glow Dots)
   ========================= */
.bz-hero-meta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:14px;
}

.bz-meta-chip{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(59,130,246,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color:rgba(255,255,255,.86);
  line-height:1;
}

/* Senin HTML’de zaten var: <span class="bz-meta-dot"></span> */
.bz-meta-dot{
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  background:radial-gradient(circle, #8fd3ff 0%, #3b82f6 45%, rgba(59,130,246,.15) 75%);
  box-shadow: 0 0 10px rgba(59,130,246,.95), 0 0 24px rgba(59,130,246,.45);
  animation:bzGlowPulse 1.8s ease-in-out infinite;
}

/* Eğer bir yerde dot koymayı unutursan, otomatik üretir */
.bz-meta-chip::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:radial-gradient(circle, #8fd3ff 0%, #3b82f6 45%, rgba(59,130,246,.15) 75%);
  box-shadow: 0 0 10px rgba(59,130,246,.95), 0 0 24px rgba(59,130,246,.45);
  animation:bzGlowPulse 1.8s ease-in-out infinite;
}

/* Eğer chip içinde .bz-meta-dot varsa, çift nokta olmasın */
.bz-meta-chip:has(.bz-meta-dot)::before{ content:none; }

@keyframes bzGlowPulse{
  0%,100%{ transform:scale(1); filter:brightness(1); opacity:.9; }
  50%{ transform:scale(1.25); filter:brightness(1.2); opacity:1; }
}
/* TOOL CARD – PREMIUM HOVER */
.bz-tool-card {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  transition: all .4s ease;
}

.bz-tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(
    400px circle at var(--x) var(--y),
    rgba(59,130,246,.35),
    transparent 40%
  );
  opacity: 0;
  transition: opacity .4s ease;
}

.bz-tool-card:hover::before {
  opacity: 1;
}

.bz-tool-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 10px 40px rgba(59,130,246,.35),
    inset 0 0 0 1px rgba(59,130,246,.35);
}
/* ===== EXACT HERO (OLD VERSION CLONE) ===== */

.bz-hero-exact {
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(800px 500px at 85% 25%, rgba(99,102,241,.22), transparent 60%),
    linear-gradient(180deg, #020617, #020617);
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
}

.bz-hero-exact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.bz-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15,23,42,.7);
  color: #c7d2fe;
  font-size: 13px;
  margin-bottom: 22px;
}

.bz-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.bz-hero-exact-left h1 {
  font-size: 56px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 18px;
}

.bz-hero-exact-left h1 span {
  background: linear-gradient(90deg,#3b82f6,#60a5fa,#818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bz-hero-exact-left p {
  color: #cbd5e1;
  max-width: 560px;
  margin-bottom: 28px;
}

.bz-hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.bz-btn-main {
  background: #2563eb;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
}

.bz-btn-outline {
  border: 1px solid rgba(148,163,184,.4);
  color: #e5e7eb;
  padding: 12px 22px;
  border-radius: 999px;
}

.bz-hero-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #94a3b8;
}

/* RIGHT CARD */
.bz-hero-exact-card {
  background: rgba(15,23,42,.65);
  border: 1px solid rgba(148,163,184,.25);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
}

.bz-hero-exact-card small {
  letter-spacing: .18em;
  font-size: 12px;
  color: #93c5fd;
}

.bz-hero-exact-card h3 {
  font-size: 30px;
  margin: 10px 0;
}

.bz-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.bz-hero-tags span {
  border: 1px solid rgba(148,163,184,.3);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

/* MOBILE */
@media (max-width: 900px) {
  .bz-hero-exact-grid {
    grid-template-columns: 1fr;
  }
}
/* HERO HEIGHT FIX */
.bz-hero-exact {
  min-height: auto;
  padding-top: 110px;
  padding-bottom: 60px;
}
/* MOBILE EXACT FIX */
@media (max-width: 768px) {

  .bz-hero-exact {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .bz-hero-exact-left h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .bz-hero-exact-left p {
    font-size: 15px;
  }

  .bz-hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .bz-btn-main,
  .bz-btn-outline {
    width: 100%;
    text-align: center;
  }

  .bz-hero-exact-card {
    padding: 20px;
    border-radius: 16px;
  }

  .bz-hero-tags {
    justify-content: center;
  }
}
/* HERO META DOTS */
.bz-hero-meta span {
  position: relative;
  padding-left: 18px;
}

.bz-hero-meta span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(59,130,246,0.9);
}
/* FORCE HERO META DOTS ON MOBILE */
@media (max-width: 768px) {

  .bz-hero-meta span {
    position: relative;
    padding-left: 20px;
    display: inline-block;
  }

  .bz-hero-meta span::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.6em; /* 🔥 kritik satır */
    transform: none;
    box-shadow: 0 0 8px rgba(59,130,246,0.9);
  }
}
