/* ==========================================================================
   KURBANSEPETI.NET — KURBAN HİSSE VE HİJYENİK TAŞIMA SEPETİ
   Akyüz Plastik A.Ş. — B2B Toptan Tedarik
   Lacivert + altın kurumsal palet
   ========================================================================== */

:root {
  /* Kurumsal palet — lacivert + altın B2B */
  --navy-900: #0a1838;
  --navy-800: #122555;
  --navy-700: #1a3f8a;
  --navy-600: #2553a8;
  --navy-500: #3a6ec5;
  --navy-50:  #eef2fb;
  
  --gold-700: #a87e16;
  --gold-600: #c69521;
  --gold-500: #d4a027;
  --gold-400: #e0b34a;
  --gold-50:  #fdf6e3;
  
  --cream:    #f8f5ee;
  --cream-2:  #efe9dc;
  --ink:      #1a1f2e;
  --ink-70:   #4a5266;
  --ink-50:   #6b7280;
  --ink-30:   #a8aebd;
  --line:     #e5dfd0;
  --line-dk:  #d5cdb8;
  --white:    #ffffff;
  
  --success:  #2d7a4a;
  --warning:  #b8860b;
  
  /* Type — Inter + Barlow Condensed (plastikraf ile aynı standart) */
  --f-display: 'Barlow Condensed', 'Inter', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;
  
  /* Spacing & sizing */
  --container: 1240px;
  --radius:    4px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(10, 24, 56, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 24, 56, 0.10);
  --shadow-lg: 0 16px 48px rgba(10, 24, 56, 0.14);
  
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
  background: var(--navy-900);
  color: #cdd5e6;
  font-size: 13px;
  padding: 10px 0;
  letter-spacing: 0.02em;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.topbar-info {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-info i {
  color: var(--gold-500);
  font-size: 12px;
}

.topbar-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.topbar-links a {
  color: #cdd5e6;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.topbar-links a:hover { color: var(--gold-400); }

.topbar-marketplace {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #fff !important;
  transition: filter var(--transition);
}

.topbar-marketplace:hover { filter: brightness(1.1); }

.topbar-trendyol     { background: #f27a1a; }
.topbar-hepsiburada  { background: #ff6000; }
.topbar-temu         { background: #fb7701; }

@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .topbar .container { flex-direction: column; gap: 8px; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

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

.logo img {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--f-display);
  line-height: 1;
}

.logo-text .brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--navy-700);
  text-transform: uppercase;
}

.logo-text .tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold-700);
  margin-top: 3px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-70);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav a:hover {
  color: var(--navy-700);
  background: var(--navy-50);
}

.nav a.active {
  color: var(--navy-700);
  font-weight: 600;
  border-bottom: 2px solid var(--gold-500);
  border-radius: 0;
}

.btn-cta-header {
  background: var(--navy-700);
  color: var(--white);
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-cta-header:hover {
  background: var(--navy-800);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 22px;
  color: var(--navy-700);
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .menu-toggle { display: block; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
}

.btn-primary:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.btn-gold:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--navy-900);
}

.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--navy-700);
}

.btn-outline:hover {
  background: var(--navy-700);
  color: var(--white);
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

/* Marketplace buttons */
.btn-trendyol {
  background: #f27a1a;
  color: #fff;
  border-color: #f27a1a;
}

.btn-trendyol:hover {
  background: #d96910;
  border-color: #d96910;
  color: #fff;
}

.btn-hepsiburada {
  background: #ff6000;
  color: #fff;
  border-color: #ff6000;
}

.btn-hepsiburada:hover {
  background: #cc4d00;
  border-color: #cc4d00;
  color: #fff;
}

.btn-temu {
  background: #fb7701;
  color: #fff;
  border-color: #fb7701;
}

.btn-temu:hover {
  background: #d96401;
  border-color: #d96401;
  color: #fff;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 39, 0.08) 0%, transparent 70%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-700);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 6px 14px;
  background: var(--gold-50);
  border-left: 3px solid var(--gold-500);
}

.hero-title {
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--navy-900);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.hero-title .highlight {
  color: var(--gold-600);
  display: block;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-70);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-lead strong { color: var(--navy-800); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  max-width: 480px;
}

.stat-chip {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: var(--radius);
  text-align: left;
  border-left: 3px solid var(--gold-500);
}

.stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-700);
  line-height: 1;
}

.stat-lbl {
  display: block;
  font-size: 12px;
  color: var(--ink-50);
  margin-top: 4px;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-badge-floating {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--navy-700);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold-500);
}

