/* ===================================
   MIZRAP TİCARET - ANA STİL DOSYASI
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS DEĞİŞKENLERİ ===== */
:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #10b981;
  --accent-dark: #059669;
  --accent-light: #34d399;
  --white: #ffffff;
  --light: #f8fafc;
  --light-2: #f1f5f9;
  --text: #334155;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow: rgba(15, 23, 42, 0.15);
  --shadow-lg: rgba(15, 23, 42, 0.25);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  --header-bg: #ffffff;
  --dropdown-bg: #ffffff;
  --card-bg: #ffffff;
  --input-bg: #ffffff;
  --bg-base: #ffffff;
}


/* ===== SIFIRLA ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-main);
}

/* ===== YARDIMCI ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent);
}

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-dark:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

/* ===== ÜSTTE BAR ===== */
.top-bar {
  background: var(--primary);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-info a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.top-bar-info a:hover {
  color: var(--accent);
}

.top-bar-info a i {
  color: var(--accent);
  font-size: 12px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  transition: var(--transition);
}

.top-bar-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* Sosyal medya bağlantıları tüm sayfalardan kaldırıldı. */
.top-bar-social,
.mobile-menu-social,
.footer-social,
.contact-social {
  display: none !important;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
  height: 74px;
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-name span {
  color: var(--accent);
}

.logo-tagline {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav > li {
  position: relative;
}

.nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 28px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.2px;
  position: relative;
  transition: var(--transition);
}

.nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
  transition: width 0.3s ease;
}

.nav > li:hover > a,
.nav > li.active > a {
  color: var(--accent);
}

.nav > li:hover > a::after,
.nav > li.active > a::after {
  width: calc(100% - 32px);
}

.nav > li > a i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav > li:hover > a i {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: 1px solid var(--border);
  z-index: 100;
}

.nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown li a i {
  color: var(--accent);
  width: 16px;
  font-size: 12px;
}

.dropdown li a:hover {
  background: var(--light);
  color: var(--accent);
  padding-left: 20px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-search-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--light);
  color: var(--text-light);
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.header-search-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129,0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger:hover {
  background: var(--light);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Arama Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  width: 100%;
  max-width: 640px;
  padding: 24px;
}

.search-overlay-form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  gap: 16px;
  padding-bottom: 16px;
}

.search-overlay-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 28px;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 300;
}

.search-overlay-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.search-overlay-form button {
  color: var(--accent);
  font-size: 24px;
}

.search-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.search-overlay-close:hover {
  background: var(--accent);
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--primary);
}

.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-slide.active img {
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(15, 23, 42, 0.45) 60%,
    rgba(15, 23, 42, 0.25) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-light);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.hero-slide.active .hero-badge {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 74px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.hero-slide.active .hero-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}

.hero-slide.active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.8s, transform 0.7s ease 0.8s;
}

.hero-slide.active .hero-buttons {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--accent);
}

.hero-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
}

/* Hero Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--accent);
  padding: 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(0,0,0,0.08);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.stat-text {}

.stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number sup {
  font-size: 14px;
  font-weight: 700;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.5px;
}

/* ===== ÜRÜNLER ===== */
.products-section {
  padding: 100px 0;
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 20px rgba(15,23,42,0.08);
  transition: var(--transition);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15,23,42,0.18);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* CSS gradient backgrounds for product cards without images */
