/* ===== FONTS ===== */
:root {
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
}

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

:root {
  --primary: #a8894d;        /* perdeciayhan.com'un altın rengi */
  --primary-dark: #8a7340;
  --dark: #222222;           /* header/footer koyu gri-siyah */
  --dark2: #333333;
  --text: #222;
  --text-muted: #777;
  --bg: #fefdf8;             /* biraz daha açık sarı/sıcak ton */
  --bg-gray: #faf9f0;
  --bg-dark: #e8d5be;
  --border: #e5e5e5;
  --radius: 4px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 4px 24px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--dark); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; padding: 9px 18px; font-size: 13px; }
.btn-whatsapp:hover { background: #1ebe5d; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* Accent color variable */
:root {
  --accent: var(--primary);
}

/* ===== TOP BAR ===== */
.topbar {
  background: #2e2e2e;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: none;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.topbar-left {
  display: flex;
  gap: 64px;
  margin-left: 0;
  font-size: 14px;
}
.topbar-left a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.topbar-left a:hover {
  color: var(--primary);
}
.topbar-right {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-right: 4px;
}
.topbar-phone {
  color: rgba(255,255,255,0.85);
}
.topbar-user {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.topbar-user:hover {
  color: var(--primary);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
  overflow: visible;
}
.header::before {
  content: none;
}
.header > * {
  position: relative;
  z-index: 2;
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.header-inner {
  display: flex; 
  align-items: center; 
  gap: 32px; 
  height: 80px;
  padding: 0 24px;
  border-bottom: none;
  transition: none;
}
.header.scrolled .header-inner {
  height: 65px;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  margin-left: -270px;
  margin-top: 13px;
  margin-bottom: -70px;
  transition: none;
  position: relative;
  z-index: 10;
}
.header.scrolled .logo {
  margin-bottom: -15px;
  margin-left: -95px;
  margin-top: -5px;
  align-items: center;
}
.logo-img {
  height: 285px;
  width: auto;
  object-fit: contain;
  transition: none;
}
.header.scrolled .logo-img {
  height: 155px;
}

/* Header Search */
.header-search {
  flex: 1;
  max-width: 800px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0 0 0 16px;
  height: 42px;
  margin-left: 0;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, max-width 0.2s ease;
}
.header.scrolled .header-search {
  opacity: 0;
  visibility: hidden;
  max-width: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: none;
}
.search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: var(--text);
  min-width: 0;
}
.search-input::placeholder {
  color: var(--text-muted);
}
.search-btn {
  flex-shrink: 0;
  background: var(--primary);
  border: none;
  cursor: pointer;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 0 24px 24px 0;
  transition: background 0.2s;
}
.search-btn:hover {
  background: var(--primary-dark);
}
.search-btn svg {
  width: 18px;
  height: 18px;
}
.search-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 1000;
  overflow: hidden;
}
.search-suggestions.active {
  display: block;
}
.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s;
}
.search-suggestion-item:hover {
  background: #f5f5f5;
  color: var(--primary);
}
.search-suggestion-item mark {
  background: none;
  color: var(--primary);
  font-weight: 600;
}
.search-suggestion-label {
  padding: 6px 18px 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  border-top: 1px solid var(--border);
}
.search-suggestion-label:first-child {
  border-top: none;
}
.product-card.search-highlight {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 12px;
  transition: outline 0.3s;
}