.hero-badge-floating .num {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.hero-badge-floating .lbl {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

@media (max-width: 980px) {
  .hero { padding: 50px 0 70px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 44px; }
  .hero-lead { font-size: 16px; }
  .hero-stats { grid-template-columns: 1fr; max-width: 100%; }
  .hero-badge-floating { left: 0; bottom: -20px; }
}

/* ==========================================================================
   SECTION COMMONS
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--white);
}

.section-dark {
  background: var(--navy-900);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-700);
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding: 0 30px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '—';
  color: var(--gold-500);
  margin: 0 8px;
}

.section-header h2 {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.5px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--ink-70);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-header h2 { font-size: 32px; }
}

/* ==========================================================================
   B2B SEGMENTS
   ========================================================================== */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.segment-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.segment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-500), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.segment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}

.segment-card:hover::before {
  transform: scaleX(1);
}

.segment-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-50);
  color: var(--navy-700);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.segment-card h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.segment-card .role {
  font-size: 12px;
  color: var(--gold-700);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

.segment-card p {
  font-size: 15px;
  color: var(--ink-70);
  line-height: 1.65;
  margin-bottom: 20px;
}

.segment-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.segment-features li {
  font-size: 14px;
  color: var(--ink-70);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.segment-features i {
  color: var(--gold-600);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .segments-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRODUCT FEATURE GRID
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-block {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all var(--transition);
}

.feature-block:hover {
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.feature-icon-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 18px;
}

.feature-block h4 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-block p {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.6;
}

@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   PRODUCT DETAIL
   ========================================================================== */
.product-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.product-image-main {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.product-image-main img {
  width: 100%;
  border-radius: var(--radius);
}

.product-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.product-image-grid img {
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity var(--transition);
  border: 2px solid transparent;
}

.product-image-grid img:hover {
  border-color: var(--gold-500);
}

.product-info-side h1 {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.meta-pill {
  background: var(--navy-50);
  color: var(--navy-700);
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 600;
}

.meta-pill.gold {
  background: var(--gold-50);
  color: var(--gold-700);
}

.product-lead {
  font-size: 17px;
  color: var(--ink-70);
  line-height: 1.7;
  margin-bottom: 28px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}

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

.spec-table th {
  background: var(--cream);
  color: var(--navy-800);
  font-weight: 600;
  width: 40%;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.marketplace-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 980px) {
  .product-hero { grid-template-columns: 1fr; }
  .product-image-main { position: relative; top: 0; }
  .product-info-side h1 { font-size: 32px; }
  .marketplace-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ORDER FORM (genişletilmiş)
   ========================================================================== */
.order-form-wrapper {
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 880px;
  margin: 0 auto;
}

.order-form-wrapper h2 {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--navy-900);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.order-form-wrapper > p {
  color: var(--ink-70);
  margin-bottom: 30px;
}

.form-section-title {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 1.5px;
  color: var(--navy-700);
  margin: 28px 0 16px;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-500);
}

.form-section-title:first-child { margin-top: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line-dk);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px var(--navy-50);
}

.form-group textarea { min-height: 110px; resize: vertical; }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  padding: 10px 12px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: background var(--transition);
}

.checkbox-item:hover { background: var(--cream-2); }

.checkbox-item input { margin-top: 2px; flex-shrink: 0; }

@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold-700);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--navy-900);
  margin-bottom: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.blog-card p {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.blog-card-link {
  color: var(--navy-700);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-link i { font-size: 11px; transition: transform var(--transition); }
.blog-card:hover .blog-card-link i { transform: translateX(4px); }

@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   ARTICLE PAGE (blog post)
   ========================================================================== */
.article-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.article-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 160, 39, 0.15) 0%, transparent 70%);
}

.article-hero .container { position: relative; z-index: 2; max-width: 880px; }

.article-hero .tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold-400);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
}

.article-hero h1 {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.article-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}

.article-content h2 {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--navy-900);
  margin: 36px 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-left: 4px solid var(--gold-500);
  padding-left: 16px;
}

.article-content h3 {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--navy-800);
  margin: 28px 0 12px;
  letter-spacing: 0.3px;
}

.article-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 18px;
}

.article-content ul,
.article-content ol {
  margin: 18px 0 18px 26px;
}

.article-content li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 8px;
}

.article-content strong { color: var(--navy-800); }

