/* ============================
   Varesto - Ana Stil Dosyası
   varesto.digital
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=DM+Serif+Display:ital@0;1&display=swap');

/* === CSS DEĞİŞKENLERİ === */
:root {
  --white:       #FFFFFF;
  --green:       #166534;
  --green-mid:   #15803d;
  --green-light: #dcfce7;
  --sky:         #38BDF8;
  --sky-dark:    #0ea5e9;
  --slate:       #334155;
  --slate-light: #64748b;
  --sand:        #EAD7B7;
  --sand-light:  #fdf6ec;
  --light:       #F8FAFC;
  --dark:        #0f172a;
  --border:      #e2e8f0;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.13);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --transition:  all .22s ease;
}

/* === TEMEL SIFIRLAMALAR === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--slate);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* === YARDIMCI SINIFLAR === */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.text-green { color: var(--green); }
.text-sky { color: var(--sky-dark); }
.text-slate { color: var(--slate); }
.text-muted { color: var(--slate-light); }
.font-serif { font-family: 'DM Serif Display', serif; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.badge-green { background: var(--green-light); color: var(--green); }
.badge-sky   { background: #e0f2fe; color: var(--sky-dark); }
.badge-sand  { background: var(--sand); color: #78540a; }

/* === BUTONLAR === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: var(--white); border-color: var(--green);
}
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--green); border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-sky { background: var(--sky); color: var(--dark); border-color: var(--sky); }
.btn-sky:hover { background: var(--sky-dark); color: var(--white); border-color: var(--sky-dark); }
.btn-ghost { background: transparent; color: var(--slate); border-color: var(--border); }
.btn-ghost:hover { background: var(--light); border-color: var(--slate-light); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 7px 16px; font-size: .8rem; }

/* === HEADER / NAVİGASYON === */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-top {
  background: var(--green); color: var(--white);
  padding: 7px 0; font-size: .78rem;
}
.header-top-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.header-top a { color: rgba(255,255,255,.85); transition: var(--transition); }
.header-top a:hover { color: var(--white); }
.header-top-links { display: flex; gap: 20px; align-items: center; }
.header-main { padding: 14px 0; }
.header-main-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 40px; height: 40px; background: var(--green); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 2; }
.logo-text { font-size: 1.45rem; font-weight: 800; color: var(--dark); letter-spacing: -.03em; }
.logo-text span { color: var(--green); }
.header-search { flex: 1; max-width: 520px; position: relative; }
.header-search input {
  width: 100%; padding: 10px 18px 10px 44px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--light); font-size: .9rem; transition: var(--transition);
}
.header-search input:focus { outline: none; border-color: var(--green); background: var(--white); }
.header-search .search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--slate-light); pointer-events: none;
}
.header-search button {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: var(--green); color: white; border: none; border-radius: 4px;
  padding: 5px 12px; font-size: .8rem; font-weight: 600;
}
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-actions .action-btn {
  display: flex; align-items: center; gap: 6px; padding: 8px 14px;
  border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font-size: .82rem; font-weight: 600; color: var(--slate); background: transparent;
  transition: var(--transition);
}
.header-actions .action-btn:hover { border-color: var(--green); color: var(--green); }
.header-actions .action-btn svg { width: 17px; height: 17px; }
.cart-btn { background: var(--green) !important; color: white !important; border-color: var(--green) !important; }
.cart-btn:hover { background: var(--green-mid) !important; }
.cart-count {
  background: var(--sky); color: var(--dark);
  border-radius: 50%; width: 18px; height: 18px;
  font-size: .65rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
}

/* === ANA NAVİGASYON === */
.main-nav { background: var(--light); border-top: 1px solid var(--border); }
.main-nav-inner { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px; padding: 13px 14px;
  font-size: .87rem; font-weight: 600; color: var(--slate);
  transition: var(--transition); white-space: nowrap; background: none; border: none;
}
.nav-link:hover, .nav-link.active { color: var(--green); }
.nav-link svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }
.nav-link .nav-chevron { width: 13px; height: 13px; }