.product-card.grad-1 { background: linear-gradient(135deg, #1e293b 0%, #0f4c2a 100%); }
.product-card.grad-2 { background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%); }
.product-card.grad-3 { background: linear-gradient(135deg, #2d1b69 0%, #0f172a 100%); }
.product-card.grad-4 { background: linear-gradient(135deg, #7f1d1d 0%, #1c1c1c 100%); }
.product-card.grad-5 { background: linear-gradient(135deg, #064e3b 0%, #1e293b 100%); }
.product-card.grad-6 { background: linear-gradient(135deg, #1e3a5f 0%, #065f46 100%); }

.product-card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 52px;
  color: rgba(255,255,255,0.2);
  transition: var(--transition);
}

.product-card:hover .product-card-icon {
  transform: translate(-50%, -65%) scale(1.1);
  color: rgba(255,255,255,0.35);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.35) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(
    to top,
    rgba(5, 150, 105, 0.9) 0%,
    rgba(15, 23, 42, 0.5) 55%,
    transparent 100%
  );
}

.product-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.product-card:hover .product-card-tag {
  opacity: 1;
  transform: translateY(0);
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.product-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.product-card:hover .product-card-desc {
  opacity: 1;
  transform: translateY(0);
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease 0.05s;
}

.product-card:hover .product-card-link {
  opacity: 1;
  transform: translateY(0);
}

.product-card-link i {
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-link:hover i {
  transform: translateX(4px);
}

/* ===== NEDEN BİZ ===== */
.why-section {
  padding: 100px 0;
  background: var(--bg-base);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left {}

.why-left .section-desc {
  margin-bottom: 40px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--light);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-feature:hover {
  background: var(--card-bg);
  box-shadow: 0 8px 30px var(--shadow);
  border-color: transparent;
  transform: translateY(-3px);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}

.why-feature-text {}

.why-feature-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.why-feature-desc {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.55;
}

.why-right {
  position: relative;
}

.why-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px var(--shadow-lg);
}

.why-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.why-image-badge {
  position: absolute;
  bottom: 30px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 10px 40px rgba(15,23,42,0.2);
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-image-badge-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
}

.why-image-badge-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.why-image-badge-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== VİDEO BÖLÜMÜ ===== */
.video-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129,0.08) 0%, transparent 70%);
}

.video-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129,0.06) 0%, transparent 70%);
}

.video-inner {
  position: relative;
  z-index: 1;
}

.video-header {
  text-align: center;
  margin-bottom: 56px;
}

.video-header .section-title {
  color: var(--white);
}

.video-header .section-desc {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
  max-width: 900px;
  margin: 0 auto;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== BLOG / HABERLER ===== */
.blog-section {
  padding: 100px 0;
  background: var(--light);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.blog-link-all {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.blog-link-all i {
  transition: transform 0.3s ease;
}

.blog-link-all:hover i {
  transform: translateX(4px);
}

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

.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--shadow-lg);
  border-color: transparent;
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

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

.blog-card-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

/* Blog card gradient backgrounds */
.blog-card.bg-1 .blog-card-bg { background: linear-gradient(135deg, #1e293b, #064e3b); }
.blog-card.bg-2 .blog-card-bg { background: linear-gradient(135deg, #1e3a5f, #312e81); }
.blog-card.bg-3 .blog-card-bg { background: linear-gradient(135deg, #4a1942, #1e293b); }

.blog-card-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.2);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
}

.blog-card-date i {
  color: var(--accent);
  font-size: 11px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: var(--transition);
}

.blog-card:hover .blog-card-title {
  color: var(--accent);
}

.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.blog-card-read {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.blog-card-read i {
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-read i {
  transform: translateX(4px);
}

.blog-card-views {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-light);
}

/* ===== İLETİŞİM CTA ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text {}

.cta-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-white {
  background: var(--white);
  color: var(--accent-dark);
  border: 2px solid var(--white);
  font-weight: 700;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  font-family: var(--font-heading);
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.footer-logo-name span {
  color: var(--accent);
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a i {
  color: var(--accent);
  font-size: 10px;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item-icon {
  width: 32px;
  height: 32px;
  background: rgba(16, 185, 129,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-contact-item-text strong {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom p a {
  color: var(--accent);
}

.footer-bottom p a:hover {
  color: var(--accent-light);
}

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

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 8px 25px rgba(16, 185, 129,0.4);
  cursor: pointer;
  transition: var(--transition);
  z-index: 500;
  opacity: 0;
  transform: translateY(16px);
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129,0.5);
}

/* ===== MOBİL MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--primary);
  z-index: 1500;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(4px);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.mobile-menu-logo span {
  color: var(--accent);
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--accent);
}

.mobile-nav {
  padding: 16px;
  flex: 1;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.mobile-nav-item > a:hover,
.mobile-nav-item > a.open {
  color: var(--accent);
}

.mobile-nav-item > a i {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.mobile-nav-item > a.open i {
  transform: rotate(180deg);
}

.mobile-submenu {
  padding: 0 0 8px 16px;
  display: none;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu a {
  display: block;
  padding: 10px 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}

.mobile-submenu a:hover {
  color: var(--accent);
  padding-left: 16px;
}

.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.mobile-menu-contact a i {
  color: var(--accent);
}

.mobile-menu-social {
  display: flex;
  gap: 10px;
}

.mobile-menu-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}

.mobile-menu-social a:hover {
  background: var(--accent);
  color: var(--white);
}

/* ===== ANİMASYONLAR ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

.stagger { --delay: 0; }

/* ===== SAYFA BANNER (İÇ SAYFALAR) ===== */
.page-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.page-banner:hover .page-banner-bg {
  transform: scale(1.04);
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(5, 150, 105, 0.35) 100%
  );
}

.page-banner-content {
  position: relative;
  z-index: 1;
  padding-bottom: 52px;
}

.page-banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.page-banner-breadcrumb a {
  color: var(--accent-light);
  font-weight: 500;
}

.page-banner-breadcrumb a:hover {
  color: var(--white);
}

.page-banner-breadcrumb i {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-banner-title span {
  color: var(--accent);
}

.page-banner-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
}

/* ===== ÜRÜNLER SAYFASI — KATEGORİ NAV ===== */
.product-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
}

.product-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--light);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.product-cat-btn:hover,
.product-cat-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129,0.3);
}

.product-cat-btn i {
  font-size: 13px;
}

/* ===== ÜRÜNLER SAYFASI — KATEGORİ BÖLÜMÜ ===== */
.product-category-section {
  margin-bottom: 72px;
  scroll-margin-top: 100px;
}

.product-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.product-category-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(16, 185, 129,0.3);
}

.product-category-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.product-category-desc {
  font-size: 14px;
  color: var(--text-light);
}

/* ===== ÜRÜN DETAY LİSTESİ ===== */
.product-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.product-card:hover .product-detail-list {
  opacity: 1;
  transform: translateY(0);
}

.product-detail-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

.product-detail-list li i {
  color: var(--accent-light);
  font-size: 10px;
  flex-shrink: 0;
}

/* ===== E-KATALOG SAYFASI ===== */
.ekatalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 56px;
}

.ekatalog-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.ekatalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--shadow-lg);
  border-color: transparent;
}

.ekatalog-card-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: rgba(255,255,255,0.85);
}

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