.article-content blockquote {
  border-left: 4px solid var(--gold-500);
  background: var(--cream);
  padding: 20px 24px;
  margin: 28px 0;
  font-style: italic;
  color: var(--navy-800);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-cta-block {
  background: var(--navy-900);
  color: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  text-align: center;
  border-top: 4px solid var(--gold-500);
}

.article-cta-block h3 {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--gold-400);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.article-cta-block p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--navy-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--gold-600);
  font-weight: 700;
  transition: transform var(--transition);
}

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

.faq-item[open] .faq-question {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.faq-answer {
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-70);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 160, 39, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 160, 39, 0.1) 0%, transparent 50%);
}

.cta-banner .container { position: relative; z-index: 2; }

.cta-banner h2 {
  font-family: var(--f-display);
  font-size: 42px;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  color: var(--white);
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: 30px; }
  .cta-banner p { font-size: 16px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

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

.footer-col h4 {
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold-400); }

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  background: var(--white);
  padding: 6px 10px;
  border-radius: var(--radius);
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact i {
  color: var(--gold-400);
  font-size: 14px;
  margin-top: 4px;
  width: 16px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover { color: var(--gold-400); }

.footer-marketplaces {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-marketplaces a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #fff !important;
  transition: filter var(--transition);
}

.footer-marketplaces a:hover { filter: brightness(1.15); }

.footer-trendyol     { background: #f27a1a; }
.footer-hepsiburada  { background: #ff6000; }
.footer-temu         { background: #fb7701; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PAGE HEADER (for non-home pages)
   ========================================================================== */
.page-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 60px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 160, 39, 0.12) 0%, transparent 70%);
}

.page-header .container { position: relative; z-index: 2; }

.page-header h1 {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.page-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb {
  background: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-70);
}

.breadcrumb a { color: var(--navy-700); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold-700); }