/* MEGA MENU */
.mega-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--green);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg); min-width: 680px; z-index: 500;
  padding: 24px;
}
.nav-item:hover .mega-menu { display: flex; }
.mega-menu-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; }
.mega-col-title { font-size: .72rem; font-weight: 700; color: var(--slate-light); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.mega-link {
  display: flex; align-items: center; gap: 8px; padding: 7px 8px;
  border-radius: var(--radius-sm); font-size: .85rem; font-weight: 500;
  color: var(--slate); transition: var(--transition);
}
.mega-link:hover { background: var(--green-light); color: var(--green); }
.mega-link svg { width: 16px; height: 16px; color: var(--slate-light); flex-shrink: 0; }
.mega-link:hover svg { color: var(--green); }

/* MOBİL MENÜ TOGGLE */
.mobile-menu-btn {
  display: none; background: none; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px; color: var(--slate);
}
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 2000; overflow-y: auto; padding: 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.mobile-close-btn { background: none; border: none; font-size: 1.5rem; color: var(--slate); }
.mobile-nav-links a {
  display: block; padding: 13px 0; border-bottom: 1px solid var(--border);
  font-size: 1rem; font-weight: 600; color: var(--slate);
}

/* === BREADCRUMB === */
.breadcrumb {
  background: var(--light); border-bottom: 1px solid var(--border);
  padding: 11px 0;
}
.breadcrumb-list { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.breadcrumb-list li { display: flex; align-items: center; gap: 7px; }
.breadcrumb-list a { font-size: .8rem; color: var(--slate-light); transition: var(--transition); }
.breadcrumb-list a:hover { color: var(--green); }
.breadcrumb-list .sep { color: var(--border); font-size: .8rem; }
.breadcrumb-list .current { font-size: .8rem; color: var(--slate); font-weight: 600; }

/* === HERO === */
.hero {
  position: relative; overflow: hidden;
  min-height: 540px; display: flex; align-items: center;
}
.hero-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(15,23,42,.82) 0%, rgba(22,101,52,.55) 60%, rgba(15,23,42,.1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
}
.hero-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 14px;
}
.hero-title {
  font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); line-height: 1.15; margin-bottom: 18px;
}
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 28px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-val { font-size: 1.6rem; font-weight: 800; color: var(--white); }
.hero-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: 2px; }

/* === KATEGORI KARTLARI === */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }
.category-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; background: var(--white); transition: var(--transition);
}
.category-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.category-card-img { height: 160px; overflow: hidden; background: var(--light); }
.category-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.category-card:hover .category-card-img img { transform: scale(1.06); }
.category-card-body { padding: 16px; }
.category-card-title { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.category-card-count { font-size: .78rem; color: var(--slate-light); }
.category-card-arrow { margin-top: 10px; font-size: .82rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 4px; }

/* === ÜRÜN KARTLARI === */
.products-layout { display: flex; gap: 28px; align-items: flex-start; }
.filter-sidebar {
  width: 250px; flex-shrink: 0; position: sticky; top: 90px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm);
}
.filter-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.filter-group { margin-bottom: 20px; }
.filter-group-title { font-size: .82rem; font-weight: 700; color: var(--slate); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 10px; }
.filter-option { display: flex; align-items: center; gap: 9px; padding: 5px 0; }
.filter-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--green); }
.filter-option label { font-size: .85rem; color: var(--slate); cursor: pointer; }
.filter-option label:hover { color: var(--green); }
.price-range { display: flex; gap: 8px; }
.price-range input {
  flex: 1; padding: 7px 10px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: .82rem;
}
.filter-apply-btn {
  width: 100%; padding: 10px; background: var(--green); color: white;
  border: none; border-radius: var(--radius-sm); font-size: .87rem;
  font-weight: 600; margin-top: 8px; cursor: pointer; transition: var(--transition);
}
.filter-apply-btn:hover { background: var(--green-mid); }
.filter-clear-btn {
  width: 100%; padding: 8px; background: transparent; color: var(--slate-light);
  border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: .82rem;
  margin-top: 6px; cursor: pointer; transition: var(--transition);
}
.filter-clear-btn:hover { border-color: var(--slate); color: var(--slate); }
.products-main { flex: 1; min-width: 0; }
.products-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
}
.products-count { font-size: .88rem; color: var(--slate-light); }
.sort-select {
  padding: 8px 32px 8px 12px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: .87rem; color: var(--slate);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none; cursor: pointer;
}
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }

/* ÜRÜN KARTI */
.product-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; background: var(--white); transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card-img {
  position: relative; height: 210px; overflow: hidden; background: var(--light);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; }
.product-card-wishlist {
  position: absolute; top: 10px; right: 10px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: 50%;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer;
}
.product-card-wishlist:hover { border-color: var(--green); color: var(--green); }
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 4px; }
.product-name { font-size: .97rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.35; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { color: #f59e0b; font-size: .85rem; letter-spacing: 1px; }
.rating-count { font-size: .75rem; color: var(--slate-light); }
.product-specs { margin-bottom: 12px; }
.spec-item { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--slate-light); margin-bottom: 4px; }
.spec-item svg { width: 13px; height: 13px; color: var(--green); flex-shrink: 0; }
.product-price-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; }
.product-price { font-size: 1.3rem; font-weight: 800; color: var(--green); }
.product-price-old { font-size: .82rem; color: var(--slate-light); text-decoration: line-through; }
.product-actions { display: flex; gap: 8px; margin-top: 12px; }
.product-actions .btn { flex: 1; justify-content: center; }
.compare-btn {
  background: none; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px 12px; font-size: .78rem; font-weight: 600; color: var(--slate);
  cursor: pointer; transition: var(--transition);
}
.compare-btn:hover { border-color: var(--sky); color: var(--sky-dark); }

/* === KARŞILAŞTIRMA TABLOSU === */
.comparison-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.comparison-table th, .comparison-table td {
  padding: 12px 16px; border: 1px solid var(--border); text-align: left; vertical-align: middle;
}
.comparison-table thead th {
  background: var(--green); color: white; font-weight: 700; font-size: .85rem;
}
.comparison-table thead th:first-child { background: var(--slate); }
.comparison-table tbody tr:nth-child(even) { background: var(--light); }
.comparison-table tbody tr:hover { background: var(--green-light); }
.comparison-table td:first-child { font-weight: 600; color: var(--slate); background: var(--light); }
.comparison-table .best { color: var(--green); font-weight: 700; }
.check-yes { color: var(--green); font-size: 1.1rem; }
.check-no  { color: #ef4444; font-size: 1.1rem; }

/* === BLOG KARTLARI === */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; background: var(--white); transition: var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.blog-card-cat {
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--green); background: var(--green-light); padding: 3px 8px; border-radius: 20px;
}
.blog-card-date { font-size: .78rem; color: var(--slate-light); }
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a:hover { color: var(--green); }
.blog-card-excerpt { font-size: .87rem; color: var(--slate-light); line-height: 1.6; flex: 1; }
.blog-card-footer { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.blog-card-read { font-size: .82rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 4px; }
.blog-card-read:hover { gap: 8px; }
.read-time { font-size: .78rem; color: var(--slate-light); }

/* === BÖLÜM BAŞLIKLARI === */
.section-header { margin-bottom: 40px; }
.section-header.centered { text-align: center; }
.section-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.section-desc { font-size: 1rem; color: var(--slate-light); max-width: 620px; line-height: 1.7; }
.section-header.centered .section-desc { margin: 0 auto; }
.divider { height: 3px; width: 48px; background: var(--green); border-radius: 2px; margin-top: 14px; }
.section-header.centered .divider { margin: 14px auto 0; }

/* === ÖZELLİK KUTUSU === */
.feature-box {
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 24px; background: var(--white); transition: var(--transition);
}
.feature-box:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--green-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--green); }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-desc { font-size: .87rem; color: var(--slate-light); line-height: 1.6; }