/* Header Actions */
.header-actions {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-left: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}
.header-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  margin: 0 12px;
  flex-shrink: 0;
}
.header-contact-phone {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  margin-right: 4px;
  text-decoration: none;
}
.header-contact-phone:hover {
  color: var(--primary);
}
.header-signature {
  font-family: 'Great Vibes', cursive;
  font-size: 26px;
  font-weight: 400;
  color: var(--primary);
  white-space: nowrap;
  margin-left: 6px;
  letter-spacing: 0.5px;
  line-height: 1;
  text-decoration: none;
}
.header-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
}
.header-icon-btn:hover {
  background: var(--bg-gray);
  border-color: var(--primary);
  color: var(--primary);
}
.header-icon-btn svg {
  width: 20px;
  height: 20px;
}
.header-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  padding: 8px;
  transition: transform var(--transition);
}
.header-icon-btn:hover {
  transform: scale(1.1);
}
.header-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background var(--transition);
}
.header-user-btn:hover {
  background: var(--bg-gray);
}
.user-icon {
  font-size: 20px;
}
.user-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.header-cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--dark);
  color: #fff;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
  position: relative;
  height: 40px;
}
.header.scrolled .header-cart-btn {
  padding: 8px 14px;
  font-size: 13px;
  height: 40px;
}
.header-cart-btn:hover {
  background: var(--primary);
}
.cart-icon {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-icon svg {
  width: 20px;
  height: 20px;
}
.cart-price {
  color: #fff;
}
.header-cart-btn .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

/* Category Menu */
.category-menu {
  background: var(--bg);
  border-top: none;
  padding: 0;
  display: flex;
  align-items: center;
  opacity: 1;
  position: relative;
}
.category-menu-inner {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.category-menu a {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

/* Scroll'da kategori menüsünü ortala */
.header.scrolled .category-menu {
  position: absolute;
  left: 48%;
  transform: translateX(-50%);
  top: 50%;
  margin-top: -13px;
  padding: 0;
  opacity: 1;
  background: transparent;
}
.category-menu-inner {
  flex-wrap: nowrap;
  transition: none;
  justify-content: center;
}
.category-menu a {
  white-space: nowrap;
  transition: none;
}
.header.scrolled .category-menu a {
  padding: 4px 8px;
  font-size: 14px;
  border-bottom: none;
}
.header.scrolled .category-menu a:not(:last-child)::after {
  content: '|';
  margin-left: 8px;
  color: var(--border);
  font-weight: 300;
}

/* Normal durumda kategori menüsü */
.header:not(.scrolled) .category-menu {
  position: static;
  transform: none;
  left: auto;
  top: auto;
  margin-top: 0;
}

/* Scrolled: telefon ve imza gizle, ikonları sağa taşı */
.header.scrolled .header-divider,
.header.scrolled .header-contact-phone,
.header.scrolled .header-signature {
  display: none;
}
.header.scrolled .header-actions {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
  gap: 6px;
}

/* Header inner scroll durumunda */
.header.scrolled .header-inner {
  justify-content: space-between;
  position: relative;
}

/* Geçiş animasyonu için fade effect */
.header-inner > * {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.header.transitioning .category-menu {
  opacity: 0;
}

.header.transitioning .header-search {
  opacity: 0;
}
.category-menu a:hover {
  color: var(--primary);
  background: rgba(168, 137, 77, 0.08);
  border-bottom-color: var(--primary);
}

/* Kategori menüsü ikonları */
.category-menu-icons {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 8px;
  border-left: 1px solid var(--border);
  margin-left: 4px;
}
.cat-icon-btn {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
}
.cat-icon-btn:hover {
  background: rgba(168, 137, 77, 0.1);
  color: var(--primary);
}
.header.scrolled .category-menu-icons {
  border-left: none;
  padding: 0 4px;
}

.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  background: none; 
  border: none; 
  cursor: pointer; 
  padding: 4px;
}
.hamburger span { 
  display: block; 
  width: 24px; 
  height: 2px; 
  background: var(--text); 
  border-radius: 2px; 
  transition: all var(--transition); 
}

/* ===== HERO SLIDER ===== */
.hero { 
  position: relative; 
  overflow: hidden; 
  background: var(--bg-dark);
  min-height: 650px;
}

.slider { 
  position: relative; 
  min-height: 650px;
}

.slide { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 650px;
  display: none; 
  padding: 100px 0; 
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.slide-inner {
  position: relative;
  z-index: 2;
}

.slide.active { 
  display: block; 
  opacity: 1;
}

.slide-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.slide-content { color: #fff; }
.slide-badge {
  display: inline-block;
  background: var(--primary); color: #fff;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
}
.slide-content h1 {
  font-size: clamp(30px, 4vw, 52px); font-weight: 700; line-height: 1.15;
  margin-bottom: 16px;
}
.slide-content h1 span { color: var(--primary); }
.slide-content p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.slide-price { font-size: 18px !important; font-weight: 600; color: var(--primary) !important; margin-bottom: 28px !important; }
.slide-img { display: flex; justify-content: center; }
.slide-img-box {
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.15);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 24px; cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.slider-btn:hover { background: transparent; border-color: rgba(255,255,255,0.6); }
.slider-btn.prev { display: none; }
.slider-btn.next { right: 20px; }

.slider-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: transparent; border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: all var(--transition);
}
.dot.active { background: #C8A84B; border-color: #C8A84B; transform: scale(1.3); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-gray {
  background: var(--bg-gray);
}
.section-dark {
  background: var(--bg-dark);
}
.section-dark > * { position: relative; z-index: 1; }

/* Açık kahve section içindeki başlıklar */
.section-dark .section-header h2,
.section-dark .section-header p { color: var(--text); }
.section-dark .heading-lined { color: var(--text); }
.section-dark .heading-lined::after { background: var(--primary); }

/* Açık kahve section içindeki why-card */
.section-dark .why-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
.section-dark .why-card:hover { box-shadow: var(--shadow-hover); border-color: var(--primary); }
.section-dark .why-icon { color: var(--dark); }

/* Açık kahve section içindeki blog-card */
.section-dark .blog-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
.section-dark .blog-card:hover { box-shadow: var(--shadow-hover); }
.section-dark .blog-card h3 a { color: var(--text); }
.section-dark .blog-card h3 a:hover { color: var(--primary); }
.section-dark .blog-card p { color: var(--text-muted); }
.section-dark .blog-date { color: var(--text-muted); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 700; margin-bottom: 10px; }

.heading-lined {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .heading-lined {
    white-space: normal;
    text-align: center;
  }
  .heading-lined::before,
  .heading-lined::after {
    display: none;
  }
}
.heading-lined::before,
.heading-lined::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary));
  max-width: 120px;
}
.heading-lined::after {
  background: linear-gradient(to left, transparent, var(--primary));
}
.section-header p { font-size: 16px; color: var(--text-muted); }
.section-header.light h2 { color: var(--text); }
.section-header.light p { color: var(--text); }

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 20px;
  border: 1px solid var(--border); background: #fff;
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all var(--transition); color: var(--text-muted);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--dark); color: #fff; border-color: var(--dark);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 27px;
}