.breadcrumb i {
  color: var(--ink-30);
  font-size: 10px;
  margin: 0 8px;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
  border-top: 3px solid var(--gold-500);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: var(--navy-50);
  color: var(--navy-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
}

.contact-card h3 {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.contact-card a,
.contact-card p {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.7;
}

.contact-card a:hover { color: var(--navy-700); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 30px;
}

.map-container iframe { display: block; width: 100%; }

@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   PAGE HEADERS (yeni eklenen sayfalar için)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: white;
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212,160,39,0.18), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-eyebrow {
  display: inline-block;
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 52px);
  color: white;
  margin-bottom: 14px;
  line-height: 1.1;
  font-weight: 700;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT (HAKKIMIZDA) PAGE
   ========================================================================== */
.company-overview {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.company-text h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy-900);
  line-height: 1.15;
  margin-bottom: 18px;
}
.company-text h2 em {
  color: var(--gold-600);
  font-style: normal;
}
.company-text p {
  color: var(--ink-70);
  margin-bottom: 16px;
  line-height: 1.75;
}
.company-text p strong {
  color: var(--navy-900);
}
.company-visual {
  position: relative;
}
.company-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.company-visual-tag {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.company-visual-tag strong {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  display: block;
}
.company-visual-tag span {
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 900px) {
  .company-overview { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   PILLARS GRID (Üretim İlkeleri)
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all var(--transition);
}
.pillar-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.pillar-card h3 {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--navy-900);
  margin-bottom: 10px;
  font-weight: 700;
}
.pillar-card p {
  color: var(--ink-70);
  font-size: 14.5px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================================================
   COMPANY FACTS
   ========================================================================== */
.company-facts {
  background: var(--navy-900);
  color: white;
  padding: 50px 40px;
  border-radius: var(--radius-lg);
}
.company-fact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.company-fact-num {
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 10px;
}
.company-fact-lbl {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 720px) {
  .company-fact-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .company-facts { padding: 32px 20px; }
}

/* ==========================================================================
   PORTFOLIO GRID
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.portfolio-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  transition: all var(--transition);
}
.portfolio-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.portfolio-card i {
  font-size: 30px;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.portfolio-card h4 {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--navy-900);
  margin-bottom: 8px;
  font-weight: 700;
}
.portfolio-card p {
  color: var(--ink-70);
  font-size: 13.5px;
  line-height: 1.6;
}
.portfolio-note {
  margin-top: 32px;
  color: var(--ink-50);
  font-size: 14px;
}
.portfolio-note a {
  color: var(--navy-700);
  font-weight: 600;
}
.portfolio-note a:hover {
  color: var(--gold-700);
}
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA BUTTONS (Light variant for dark CTA bars)
   ========================================================================== */
.btn-ghost-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-ghost-light:hover {
  background: white;
  color: var(--navy-900);
  border-color: white;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btn-block {
  width: 100%;
  display: flex;
}

/* ==========================================================================
   CONTACT (İLETİŞİM) PAGE
   ========================================================================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-700);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
}
.contact-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.contact-card p {
  color: var(--ink-50);
  font-size: 14px;
  margin-bottom: 16px;
}
.contact-card-link {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 8px;
  font-family: var(--f-display);
}
.contact-card-link:hover {
  color: var(--gold-700);
}
.contact-card-hours {
  display: block;
  font-size: 12px;
  color: var(--ink-50);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .contact-cards { grid-template-columns: 1fr; gap: 16px; }
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
}
.contact-form-block, .contact-map-block {
  display: flex;
  flex-direction: column;
}
.contact-form-block h2, .contact-map-block h2 {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 6px 0 14px;
}
.contact-form-block h2 em, .contact-map-block h2 em {
  color: var(--gold-600);
  font-style: normal;
}
.form-intro {
  color: var(--ink-70);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
}
.form-intro a {
  color: var(--navy-700);
  font-weight: 600;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-disclaimer {
  font-size: 12.5px;
  color: var(--ink-50);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-disclaimer i {
  color: var(--success);
}
.map-embed {
  margin: 18px 0 24px;
}
.map-embed iframe {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.map-info-block {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.map-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.map-info-row:last-child { border-bottom: none; }
.map-info-row i {
  color: var(--gold-600);
  font-size: 18px;
  width: 28px;
  margin-top: 2px;
  flex-shrink: 0;
}
.map-info-row strong {
  display: block;
  font-size: 14px;
  color: var(--navy-900);
  margin-bottom: 2px;
}
.map-info-row span {
  font-size: 13.5px;
  color: var(--ink-70);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .contact-form-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ARTICLE PAGES (Blog Detail)
   ========================================================================== */
.article-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: white;
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212,160,39,0.15), transparent 70%);
  pointer-events: none;
}
.article-hero .container { position: relative; z-index: 2; max-width: 880px; }
.article-hero .tag {
  display: inline-block;
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(30px, 4.5vw, 46px);
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
}
.article-hero h1 em {
  color: var(--gold-400);
  font-style: normal;
}
.article-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
}
.article-meta i {
  color: var(--gold-400);
  margin-right: 5px;
}
.article-content {
  padding: 70px 0;
  background: white;
}
.article-content .container-narrow {
  max-width: 800px;
}
.article-lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gold-500);
  font-weight: 500;
}
.article-content h2 {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--navy-900);
  margin: 44px 0 18px;
  line-height: 1.2;
}
.article-content h3 {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--navy-900);
  margin: 30px 0 12px;
}
.article-content p {
  margin-bottom: 18px;
  line-height: 1.85;
  font-size: 16px;
  color: var(--ink-70);
}
.article-content strong { color: var(--navy-900); }
.article-content ul,
.article-content ol {
  margin: 16px 0 22px 24px;
  color: var(--ink-70);
}
.article-content li {
  margin-bottom: 10px;
  line-height: 1.75;
}
.article-content blockquote {
  border-left: 4px solid var(--gold-500);
  background: var(--cream);
  padding: 20px 28px;
  margin: 30px 0;
  font-style: italic;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}
.article-content blockquote strong { font-style: normal; }
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.article-content table th {
  background: var(--navy-50);
  color: var(--navy-900);
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}
.article-content table td {
  padding: 12px 18px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-70);
}
.article-content table tr:last-child td { border-bottom: none; }

.article-cta-block {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
  color: white;
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  margin: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}
.article-cta-block h3 {
  font-family: var(--f-display);
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
}
.article-cta-block p {
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-size: 14.5px;
}
@media (max-width: 720px) {
  .article-cta-block { grid-template-columns: 1fr; text-align: center; }
}

/* ==========================================================================
   BLOG CARD (Liste sayfası varyantları)
   ========================================================================== */
.blog-card-image {
  position: relative;
  display: block;
}
.blog-card-overlay-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.blog-card-meta {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ink-50);
  margin-bottom: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.blog-card-meta i {
  color: var(--gold-600);
  margin-right: 4px;
}

/* ==========================================================================
   INFO BAR
   ========================================================================== */
.info-bar {
  background: white;
  border-left: 4px solid var(--gold-500);
  padding: 22px 26px;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-bar > i {
  color: var(--gold-600);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 4px;
}
.info-bar strong {
  display: block;
  color: var(--navy-900);
  margin-bottom: 6px;
  font-size: 15px;
}
.info-bar p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.65;
}