/* === STAT BLOKLARI === */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.stat-card {
  text-align: center; padding: 28px 20px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md);
}
.stat-val { font-size: 2.2rem; font-weight: 800; color: var(--green); }
.stat-lbl { font-size: .85rem; color: var(--slate-light); margin-top: 4px; }

/* === YASAL / POLİTİKA SAYFALAR === */
.legal-page { max-width: 820px; margin: 0 auto; padding: 60px 24px; }
.legal-page h1 { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--dark); margin-bottom: 8px; }
.legal-page .legal-meta { font-size: .82rem; color: var(--slate-light); margin-bottom: 36px; padding-bottom: 20px; border-bottom: 2px solid var(--border); }
.legal-page h2 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin: 30px 0 12px; }
.legal-page h3 { font-size: 1rem; font-weight: 600; color: var(--slate); margin: 20px 0 8px; }
.legal-page p { font-size: .92rem; line-height: 1.75; color: var(--slate); margin-bottom: 14px; }
.legal-page ul, .legal-page ol { padding-left: 24px; margin-bottom: 14px; }
.legal-page ul { list-style: disc; }
.legal-page ol { list-style: decimal; }
.legal-page li { font-size: .92rem; line-height: 1.7; color: var(--slate); margin-bottom: 6px; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .88rem; }
.legal-page table th, .legal-page table td { padding: 10px 14px; border: 1px solid var(--border); }
.legal-page table th { background: var(--light); font-weight: 600; color: var(--slate); }
.legal-info-box {
  background: var(--light); border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 20px 24px; margin: 24px 0;
}
.legal-info-box h3 { margin-top: 0; margin-bottom: 10px; }

/* === İLETİŞİM SAYFASI === */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: flex-start; }
.contact-form-wrap {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md);
}
.contact-form-title { font-size: 1.35rem; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { display: block; font-size: .83rem; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.form-label .required { color: #ef4444; }
.form-control {
  width: 100%; padding: 11px 15px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: .9rem; color: var(--slate);
  background: var(--light); transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--green); background: var(--white); }
.form-control textarea { resize: vertical; min-height: 120px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--green); flex-shrink: 0; }
.form-check label { font-size: .82rem; color: var(--slate-light); line-height: 1.55; }
.form-check label a { color: var(--green); text-decoration: underline; }
.form-submit-btn {
  width: 100%; padding: 13px; background: var(--green); color: white;
  border: none; border-radius: var(--radius-sm); font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition); margin-top: 8px;
}
.form-submit-btn:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.success-message {
  display: none; background: var(--green-light); border: 1.5px solid var(--green);
  border-radius: var(--radius-md); padding: 20px 24px; text-align: center; margin-top: 16px;
}
.success-message.show { display: flex; align-items: center; gap: 12px; }
.success-message svg { width: 28px; height: 28px; color: var(--green); flex-shrink: 0; }
.success-message h4 { font-size: .97rem; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.success-message p { font-size: .85rem; color: var(--slate-light); margin: 0; }
.contact-info-card {
  background: var(--green); color: white; border-radius: var(--radius-lg); padding: 36px;
}
.contact-info-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info-icon {
  width: 42px; height: 42px; background: rgba(255,255,255,.15); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: white; }
.contact-info-label { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 4px; }
.contact-info-val { font-size: .9rem; color: white; }
.contact-info-val a { color: white; }
.contact-map-placeholder {
  margin-top: 24px; background: rgba(255,255,255,.1); border-radius: var(--radius-md);
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: rgba(255,255,255,.7);
}

/* === HAKKIMIZDA === */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-wrap img { width: 100%; height: 380px; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.value-card {
  padding: 28px; background: var(--light); border-radius: var(--radius-md);
  border-left: 4px solid var(--green);
}
.value-card-title { font-size: .97rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.value-card-desc { font-size: .87rem; color: var(--slate-light); line-height: 1.65; }

/* === REDİR / ÖNE ÇIKAN === */
.highlight-strip {
  background: var(--green); color: white; padding: 28px 0;
}
.highlight-strip-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.highlight-strip h2 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; max-width: 500px; }
.highlight-strip p { font-size: .9rem; color: rgba(255,255,255,.8); margin-top: 6px; }

/* === FOOTER === */
.site-footer { background: var(--dark); color: rgba(255,255,255,.8); }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-mark { width: 38px; height: 38px; background: var(--green); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.footer-logo-mark svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }
.footer-logo-text { font-size: 1.3rem; font-weight: 800; color: white; }
.footer-logo-text span { color: var(--sky); }
.footer-tagline { font-size: .87rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 20px; }
.footer-contacts a { display: block; font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: 6px; transition: var(--transition); }
.footer-contacts a:hover { color: var(--sky); }
.footer-col-title { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: 9px; transition: var(--transition); }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-text { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.45); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--dark); color: rgba(255,255,255,.85); padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { font-size: .84rem; flex: 1; }
.cookie-banner a { color: var(--sky); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* === SAYFALAMA === */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .87rem; font-weight: 600; color: var(--slate); transition: var(--transition);
}
.pagination a:hover { border-color: var(--green); color: var(--green); }
.pagination .active { background: var(--green); color: white; border-color: var(--green); }

/* === REHBER (GUIDE) === */
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.guide-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; background: var(--white); transition: var(--transition);
}
.guide-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.guide-card-img { height: 220px; overflow: hidden; background: var(--light); }
.guide-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.guide-card:hover .guide-card-img img { transform: scale(1.05); }
.guide-card-body { padding: 24px; }
.guide-card-tag { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--sky-dark); margin-bottom: 8px; }
.guide-card-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.guide-card-desc { font-size: .87rem; color: var(--slate-light); line-height: 1.65; }
.guide-card-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: .85rem; font-weight: 600; color: var(--green); }
.guide-card-link:hover { gap: 10px; }