.ekatalog-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(16, 185, 129,0.1);
  border: 1px solid rgba(16, 185, 129,0.25);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}

.ekatalog-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.ekatalog-card-desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.ekatalog-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 4px;
}

.ekatalog-card-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.ekatalog-card-list li i {
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}

.ekatalog-request {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 0;
}

.ekatalog-request-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ekatalog-request-icon {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 28px;
  flex-shrink: 0;
}

.ekatalog-request-text {
  flex: 1;
}

.ekatalog-request-text h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.ekatalog-request-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 500px;
}

/* ===== İLETİŞİM SAYFASI ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 72px;
}

.contact-info-col {}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-info-item:hover {
  background: var(--card-bg);
  box-shadow: 0 8px 30px var(--shadow);
  border-color: transparent;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-text {
  flex: 1;
}

.contact-info-text strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.contact-info-text span {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}

.contact-info-text a {
  color: var(--accent-dark);
  font-weight: 500;
}

.contact-info-text a:hover {
  color: var(--accent);
}

.contact-social {
  display: flex;
  gap: 10px;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 15px;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== İLETİŞİM FORMU ===== */
.contact-form-col {}

.contact-form-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 8px 40px var(--shadow);
  border: 1px solid var(--border);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form-title i {
  color: var(--accent);
  font-size: 20px;
}

.contact-form-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: var(--input-bg);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129,0.12);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

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

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 2px 0 0;
  appearance: auto;
  -webkit-appearance: checkbox;
  accent-color: var(--accent);
  cursor: pointer;
  border-radius: 3px;
  border: 2px solid var(--border);
  padding: 0;
  background: var(--light);
}