.product-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition); background: #fff;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.product-card.hidden { display: none; }

.product-img {
  position: relative; aspect-ratio: 1;
  background: var(--bg-gray);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-img-inner { 
  width: 100%; height: 100%; 
  background-size: cover; 
  background-position: center;
  transition: transform var(--transition); 
}
.product-card:hover .product-img-inner { transform: scale(1.05); }

.photo-switch-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.15s;
  color: #333;
}
.photo-switch-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); }

.photo-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}
.photo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s;
}
.photo-dot.active { background: #fff; }

.product-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.6);
  max-height: 85vh;
}
#lightboxImg {
  display: block;
  width: 55vw;
  max-width: 700px;
  height: 80vh;
  max-height: 85vh;
  object-fit: cover;
  flex-shrink: 0;
}
.lightbox-info {
  width: 300px;
  background: #fff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  overflow-y: auto;
}
.lightbox-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lightbox-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}
.lightbox-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.lightbox-wa {
  margin-top: 8px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 10000;
}
.lightbox-close:hover { background: #f0f0f0; }

@media (max-width: 600px) {
  .lightbox-inner {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    width: 100%;
  }
  #lightboxImg {
    width: 100%;
    height: 50vw;
    max-height: 240px;
  }
  .lightbox-info {
    width: 100%;
    padding: 20px 16px;
  }
}

.product-info { padding: 16px; position: relative; }
.product-cat { font-size: 11px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; }
.product-info h3 { font-size: 14px; font-weight: 600; margin: 6px 0 8px; color: var(--text); line-height: 1.4; padding-right: 36px; }
.product-price { font-size: 15px; font-weight: 700; color: var(--dark); }

/* Favori butonu */
.fav-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
  flex-shrink: 0;
}
.fav-btn:hover {
  border-color: #e05555;
  color: #e05555;
  background: #fff5f5;
}
.fav-btn.active {
  border-color: #e05555;
  background: #e05555;
  color: #fff;
}
.fav-btn svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}

/* ===== BANNERS ===== */
/* ===== BANNERS ===== */
.banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 20px;
}
.banner-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition);
}
.banner-card:hover { transform: translateY(-4px); }