/* === UYARI KUTUSU === */
.alert-box {
  padding: 16px 20px; border-radius: var(--radius-md); margin: 16px 0;
  display: flex; align-items: flex-start; gap: 12px;
}
.alert-info { background: #e0f2fe; border: 1px solid #bae6fd; }
.alert-info svg, .alert-info p { color: #0369a1; }
.alert-success { background: var(--green-light); border: 1px solid #86efac; }
.alert-success svg, .alert-success p { color: var(--green); }
.alert-warn { background: #fef9c3; border: 1px solid #fde047; }
.alert-warn svg, .alert-warn p { color: #854d0e; }
.alert-box svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert-box p { font-size: .88rem; margin: 0; line-height: 1.6; }

/* === FIYAT GELİŞİMİ BLOĞU === */
.price-history {
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 20px; margin: 24px 0;
}
.price-history h4 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .85rem; }
.price-row:last-child { border-bottom: none; }
.price-row .month { color: var(--slate-light); }
.price-row .amount { font-weight: 700; color: var(--slate); }
.price-row .trend-up { color: #ef4444; font-size: .75rem; }
.price-row .trend-down { color: var(--green); font-size: .75rem; }

/* === ALT KATEGORİ HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--slate) 100%);
  padding: 56px 0; color: white; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="85" cy="15" r="40" fill="rgba(255,255,255,.04)"/><circle cx="10" cy="80" r="55" fill="rgba(255,255,255,.03)"/></svg>') no-repeat;
  background-size: cover;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { font-size: 1.02rem; color: rgba(255,255,255,.8); max-width: 600px; margin-bottom: 20px; }
.page-hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.page-hero-badge {
  background: rgba(255,255,255,.15); padding: 5px 14px;
  border-radius: 20px; font-size: .78rem; font-weight: 600;
  backdrop-filter: blur(4px); color: white;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .products-layout { flex-direction: column; }
  .filter-sidebar { width: 100%; position: static; }
  .guide-grid { grid-template-columns: 1fr; }
  .mega-menu { display: none !important; }
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-search { max-width: 300px; }
}
@media (max-width: 680px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 420px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .header-search { display: none; }
  .hero-stats { flex-direction: column; gap: 16px; }
}
@media (max-width: 420px) {
  .category-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