.form-check label {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.6;
}

.form-check label a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* KVKK AYDINLATMA METNİ */
.legal-page {
  min-height: 100vh;
  padding: 64px 20px;
  background: var(--light);
}

.legal-card {
  width: min(100%, 850px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.legal-card h1 {
  margin: 10px 0 8px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.15;
}

.legal-card h1 span { color: var(--accent-dark); }

.legal-card h2 {
  margin: 32px 0 10px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 19px;
}

.legal-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}

.legal-card a { color: var(--accent-dark); }

.legal-updated {
  margin-bottom: 28px;
  color: var(--text-light) !important;
  font-size: 13px !important;
}

/* Form başarı/hata mesajı */
.form-success,
.form-error {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-success {
  background: rgba(16, 185, 129,0.1);
  border: 1px solid rgba(16, 185, 129,0.3);
  color: var(--accent-dark);
}

.form-error {
  background: rgba(16, 185, 129,0.08);
  border: 1px solid rgba(16, 185, 129,0.25);
  color: #b91c1c;
}

/* ===== HARİTA BÖLÜMÜ ===== */
.contact-map {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow);
  border: 1px solid var(--border);
}

.contact-map-header {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.contact-map-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-map-header h3 i {
  color: var(--accent);
}

.contact-map-embed {
  width: 100%;
  overflow: hidden;
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== DUYARLI ===== */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ekatalog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .nav,
  .header-actions .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-right {
    order: -1;
  }

  .why-image-wrap img { height: 380px; }

  .why-image-badge { left: auto; right: 16px; bottom: 16px; }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  .page-banner { height: 300px; }
  .contact-form-card { padding: 28px; }
}

@media (max-width: 768px) {
  .top-bar-info { display: none; }

  .hero-content { padding: 0 24px; }

  .hero-controls { left: 24px; bottom: 28px; }
  .hero-scroll { right: 24px; bottom: 28px; }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-desc { margin: 0 auto; }

  /* İç Sayfa Responsive */
  .page-banner { height: 260px; }
  .ekatalog-grid { grid-template-columns: 1fr; }
  .ekatalog-request { padding: 24px; }
  .ekatalog-request-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
  .contact-map-header { flex-direction: column; align-items: flex-start; }
  .product-cat-nav { justify-content: center; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }

  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item { padding: 20px 16px; }

  .why-features { grid-template-columns: 1fr; }

  .section-header { text-align: left; }
  .section-header .section-desc { margin: 0; }
}

/* ===================================
   ÜRÜNLER — GELİŞMİŞ KATALOG & KARTLAR
   =================================== */

/* Ürün Filtreleme & Arama Kontrolleri */
.product-controls-bar {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(15,23,42,0.06);
  border: 1px solid var(--border);
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-size-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.filter-size-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--light);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.filter-size-btn:hover {
  background: var(--light-2);
  color: var(--primary);
  border-color: var(--text-light);
}

.filter-size-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(15,23,42,0.2);
}

.filter-size-btn .count-badge {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(0,0,0,0.08);
  color: inherit;
}

.filter-size-btn.active .count-badge {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

.product-search-box {
  position: relative;
  min-width: 260px;
  flex: 1;
  max-width: 380px;
}

.product-search-box input {
  width: 100%;
  padding: 10px 16px 10px 38px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--light);
  font-size: 13px;
  font-family: var(--font-main);
  outline: none;
  transition: var(--transition);
}

.product-search-box input:focus {
  background: var(--input-bg);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129,0.15);
}

.product-search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 13px;
  pointer-events: none;
}

/* 4 Kolonlu Ürün Kataloğu Izgarası */
.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}

/* Gelişmiş Ürün Kartı */
.p-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(15,23,42,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.p-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15,23,42,0.12);
  border-color: rgba(16, 185, 129,0.3);
}

/* Kart Üst Başlığı (Badge & Ebat) */
.p-card-header {
  padding: 12px 14px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  z-index: 2;
}

.p-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  color: var(--white);
}