.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center !important;
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
}
.banner-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.banner-content p { font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 16px; line-height: 1.5; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-img-box {
  aspect-ratio: 3/4; 
  background: var(--bg-gray);
  border-radius: var(--radius); 
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.about-text h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.about-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.dot-icon { color: var(--primary); font-size: 10px; }

/* ===== WHY ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: var(--primary); }
.why-icon {
  margin-bottom: 12px;
  color: var(--primary);
}
.why-icon svg {
  display: block;
}
.why-icon-tl {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { 
  font-size: 24px; 
  flex-shrink: 0; 
  width: 48px; 
  height: 48px;
  background: var(--bg-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item a { color: var(--dark); font-weight: 600; font-size: 15px; transition: color var(--transition); }
.contact-item a:hover { color: var(--primary); }
.contact-item p { font-size: 15px; color: var(--text-muted); }

.contact-form { background: var(--bg-gray); border-radius: var(--radius); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); text-transform: uppercase; letter-spacing: 0.4px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-family: inherit; color: var(--text);
  background: #fff; transition: border-color var(--transition); outline: none; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 60px 0 40px; }
.footer .logo-main { color: #fff; }
.footer .logo-sub { color: var(--primary); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 12px; line-height: 1.7; }
.footer-col h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-col ul li a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { 
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); 
  color: rgba(255,255,255,0.7);
}
.footer-social a:hover { 
  background: var(--primary); 
  color: #fff;
  transform: translateY(-2px); 
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ===== SOSYAL MEDYA BÖLÜMÜ ===== */
.social-media-section {
  background: var(--bg);
}
.social-media-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-radius: 12px;
  border: 2px solid var(--border);
  text-decoration: none;
  transition: all 0.25s ease;
  width: 420px;
  background: #fff;
}
.social-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.social-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.social-card-instagram .social-card-icon { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-card-whatsapp .social-card-icon  { background: #25d366; }
.social-card-facebook .social-card-icon  { background: #1877f2; }

.social-card-instagram:hover { border-color: #d6249f; }
.social-card-whatsapp:hover  { border-color: #25d366; }
.social-card-facebook:hover  { border-color: #1877f2; }

.social-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.social-card-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.social-card-handle {
  font-size: 13px;
  color: var(--text-muted);
}
.social-card-arrow {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.social-card:hover .social-card-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .social-media-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .social-card {
    width: 100%;
  }
}

/* ===== FAVORİLER PANELİ ===== */
.fav-header-btn {
  position: relative;
}
.fav-header-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e05555;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  pointer-events: none;
}

.fav-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
}
.fav-panel.open {
  display: block;
}
.fav-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.fav-panel-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 92vw);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
.fav-panel.open .fav-panel-drawer {
  transform: translateX(0);
}
.fav-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.fav-panel-header span {
  font-weight: 700;
  font-size: 16px;
}
.fav-panel-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  line-height: 1;
}
.fav-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Boş durum */
.fav-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--text-muted);
  text-align: center;
}
.fav-empty svg {
  opacity: 0.25;
}
.fav-empty p {
  font-size: 14px;
}

/* Favori ürün kartı */
.fav-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 10px;
  border: 1px solid var(--border);
}
.fav-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.fav-item-info {
  flex: 1;
  min-width: 0;
}
.fav-item-cat {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fav-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fav-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  flex-shrink: 0;
  transition: color var(--transition);
  font-size: 16px;
  line-height: 1;
}
.fav-item-remove:hover {
  color: #e05555;
}

/* ===== MOBILE NAV DRAWER ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav-header span {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-section {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-section:last-child {
  border-bottom: none;
}
.mobile-nav-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 4px 20px 8px;
}
.mobile-nav-panel a {
  display: block;
  padding: 11px 20px;
  font-size: 14px;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  border: none;
}
.mobile-nav-panel a:hover {
  background: var(--bg-gray);
  color: var(--primary);
}
.mobile-nav-phone {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* Hamburger active state */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ===== RESPONSIVE ===== */

/* Footer logo fix - no negative margins inside footer */
.footer-col .logo {
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 0;
}
.footer-col .logo-img {
  height: 250px;
}

/* ===== RESPONSIVE - LAPTOP (1500-1800px) ===== */
@media (max-width: 1800px) {
  .logo {
    margin-left: -166px;
    margin-bottom: -55px;
  }
  .logo-img {
    height: 250px;
  }
  .header.scrolled .logo {
    margin-left: -75px;
    margin-bottom: -12px;
    margin-top: -5px;
  }
  .header.scrolled .logo-img {
    height: 130px;
  }
}

@media (max-width: 1700px) {
  .cat-petek {
    display: none;
  }
  .logo {
    margin-left: -65px;
    margin-bottom: -55px;
  }
  .logo-img {
    height: 240px;
  }
  .category-menu-inner {
    padding-left: 120px;
  }
}