.badge-mini {
  background: linear-gradient(135deg, #0284c7, #06b6d4);
}

.badge-orta {
  background: linear-gradient(135deg, #059669, #10b981);
}

.badge-buyuk {
  background: linear-gradient(135deg, #0284c7, #2563eb);
}

.badge-battal {
  background: linear-gradient(135deg, #4338ca, #6366f1);
}

.badge-jumbo {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

.badge-konteyner {
  background: linear-gradient(135deg, #0f172a, #475569);
}

.p-card-spec-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--light-2);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Kategori Teknik Özellik Tabloları */
.category-table-section {
  margin-top: 24px;
}

.table-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--light);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 14px;
}

.table-toggle-btn:hover {
  background: var(--light-2);
  color: var(--accent-dark);
  border-color: var(--accent);
}

.product-spec-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 14px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(15,23,42,0.05);
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
  min-width: 680px;
}

.product-spec-table thead th {
  background: #1e3a8a;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 14px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
}

.product-spec-table thead th:last-child {
  border-right: none;
}

.product-spec-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.product-spec-table tbody tr:last-child {
  border-bottom: none;
}

.product-spec-table tbody tr:hover {
  background: rgba(16, 185, 129, 0.05);
}

.product-spec-table tbody td {
  padding: 12px 16px;
  color: var(--text);
  vertical-align: middle;
  font-size: 13.5px;
}

.product-spec-table tbody td:first-child {
  font-weight: 600;
  color: var(--primary);
}

.product-spec-table .spec-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  background: var(--light-2);
  color: var(--primary);
}

.product-spec-table .spec-pill-accent {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-dark);
}

.product-spec-table .spec-pill-highlight {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

/* Görsel Alanı */
.p-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at center, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.p-card-media img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 8px 14px rgba(15,23,42,0.12));
}

.p-card:hover .p-card-media img {
  transform: scale(1.09);
}

.p-card-quickview-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(15,23,42,0.25);
  cursor: pointer;
}

.p-card:hover .p-card-quickview-btn {
  opacity: 1;
  transform: translate(-50%, 0);
}

.p-card-quickview-btn:hover {
  background: var(--accent);
  color: var(--white);
}

/* Kart İçeriği */
.p-card-body {
  padding: 16px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.p-card-cat-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 4px;
}

.p-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.p-card-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  flex: 1;
}

.p-card-specs li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-light);
}

.p-card-specs li i {
  color: var(--accent);
  font-size: 11px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.p-card-specs li strong {
  color: var(--text);
  font-weight: 600;
}

/* Kart Butonları */
.p-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-p-card-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 10px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-p-card-detail:hover {
  background: var(--light-2);
  border-color: var(--primary);
}

.btn-p-card-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 10px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}

.btn-p-card-quote:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

/* ===================================
   ÜRÜN HIZLI BAKIŞ MODALI (QUICK VIEW)
   =================================== */
.product-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.product-modal-container {
  background: var(--card-bg);
  border-radius: var(--radius);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 32px;
}

.product-modal-backdrop.active .product-modal-container {
  transform: scale(1) translateY(0);
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.product-modal-close:hover {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fca5a5;
  transform: rotate(90deg);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}

.product-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-modal-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at center, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-modal-img-wrap img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(15,23,42,0.16));
}

.product-modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-badge-tse,
.modal-badge-recycle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

.modal-badge-tse {
  background: rgba(16, 185, 129,0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(16, 185, 129,0.3);
}

.modal-badge-recycle {
  background: rgba(37,99,235,0.1);
  color: #1d4ed8;
  border: 1px solid rgba(37,99,235,0.25);
}

.modal-category-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.modal-product-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 10px;
}

.modal-product-desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 20px;
}

.modal-specs-table {
  display: flex;
  flex-direction: column;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
}

.modal-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.modal-spec-row:last-child {
  border-bottom: none;
}

.modal-spec-row .spec-label {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-spec-row .spec-label i {
  color: var(--accent);
  font-size: 12px;
  width: 14px;
}

.modal-spec-row .spec-value {
  font-weight: 600;
  color: var(--primary);
  text-align: right;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #1ebc57;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
}

/* ===================================
   RESPONSIVE UYARLAMALARI (ÜRÜNLER)
   =================================== */
@media (max-width: 1200px) {
  .product-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .product-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .product-modal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-modal-container {
    padding: 24px;
  }
}

@media (max-width: 580px) {
  .product-catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-controls-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .product-search-box {
    max-width: 100%;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   BLOG & HABERLER MODÜLÜ STİLLERİ
   =================================== */

/* Blog Filtre ve Arama Alanı */
.blog-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.blog-cat-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-cat-btn {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--light);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-cat-btn:hover {
  background: var(--light-2);
  border-color: var(--accent);
  color: var(--accent-dark);
}

.blog-cat-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.blog-search-box {
  position: relative;
  min-width: 260px;
}

.blog-search-box input {
  width: 100%;
  padding: 9px 38px 9px 14px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  outline: none;
  font-family: var(--font-main);
  background: var(--light);
  transition: var(--transition);
}

.blog-search-box input:focus {
  background: var(--input-bg);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.blog-search-box i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 13px;
  pointer-events: none;
}

/* Öne Çıkan Blog Banner */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  margin-bottom: 48px;
  transition: var(--transition);
}

.blog-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.blog-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-featured-card:hover .blog-featured-img img {
  transform: scale(1.04);
}

.blog-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-featured-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.blog-featured-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-featured-meta span i {
  color: var(--accent);
}

.blog-featured-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 14px;
  transition: var(--transition);
}

.blog-featured-card:hover .blog-featured-title {
  color: var(--accent-dark);
}

.blog-featured-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.blog-author-mini {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-2);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 14px;
}

.blog-author-info {
  display: flex;
  flex-direction: column;
}

.blog-author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.blog-author-role {
  font-size: 11px;
  color: var(--text-light);
}

/* Blog Kart Izgarası */
.blog-layout-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.09);
  border-color: rgba(16, 185, 129, 0.35);
}

.blog-card-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--light-2);
}

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

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

.blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.4px;
}

.blog-card-readtime {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-readtime i {
  color: var(--accent);
}

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

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-meta i {
  color: var(--accent);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: var(--transition);
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card:hover .blog-card-title {
  color: var(--accent-dark);
}

.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.blog-card-tag {
  font-size: 11px;
  color: var(--text-light);
  background: var(--light);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card-tag:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  transition: var(--transition);
  text-decoration: none;
}

.blog-card-read i {
  transition: transform 0.25s ease;
}

.blog-card-read:hover {
  color: var(--primary);
}

.blog-card-read:hover i {
  transform: translateX(4px);
}

.blog-card-views {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Blog Kenar Çubuğu (Sidebar) */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blog-widget {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
}

.blog-widget-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--light-2);
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.blog-widget-title i {
  color: var(--accent);
}

/* Sidebar Trending List */
.sidebar-trending-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.sidebar-trending-img {
  width: 72px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--light-2);
}

.sidebar-trending-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sidebar-trending-item:hover .sidebar-trending-img img {
  transform: scale(1.08);
}

.sidebar-trending-info {
  display: flex;
  flex-direction: column;
}

.sidebar-trending-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 4px;
  transition: var(--transition);
}

.sidebar-trending-item:hover .sidebar-trending-title {
  color: var(--accent-dark);
}

.sidebar-trending-date {
  font-size: 11px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Sidebar Categories */
.sidebar-cat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--light);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}

.sidebar-cat-item:hover {
  background: var(--light-2);
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateX(4px);
}

.sidebar-cat-badge {
  background: var(--light-2);
  border: 1px solid var(--border);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 50px;
  color: var(--text-light);
}

/* Sidebar Promo CTA */
.sidebar-promo-widget {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sidebar-promo-widget::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  filter: blur(25px);
}

.sidebar-promo-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 14px;
}

.sidebar-promo-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.sidebar-promo-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ===================================
   BLOG DETAY SAYFASI STİLLERİ
   =================================== */

.blog-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  padding: 40px 0 80px;
}

.article-main {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: 0 6px 25px rgba(15, 23, 42, 0.04);
}

.article-header {
  margin-bottom: 28px;
}

.article-cat-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.article-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 18px;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-light);
}