@media (max-width: 1500px) {
  .logo {
    margin-left: -61px;
    margin-bottom: -45px;
  }
  .logo-img {
    height: 200px;
  }
  .header.scrolled .logo {
    margin-left: -20px;
    margin-bottom: -10px;
    margin-top: -5px;
  }
  .header.scrolled .logo-img {
    height: 110px;
  }
  .header-search {
    max-width: 500px;
  }
}

@media (max-width: 1380px) {
  /* Logo negatif marginlardan temizlendi */
  .logo {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 0;
  }
  .logo-img {
    height: 76px;
  }
  .header.scrolled .logo {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 0;
  }
  .header.scrolled .logo-img {
    height: 76px;
  }
}

@media (max-width: 1300px) {
  /* Laptop: logo header içinde temiz, taşma yok */
  .logo {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 0;
  }
  .logo-img {
    height: 72px;
  }
  .header.scrolled .logo {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 0;
  }
  .header.scrolled .logo-img {
    height: 72px;
  }
  .header-actions {
    margin-left: 16px;
    margin-right: 8px;
  }
}

@media (max-width: 1270px) {
  .hamburger { display: flex; }
  .category-menu { display: none; }
}

@media (max-width: 1100px) {
  .logo {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 0;
  }
  .logo-img {
    height: 68px;
  }
  .header.scrolled .logo {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 0;
  }
  .header.scrolled .logo-img {
    height: 68px;
  }
  .header-actions {
    margin-left: 8px;
    margin-right: 4px;
  }
  .header-search {
    max-width: 360px;
  }
  .about-grid { gap: 40px; }
  .contact-grid { gap: 36px; }
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .banners-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 260px); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { gap: 32px; }
  .contact-grid { gap: 32px; }
  /* Tablet/laptop: "Bir uzmana görüşün" butonu gizle, yer açmak için */
  .header-signature { display: none; }
  .header-divider { display: none; }
}

@media (max-width: 768px) {
  /* Topbar'ı tamamen gizle - içerik hamburger menüde */
  .topbar { display: none; }

  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  
  /* Mobilde logo taşmayı önle - başlık içinde tut */
  .header.scrolled .header-inner {
    height: 68px;
    gap: 8px;
  }
  .header.scrolled .logo {
    margin-left: -23px;
    margin-bottom: -10px;
    margin-top: 5px;
  }
  .header.scrolled .logo-img {
    height: 145px;
  }

  .header-inner {
    height: 68px;
    gap: 8px;
    position: relative;
    padding: 0 12px;
  }
  .header.scrolled .header-inner {
    height: 68px;
    gap: 8px;
  }

  .logo {
    margin-left: -23px;
    margin-bottom: -10px;
    margin-top: 5px;
    flex-shrink: 0;
  }
  .logo-img {
    height: 145px;
  }

  /* Arama çubuğunu mobilde gizle */
  .header-search {
    display: none;
  }

  .header-signature { display: none; }
  .header-divider { display: none; }
  .cat-icon-btn { display: none; }
  .fav-header-btn { display: none; }

  .header-contact-phone {
    margin-left: -15px;
  }

  .header-icon-btn {
    width: 36px;
    height: 36px;
  }
  .header-icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .header-actions {
    gap: 4px;
    margin-left: auto;
    margin-right: 0;
    flex-shrink: 0;
    align-items: center;
  }

  .hamburger {
    margin-left: 0;
  }
  .header.scrolled .header-actions {
    position: static;
    transform: none;
    margin-left: 0;
  }

  /* Mobilde scroll'da telefon kaybolmasın */
  .header.scrolled .header-search {
    display: none;
  }
  .header.scrolled .header-contact-phone {
    display: none;
  }

  .hamburger { display: flex; }
  .category-menu { display: none; }

  .hero { min-height: 550px; }
  .slider { min-height: 550px; }
  .slide { padding: 60px 0; min-height: 550px; }
  .slide-inner { grid-template-columns: 1fr; gap: 0; }
  .slide-img { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .banners-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 220px); }
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .about-img { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  /* scrolled menüyü mobilde normal akışa al */
  .header.scrolled .category-menu {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    margin-top: 0;
  }
  
  .footer-top { 
    grid-template-columns: 1fr; 
    gap: 32px; 
    padding: 40px 0 28px; 
    text-align: center;
  }
  .footer-col {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 24px;
  }
  .footer-col:last-child {
    border-bottom: none;
  }
  .footer-col .logo {
    justify-content: center;
    margin: 0 auto;
  }
  .footer-col .logo-img {
    height: 180px;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom-inner {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero { min-height: 450px; }
  .slider { min-height: 450px; }
  .slide { min-height: 450px; padding: 40px 0; }
  .products-grid {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    overflow-y: hidden;
    gap: 14px;
    padding-bottom: 12px;
    padding-right: 24px;
    -webkit-overflow-scrolling: touch;
  }
  .products-grid .product-card {
    min-width: 78vw;
    flex-shrink: 0;
  }
  .products-grid .product-card.hidden { display: none; }
  .banners-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 200px); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .filter-tabs { gap: 6px; }
  .filter-btn { padding: 6px 14px; font-size: 12px; }
  .section { padding: 48px 0; }
  .contact-form { padding: 24px 16px; }
  html { scroll-padding-top: 100px; }

  /* Çok küçük ekranlarda telefon numarası metnini kısalt */
  .header-contact-phone {
    font-size: 11px;
  }
  /* Arama çubuğu placeholder'ını kısalt */
  .search-input::placeholder {
    font-size: 12px;
  }
}


/* ===== PAGE HERO ===== */
.page-hero {
  background: #c4a882;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
}

/* ===== DETAIL CARDS ===== */
.detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}
.detail-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.detail-img {
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 100 !important;
  background: #f5f5f5;
  min-height: 400px;
}
.detail-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition);
  position: relative;
  z-index: 101 !important;
}
.detail-card:hover .detail-img img {
  transform: scale(1.05);
}