.article-meta-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-meta-item i {
  color: var(--accent);
}

.article-hero-media {
  margin: 28px 0 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.article-hero-media img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.article-hero-caption {
  background: var(--light);
  padding: 10px 18px;
  font-size: 12.5px;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-hero-caption i {
  color: var(--accent);
}

/* Article Body Typography */
.article-content {
  font-size: 16px;
  line-height: 1.85;
  color: #374151;
}

.article-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.7;
  padding: 18px 24px;
  background: rgba(16, 185, 129, 0.06);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 28px;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin: 36px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-content h2 i {
  color: var(--accent);
  font-size: 20px;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin: 26px 0 12px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul, .article-content ol {
  margin: 16px 0 24px 20px;
}

.article-content li {
  margin-bottom: 10px;
  position: relative;
}

.article-content ul li::marker {
  color: var(--accent);
}

.article-quote {
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
  font-style: italic;
  font-size: 17px;
  color: var(--primary);
  line-height: 1.6;
  position: relative;
}

.article-quote i {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 32px;
  color: rgba(16, 185, 129, 0.15);
}

.article-quote-author {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 10px;
}

/* Article Highlight Table / Callout */
.article-table-wrap {
  margin: 28px 0;
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
}

.article-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  font-weight: 700;
}

.article-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.article-table tr:nth-child(even) {
  background: var(--light);
}

.article-table tr:hover {
  background: rgba(16, 185, 129, 0.05);
}

.article-takeaways-box {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}

.article-takeaways-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-takeaways-title i {
  color: var(--accent-dark);
}

.article-takeaways-list {
  list-style: none;
  margin: 0 !important;
  padding: 0;
}

.article-takeaways-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 10px;
}

.article-takeaways-list li i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Article Tags & Sharing Bar */
.article-footer-meta {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.article-tags-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.article-tag-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: var(--light);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.article-tag-item:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

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

.article-share-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-right: 4px;
}

.btn-share {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-share-whatsapp { background: #25D366; }
.btn-share-linkedin { background: #0A66C2; }
.btn-share-twitter { background: #111827; }
.btn-share-facebook { background: #1877F2; }
.btn-share-copy { background: var(--text-light); }

.btn-share:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

/* Yazar Profil Kartı */
.article-author-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 36px 0;
}

.author-big-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  flex-shrink: 0;
  border: 3px solid var(--accent);
}

.author-info-content h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 3px;
}

.author-info-role {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.author-info-bio {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}

/* Önceki - Sonraki Yazı Navigasyonu */
.article-navigation-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nav-post-card {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

.nav-post-card:hover {
  background: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.nav-post-dir {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-post-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
}

.nav-post-next {
  text-align: right;
}

.nav-post-next .nav-post-dir {
  justify-content: flex-end;
}

/* Yorumlar ve Tartışma Alanı */
.article-comments-section {
  margin-top: 40px;
}

.comments-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.comment-single-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.comment-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comment-author-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.comment-author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.comment-item-date {
  font-size: 11px;
  color: var(--text-light);
}

.comment-item-body {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
}

/* Yorum Formu */
.comment-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

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

.comment-input-field {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-main);
  outline: none;
  background: var(--light);
  transition: var(--transition);
}

.comment-input-field:focus {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

textarea.comment-input-field {
  resize: vertical;
  min-height: 90px;
}

/* Benzer Yazılar Bölümü */
.related-posts-section {
  padding: 60px 0 80px;
  background: var(--light);
  border-top: 1px solid var(--border);
}

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

/* Toast Bildirim Kutusu */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border-left: 4px solid var(--accent);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

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

/* ===================================
   BLOG RESPONSIVE DÜZENLEMELERİ
   =================================== */

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

  .blog-featured-img {
    min-height: 280px;
  }

  .blog-layout-wrap,
  .blog-detail-wrap {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    margin-top: 30px;
  }
}

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

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

  .article-main {
    padding: 24px 20px;
  }

  .article-navigation-bar {
    grid-template-columns: 1fr;
  }

  .comment-form-grid {
    grid-template-columns: 1fr;
  }
}