.detail-content {
  position: relative;
  z-index: 50;
}
.detail-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.detail-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.detail-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.feature-item {
  padding: 16px 20px;
  background: var(--bg-gray);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}
.feature-item h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* ===== CTA BOX ===== */
.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-box h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE - DETAIL PAGE ===== */
@media (max-width: 768px) {
  .page-hero {
    padding: 60px 0 40px;
  }
  .detail-card {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
  .detail-card .detail-img:last-child {
    order: -1;
  }
  .cta-actions {
    flex-direction: column;
  }
  .cta-actions .btn {
    width: 100%;
  }
}


/* ===== HİZMET BÖLGELERİMİZ MOBİL ===== */
@media (max-width: 600px) {
  #hizmet-bolgelerimiz .container > div[style] {
    grid-template-columns: 1fr !important;
  }
}

/* ===== BLOG POST ===== */
.blog-post {
  padding: 60px 0;
  background: var(--bg);
}

.blog-header {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.blog-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text);
}

.blog-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}

.blog-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.blog-content .lead {
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.7;
}

.blog-content h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin: 48px 0 20px;
  color: var(--text);
}

.blog-content h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  margin: 32px 0 16px;
  color: var(--text);
}

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

.blog-content ul, .blog-content ol {
  margin: 20px 0 20px 24px;
  list-style: disc;
}

.blog-content ul li, .blog-content ol li {
  margin-bottom: 12px;
  padding-left: 8px;
}

.blog-content strong {
  font-weight: 600;
  color: var(--primary);
}

.blog-cta {
  background: var(--primary-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 40px;
  margin: 60px 0 40px;
  text-align: center;
}

.blog-cta h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.blog-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-note {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .blog-post { padding: 40px 0; }
  .blog-content { font-size: 16px; }
  .blog-cta { padding: 28px 20px; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
}


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

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

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

.blog-date {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card h3 a {
  color: var(--text);
  transition: color var(--transition);
}

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

.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
}

.blog-link:hover {
  color: var(--primary-dark);
}

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

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


/* ===== BLOG HERO ===== */
.blog-hero {
  padding: 100px 0 80px;
  text-align: center;
  color: #fff;
  position: relative;
}

.blog-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}

.blog-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
}

/* ===== BLOG ARCHIVE GRID ===== */
.blog-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-archive-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.blog-archive-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.blog-archive-img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  background-size: cover;
  background-position: center;
}

.blog-archive-content {
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
}

.blog-archive-content h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-archive-content h2 a {
  color: var(--text);
  transition: color var(--transition);
}

.blog-archive-content h2 a:hover {
  color: var(--primary);
}

.blog-archive-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.blog-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.blog-tags span {
  font-size: 12px;
  padding: 4px 12px;
  background: var(--bg-gray);
  border-radius: 12px;
  color: var(--primary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .blog-hero { padding: 60px 0 50px; }
  .blog-archive-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .blog-archive-img {
    min-height: 200px;
  }
  .blog-archive-content {
    padding: 24px;
  }
}


/* ===== E-COMMERCE STYLES ===== */

/* Cart Icon */
.cart-link {
  position: relative;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
  display: none;
}

/* Cart Page */
.cart-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  margin-top: 40px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
}

.cart-item-info h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.cart-item-category {
  color: #666;
  font-size: 14px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-quantity button {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
}

.cart-item-quantity button:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cart-item-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

.cart-item-remove {
  width: 30px;
  height: 30px;
  border: none;
  background: #ff4444;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
}

.cart-summary {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 16px;
}

.summary-row.total {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  padding-top: 15px;
  border-top: 2px solid #eee;
  margin-top: 15px;
}

/* Checkout Page */
.checkout-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  margin-top: 40px;
}

.checkout-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-section {
  margin-bottom: 40px;
}

.form-section h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

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

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.payment-method {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.payment-method:hover {
  border-color: var(--accent);
}

.payment-method input[type="radio"] {
  margin-right: 10px;
  width: auto;
}

.payment-method input[type="radio"]:checked + span {
  color: var(--accent);
  font-weight: 600;
}

.payment-details {
  padding: 20px;
  background: #f9f9f9;
  border-radius: var(--radius);
  margin-top: 20px;
}

.checkout-summary {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* Auth Pages */
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 40px 0;
}

.auth-box {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 450px;
}

.auth-box h2 {
  margin-bottom: 30px;
  text-align: center;
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
  color: #666;
}

.auth-switch a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* Admin Panel */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--dark);
  color: #fff;
  padding: 30px 0;
}

.admin-logo {
  font-size: 20px;
  font-weight: 700;
  padding: 0 30px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.admin-nav {
  display: flex;
  flex-direction: column;
}

.admin-nav a {
  padding: 15px 30px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-left-color: var(--accent);
}

.admin-main {
  background: var(--bg);
}

.admin-header {
  background: #fff;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.admin-header h1 {
  font-size: 28px;
}

.admin-user {
  padding: 8px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  font-weight: 600;
}

.admin-content {
  padding: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.stat-card {
  background: #fff;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  font-size: 40px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 12px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
}

.stat-label {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
}

.admin-section {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.admin-section h2 {
  margin-bottom: 25px;
}

.admin-table-container {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  background: var(--bg);
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 2px solid #ddd;
}

.admin-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.admin-table tr:hover {
  background: #f9f9f9;
}

.status-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-processing { background: #cce5ff; color: #004085; }
.status-shipped { background: #d1ecf1; color: #0c5460; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

.status-select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 14px;
}

.btn-small {
  padding: 6px 12px;
  font-size: 13px;
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 5px;
}

.btn-small:hover {
  opacity: 0.9;
}

.btn-danger {
  background: #dc3545;
}

.admin-filters {
  margin-bottom: 20px;
}

.admin-filters select {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 15px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal-content {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

/* Success Page */
.success-container {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #28a745;
  color: #fff;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

/* Notification */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--dark);
  color: #fff;
  padding: 15px 25px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 10000;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .cart-container,
  .checkout-container {
    grid-template-columns: 1fr;
  }
  
  .cart-summary,
  .checkout-summary {
    position: static;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .admin-layout {
    grid-template-columns: 1fr;
  }
  
  .admin-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 15px;
  }
  
  .cart-item-quantity,
  .cart-item-price,
  .cart-item-remove {
    grid-column: 2;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PERDE YIKAMA - TOPBAR LINK ===== */
.topbar-yikama {
  color: #c8a96e !important;
  font-weight: 600;
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: 20px;
  padding: 2px 10px !important;
  transition: background 0.2s, color 0.2s;
}
.topbar-yikama:hover {
  background: #c8a96e !important;
  color: #fff !important;
}

/* ===== PERDE YIKAMA - CATEGORY MENU LINK ===== */
.cat-yikama {
  color: #c8a96e !important;
  font-weight: 700;
  border-left: 2px solid #c8a96e;
  padding-left: 12px !important;
  margin-left: 8px;
  transition: color 0.2s;
}
.cat-yikama:hover {
  color: #fff !important;
}

/* ===== PERDE YIKAMA - STICKY FLOAT BUTTON ===== */
.sticky-yikama-btn {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #c8a96e;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  animation: yikama-pulse 3s infinite;
}
.sticky-yikama-btn:hover {
  background: #a8853e;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  color: #fff;
}
.sticky-yikama-icon { font-size: 20px; line-height: 1; }
.sticky-yikama-text { white-space: nowrap; }
@keyframes yikama-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.22); }
  50% { box-shadow: 0 4px 28px rgba(200,169,110,0.55); }
}

/* ===== PERDE YIKAMA BAND SECTION ===== */
.yikama-band {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.yikama-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}
.yikama-band:hover .yikama-band-bg { transform: scale(1); }
.yikama-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,10,0.80) 0%, rgba(30,50,20,0.65) 100%);
}
.yikama-band-inner {
  position: relative;
  z-index: 2;
}
.yikama-band-content {
  max-width: 600px;
}
.yikama-band-badge {
  display: inline-block;
  background: #c8a96e;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 18px;
}
.yikama-band-content h2 {
  font-size: clamp(26px, 4vw, 40px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}
.yikama-band-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
  line-height: 1.7;
}
.yikama-band-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.yikama-band-list li {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 500;
}
.yikama-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  font-size: 15px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}
@media (max-width: 600px) {
  .yikama-band { padding: 60px 0; }
  .yikama-band-list { grid-template-columns: 1fr; }
  .sticky-yikama-text { display: none; }
  .sticky-yikama-btn { padding: 14px; border-radius: 50%; }
}

/* ===== PERDE YIKAMA PROMO BAND (ana sayfa) ===== */
.yikama-promo-band {
  position: relative;
  background-color: #1a1a0e;
  background-size: cover;
  background-position: center;
  border-top: 4px solid #c8a96e;
  border-bottom: 4px solid #c8a96e;
  padding: 64px 0;
  text-align: center;
  overflow: hidden;
}
.yikama-promo-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,5,0.80) 0%, rgba(30,22,5,0.72) 100%);
  z-index: 1;
}
/* Köşe dekoratif çizgi blokları */
.yikama-promo-deco {
  position: absolute;
  top: 12px; bottom: 12px;
  width: 4px;
  background: #c8a96e;
  opacity: 0.5;
  z-index: 2;
}
.yikama-promo-deco-left  { left: 18px; }
.yikama-promo-deco-right { right: 18px; }
/* İkinci çizgiler */
.yikama-promo-deco::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: #c8a96e;
  opacity: 0.35;
}
.yikama-promo-deco-left::after  { left: 7px; }
.yikama-promo-deco-right::after { right: 7px; }

.yikama-promo-inner {
  position: relative;
  z-index: 2;
}
.yikama-promo-label {
  display: inline-block;
  border: 1px solid #c8a96e;
  color: #c8a96e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 20px;
}
.yikama-promo-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.yikama-promo-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #c8a96e;
  margin: 14px auto 0;
  border-radius: 2px;
}
.yikama-promo-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.75;
}
.yikama-promo-features {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.yikama-promo-features span {
  font-size: 13px;
  font-weight: 600;
  color: #e8c87a;
  background: rgba(200,169,110,0.12);
  border: 1px dashed rgba(200,169,110,0.5);
  border-radius: 20px;
  padding: 5px 14px;
}
.yikama-promo-btn {
  display: inline-block;
  background: #c8a96e;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(200,169,110,0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.yikama-promo-btn:hover {
  background: #a8853e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,169,110,0.4);
  color: #fff;
}
@media (max-width: 600px) {
  .yikama-promo-band { padding: 48px 0; }
  .yikama-promo-deco { display: none; }
}

/* ===== BLOG YAZISI SAYFASI - HEADER LOGO DÜZELTME ===== */
.header-simple .header-inner {
  height: 110px;
  align-items: center;
}
.header-simple.scrolled .header-inner {
  height: 90px;
}
.header-simple .logo {
  margin-left: 0;
  margin-top: 10px;
  margin-bottom: 0;
  align-items: center;
  flex-shrink: 0;
}
.header-simple .logo-img {
  height: 175px;
}
.header-simple.scrolled .logo {
  margin-left: 0;
  margin-bottom: 0;
}
.header-simple.scrolled .logo-img {
  height: 72px;
}
.header-simple .nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.header-simple .nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.header-simple .nav a:hover {
  color: var(--primary);
}
@media (max-width: 768px) {
  .header-simple .nav { display: none; }
  .header-simple .header-inner { height: 68px; }
  .header-simple .logo { margin-left: -23px; margin-bottom: -10px; margin-top: 5px; }
  .header-simple .logo-img { height: 145px; }
}
