/* ════════════════════════════════════════════════════════════════
   BOZDAĞLAR ZÜCCACİYE — htmltema uyarlaması
   Bu dosya site.css'ten SONRA ve layout'taki dinamik token
   bloğundan SONRA yüklenir; temanın nihai görünümünü belirler.
   Tasarım dili: Poppins, #121212 siyah, #d4af89 bronz, #f5f5f5 zemin,
   yumuşak gölgeli beyaz kartlar (radius 16–28px).
   ════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --clr-primary: #121212;
  --clr-primary-light: #2b2b2b;
  --clr-primary-lighter: #f0ebe4;
  --clr-accent: #d4af89;
  --clr-accent-dark: #b7926a;
  --clr-bg: #f5f5f5;
  --clr-surface: #ffffff;
  --clr-border: #ececec;
  --clr-text: #121212;
  --clr-text-secondary: #555555;
  --clr-text-muted: #888888;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --bz-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  --bz-shadow-lg: 0 15px 40px rgba(0, 0, 0, .06);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, .04);
  --shadow-md: var(--bz-shadow);
  --shadow-lg: var(--bz-shadow-lg);
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
  color: #121212;
}

::selection { background: #d4af89; color: #fff; }

/* Tema genel konteyneri — htmltema .container (1400px, max %95) */
.bz-container {
  width: 1400px;
  max-width: 95%;
  margin: auto;
}

/* Eski geniş konteynerleri tema genişliğine çek */
.page-main .container-fluid.px-lg-5,
.site-footer .container-fluid.px-lg-5 {
  width: 1400px;
  max-width: 95%;
  margin: auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ═══════════════ HEADER ═══════════════ */

.bz-header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 1050;
  padding: 18px 0;
  transition: padding .3s ease, box-shadow .3s ease;
}
.bz-header.scrolled {
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.bz-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.bz-logo { display: flex; align-items: center; }
.bz-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height .3s ease;
}
.bz-header.scrolled .bz-logo img { height: 46px; }
.bz-logo-text {
  font-size: 24px;
  font-weight: 600;
  color: #121212;
  letter-spacing: 1px;
}
@media (max-width: 767px) { .bz-logo img { height: 44px; } }

/* Nav */
.bz-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.bz-nav > a,
.bz-nav .nav-item-rich > .nav-item-shell > .nav-link {
  color: #121212;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding: 6px 0 !important;
  background: none;
}
.bz-nav > a::after,
.bz-nav .nav-item-rich > .nav-item-shell > .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #121212;
  transition: .3s;
  transform: none;
}
.bz-nav > a:hover::after,
.bz-nav > a.active::after,
.bz-nav .nav-item-rich > .nav-item-shell > .nav-link:hover::after,
.bz-nav .nav-item-rich:hover > .nav-item-shell > .nav-link::after { width: 100%; }
.bz-nav > a:hover,
.bz-nav .nav-item-rich > .nav-item-shell > .nav-link:hover { color: #121212; }

/* static: mega menü panel sticky header'a çapalanır (tam sayfa genişliği) */
.bz-nav .nav-item-rich { position: static; list-style: none; }
.bz-nav .nav-toggle { color: #888; }

/* Kategori mega menüsü tema diline uydur */
.bz-nav .nav-drop {
  border: none;
  border-top: 1px solid #ececec;
  border-radius: 0;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
  margin-top: 0;
}
.bz-nav .nav-drop-header {
  border-bottom: 1px solid #ececec;
  color: #121212;
}
.bz-nav .nav-drop-header a { color: #b7926a; }
.bz-nav .nav-mega-col { border: 1px solid #ececec; border-radius: 12px; }
.bz-nav .nav-mega-title { color: #121212; }

/* Sağ aksiyonlar */
.bz-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bz-icon-btn {
  background: none;
  border: none;
  color: #121212;
  font-size: 19px;
  cursor: pointer;
  position: relative;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
}
.bz-icon-btn:hover { opacity: .65; color: #121212; }
.bz-icon-btn .hdr-badge {
  top: -7px;
  right: -9px;
  background: #b7926a;
  border-color: #fff;
  animation: none;
}

.bz-login-btn {
  padding: 11px 22px;
  border-radius: 5px;
  border: 1px solid #121212;
  background: #121212;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: .3s;
}
.bz-login-btn:hover { background: #2b2b2b; color: #fff; transform: translateY(-2px); }
.bz-login-btn.is-ghost {
  background: transparent;
  color: #121212;
}
.bz-login-btn.is-ghost:hover { background: #121212; color: #fff; }

.bz-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #121212;
  cursor: pointer;
}
@media (max-width: 991px) {
  .bz-mobile-menu-btn { display: inline-flex; }
  .bz-nav { display: none; }
  .bz-header-right { gap: 12px; }
  .bz-login-btn { display: none; }
}

/* Açılır arama satırı */
.bz-search-row {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, margin .35s ease;
}
.bz-search-row.is-open {
  max-height: 80px;
  margin-top: 16px;
  overflow: visible; /* canlı arama önerileri satırın dışına taşabilsin */
}
.bz-search-row .header-search { max-width: none; }
.bz-search-row .header-search input {
  border: 1px solid #ececec;
  border-radius: 5px;
  background: #fafafa;
  font-family: 'Poppins', sans-serif;
  padding: 13px 56px 13px 48px;
}
.bz-search-row .header-search input:focus {
  border-color: #121212;
  box-shadow: none;
  background: #fff;
}
.bz-search-row .header-search .search-btn {
  background: #121212;
  border-radius: 4px;
}
.bz-search-row .header-search .search-btn:hover { background: #b7926a; }

/* ═══════════════ CANLI ARAMA ÖNERİLERİ ═══════════════ */

.header-search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
  overflow: hidden;
  z-index: 1050;
}
.hs-suggest-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #121212;
  text-decoration: none;
  transition: background .2s;
}
.hs-suggest-item:hover { background: #faf8f6; }
.hs-suggest-item + .hs-suggest-item { border-top: 1px solid #f3f3f3; }
.hs-suggest-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 auto;
  background: #fafafa;
}
.hs-suggest-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.hs-suggest-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hs-suggest-meta { font-size: 11px; color: #9a9a9a; }
.hs-suggest-price {
  font-size: 13px;
  font-weight: 700;
  color: #b7926a;
  white-space: nowrap;
}
.hs-suggest-all {
  display: block;
  padding: 11px 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #121212;
  background: #faf8f6;
  border-top: 1px solid #ececec;
  text-decoration: none;
}
.hs-suggest-all:hover { background: #121212; color: #fff; }

/* ═══════════════ HERO SLIDER (anasayfa) ═══════════════ */

.hero-slider-wrap { padding: 0 !important; background: #f5f5f5; }
.hero-slider-wrap .carousel-inner {
  border-radius: 0;
  box-shadow: none;
}
/* Koç tarzı tam ekran: sticky header (~93px) sonrası kalan viewport'un tamamı.
   svh, mobil tarayıcılarda adres çubuğu kaynaklı zıplamayı önler. */
.hero-slider-wrap .hero-slide {
  display: block;
  min-height: calc(100vh - 93px);
  min-height: calc(100svh - 93px);
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  .hero-slider-wrap .hero-slide {
    min-height: calc(100vh - 93px);
    min-height: calc(100svh - 93px);
  }
}

/* ─── Koç tarzı içerik bloğu: gradyan + sola dayalı başlık/metin/buton ─── */
.hero-slider-wrap .hero-slide { position: relative; display: flex; align-items: center; }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .22) 55%, rgba(0, 0, 0, 0) 100%);
}
.hero-slide-content {
  position: relative; z-index: 2;
  color: #fff;
  max-width: 480px;
  margin-left: 8.3333%;
  padding: 96px 24px 96px 0;
}
.hs-title {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}
.hs-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .3);
}
.hs-btn {
  display: inline-flex; align-items: center; gap: 10px;
  min-width: 220px; justify-content: center;
  padding: 13px 26px;
  background: var(--clr-primary);
  color: #fff; font-size: 15px; font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
  transition: all .25s ease;
}
.hs-btn:hover {
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .28);
  transform: translateY(-3px);
}
/* Kademeli giriş: başlık → metin → buton (Koç zamanlamaları: .3s / .4s / .5s) */
@keyframes hsRise {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-slider-wrap .carousel-item .hs-title,
.hero-slider-wrap .carousel-item .hs-text,
.hero-slider-wrap .carousel-item .hs-btn-wrap { opacity: 0; }
.hero-slider-wrap .carousel-item.active .hs-title { animation: hsRise .5s ease-in-out .3s both; }
.hero-slider-wrap .carousel-item.active .hs-text { animation: hsRise .5s ease-in-out .4s both; }
.hero-slider-wrap .carousel-item.active .hs-btn-wrap { animation: hsRise .5s ease-in-out .5s both; }
@media (prefers-reduced-motion: reduce) {
  .hero-slider-wrap .carousel-item .hs-title,
  .hero-slider-wrap .carousel-item .hs-text,
  .hero-slider-wrap .carousel-item .hs-btn-wrap { opacity: 1; animation: none !important; }
}
@media (max-width: 767px) {
  .hero-slide-content { margin-left: 0; padding: 72px 20px 88px; }
  .hs-text { font-size: 14px; }
  .hs-btn { min-width: 0; padding: 11px 20px; font-size: 14px; }
}

/* ─── Koç tarzı kontrol grubu: alt-orta ok + noktalar + ok ─── */
.hero-controls {
  position: absolute; left: 0; right: 0; bottom: 20px; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  gap: 4px;
}
.hero-ctrl-btn {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: 50%;
  background: var(--clr-primary); color: #fff;
  font-size: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  transition: all .25s ease;
}
.hero-ctrl-btn:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, .3);
  transform: translateY(-3px);
}
.hero-controls .hero-dots {
  position: static;
  margin: 0 12px;
  gap: 8px;
}
.hero-controls .hero-dots button {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, .5) !important;
  opacity: 1 !important;
  transition: all .25s !important;
}
.hero-controls .hero-dots button.active {
  background-color: var(--clr-primary) !important;
  transform: scale(1.3);
}

/* ═══════════════ BÖLÜM BAŞLIKLARI (Çok Satan Ürünler vb.) ═══════════════ */

.section-header,
.landing-section-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}
.section-title,
.landing-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: #121212;
}
.section-subtitle,
.landing-section-subtitle { display: none; }
.section-link,
.landing-section-link {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
  border: none;
  padding: 0;
  border-radius: 0;
  background: none;
  transition: .3s;
}
.section-link i,
.landing-section-link i { font-size: 12px; transition: .3s; }
.section-link:hover,
.landing-section-link:hover { opacity: .7; background: none; border: none; color: #121212; }
.section-link:hover i,
.landing-section-link:hover i { transform: translateX(4px); }
@media (max-width: 767px) {
  .section-title, .landing-section-title { font-size: 26px; }
  .section-link span { display: none; }
}

/* ═══════════════ ÜRÜN KARTI (htmltema .product-card / .bz-product-card) ═══════════════ */

.bzp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.bzp-grid.bzp-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1200px) {
  .bzp-grid, .bzp-grid.bzp-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .bzp-grid, .bzp-grid.bzp-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
/* Mobilde tek sütun yerine yan yana 2 ürün; kart içerikleri kompaktlaşır */
@media (max-width: 480px) {
  .bzp-grid, .bzp-grid.bzp-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bzp-card { border-radius: 14px; }
  .bzp-image { height: 150px; }
  .bzp-info { padding: 12px; }
  .bzp-info h4 { font-size: 14px; }
  .bzp-code { font-size: 11px; margin-bottom: 8px; }
  .bzp-price { font-size: 15px; }
  .bzp-footer { padding-top: 10px; gap: 6px; }
  .bzp-qty { width: 44px; height: 34px; }
}

.bzp-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: .35s;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
  display: flex;
  flex-direction: column;
  position: relative;
}
.bzp-card:hover { transform: translateY(-8px); }

.bzp-image {
  height: 240px;
  overflow: hidden;
  display: block;
  background: #fff;
}
.bzp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .4s;
}
.bzp-card:hover .bzp-image img { transform: scale(1.08); }
@media (max-width: 575px) { .bzp-image { height: 200px; } }

.bzp-info {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bzp-info h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #121212;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bzp-info h4 a { color: inherit; }
.bzp-info h4 a:hover { opacity: .7; }
.bzp-code {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}
.bzp-stock {
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.bzp-price {
  font-size: 17px;
  font-weight: 600;
  color: #121212;
  line-height: 1.2;
}
.bzp-price-old {
  font-size: 13px;
  color: #aaa;
  text-decoration: line-through;
}
.bzp-price-unit {
  font-size: 11px;
  color: #999;
  font-weight: 400;
}
.bzp-login-link {
  font-size: 15px;
  font-weight: 600;
  color: #121212;
}
.bzp-login-link:hover { color: #b7926a; }

.bzp-footer {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.bzp-add-form {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bzp-qty {
  width: 54px;
  height: 40px;
  text-align: center;
  border: 1px solid #ececec;
  border-radius: 10px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
}
.bzp-qty:focus { outline: none; border-color: #121212; background: #fff; }
.bzp-add-btn {
  height: 40px;
  padding: 0 16px;
  border: none;
  border-radius: 10px;
  background: #121212;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: .3s;
  white-space: nowrap;
}
.bzp-add-btn:hover { transform: translateY(-2px); background: #2b2b2b; color: #fff; }
.bzp-koli-note {
  width: 100%;
  font-size: 10px;
  color: #999;
}
.bzp-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  opacity: 0;
  transform: translateX(8px);
  transition: all .3s ease;
}
.bzp-card:hover .bzp-actions { opacity: 1; transform: translateX(0); }
.bzp-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}
.bzp-action-btn:hover { background: #121212; color: #fff; }

/* Anasayfa ürün bölümleri */
.bz-products-section { padding: 70px 0 0; }
.bz-products-section:last-child { padding-bottom: 90px; }

/* ═══════════════ KATEGORİ VİTRİNİ (anasayfa) ═══════════════ */

.cat-card, .landing-cat-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  background: #fff;
}
.cat-card::before, .landing-cat-card::before { display: none; }
.cat-card:hover, .landing-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}
.cat-icon, .landing-cat-icon {
  border-radius: 12px;
  border: 1px solid #d9c3aa;
  background: #faf8f6;
  color: #b7926a;
}
.cat-card:hover .cat-icon,
.landing-cat-card:hover .landing-cat-icon {
  background: #121212;
  border-color: #121212;
  color: #fff;
}
/* Kategori resmi (admin panelden yüklenen) */
.cat-icon.cat-icon-img {
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.cat-icon.cat-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform .3s;
}
.cat-card:hover .cat-icon.cat-icon-img { background: #fff; }
.cat-card:hover .cat-icon.cat-icon-img img { transform: scale(1.08); }

/* ═══════════════ FEATURES ŞERİDİ (Güçlü Stok / Hızlı Sevkiyat…) ═══════════════ */

.bz-features {
  background: #fff;
  padding: 35px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.bz-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.bz-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.bz-feature-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border: 1px solid #d9c3aa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #b7926a;
  background: #faf8f6;
}
.bz-feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #121212;
}
.bz-feature-text p {
  font-size: 13px;
  line-height: 1.7;
  color: #777;
  margin: 0;
}
@media (max-width: 991px) { .bz-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .bz-features-grid { grid-template-columns: 1fr; } }

/* ═══════════════ CTA BÖLÜMÜ (Birlikte daha güzeli.) ═══════════════ */

.bz-cta-section {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.bz-cta-bg { position: absolute; inset: 0; }
.bz-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bz-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left,
      rgba(0, 0, 0, .15),
      rgba(0, 0, 0, .45),
      rgba(0, 0, 0, .75));
}
.bz-cta-inner {
  position: relative;
  z-index: 2;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.bz-cta-content { max-width: 520px; color: #fff; }
.bz-cta-content span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 3px;
  color: #d4af89;
  text-transform: uppercase;
}
.bz-cta-content h2 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 600;
}
.bz-cta-content p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 35px;
}
.bz-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 8px;
  background: #fff;
  color: #121212;
  font-weight: 500;
  transition: .3s;
}
.bz-cta-btn i { font-size: 12px; transition: .3s; }
.bz-cta-btn:hover { transform: translateY(-3px); color: #121212; }
.bz-cta-btn:hover i { transform: translateX(4px); }
@media (max-width: 768px) {
  .bz-cta-section { height: auto; }
  .bz-cta-inner { height: auto; justify-content: center; padding: 90px 0; }
  .bz-cta-content { text-align: center; }
  .bz-cta-content h2 { font-size: 42px; }
}

/* ═══════════════ FOOTER (koyu #111, 5 kolon) ═══════════════ */

.site-footer {
  background: #111;
  color: #fff;
  padding: 70px 0 30px;
  margin-top: 0;
}
.bz-footer-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.bz-footer-col h4 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.bz-footer-col a {
  display: block;
  margin-bottom: 12px;
  color: #aaa;
  font-size: 14px;
  transition: .3s;
}
.bz-footer-col a:hover { color: #d4af89; }
.bz-footer-col p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.7;
}
.bz-footer-logo {
  max-width: 190px;
  margin-bottom: 20px;
  display: block;
}
.bz-footer-brand-text {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}
.bz-footer-social { display: flex; gap: 14px; }
.bz-footer-social a {
  display: inline-flex !important;
  font-size: 20px;
  color: #aaa;
  margin-bottom: 0;
}
.bz-footer-social a:hover { color: #d4af89; }
.bz-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 25px;
  text-align: center;
  color: #888;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bz-footer-bottom a { color: #888; }
.bz-footer-bottom a:hover { color: #d4af89; }
@media (max-width: 991px) { .bz-footer-wrapper { grid-template-columns: 1fr 1fr; gap: 35px; } }
@media (max-width: 576px) { .bz-footer-wrapper { grid-template-columns: 1fr; } }

/* ═══════════════ KATEGORİ / KATALOG SAYFASI (bz-category-page) ═══════════════ */

.bz-category-page {
  padding: 50px 0 90px;
  background: #f5f5f5;
}

.bz-category-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 30px;
}
.bz-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #888;
}
.bz-breadcrumb a { color: #888; }
.bz-breadcrumb a:hover { color: #121212; }
.bz-breadcrumb strong { color: #121212; font-weight: 500; }
.bz-category-title h1 {
  font-size: 52px;
  font-weight: 600;
  color: #121212;
  line-height: 1.1;
}
.bz-category-meta {
  margin-top: 12px;
  font-size: 13px;
  color: #888;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.bz-category-meta strong { color: #121212; }

.bz-category-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
/* Öneri kutusu form dışında konumlanır (form overflow:hidden olduğundan) */
.bz-category-search-wrap { position: relative; min-width: 300px; }
.bz-category-search-wrap .header-search-suggest { top: calc(100% + 6px); }
.bz-category-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  overflow: hidden;
  height: 50px;
}
.bz-category-search input {
  border: none;
  outline: none;
  height: 100%;
  padding: 0 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #121212;
  background: transparent;
  min-width: 220px;
}
.bz-category-search button {
  height: 100%;
  padding: 0 20px;
  border: none;
  background: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: .3s;
}
.bz-category-search button:hover { background: #2b2b2b; }

.bz-category-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 35px;
  align-items: start;
}

/* Sidebar */
.bz-sidebar-box {
  background: #fff;
  border-radius: 22px;
  padding: 30px 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}
.bz-sidebar-box::-webkit-scrollbar { width: 4px; }
.bz-sidebar-box::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
.bz-sidebar-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #121212;
  padding: 0 10px;
}
.bz-sidebar-box ul { list-style: none; margin: 0; padding: 0; }
.bz-sidebar-box li { margin-bottom: 10px; }
.bz-sidebar-box li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 15px 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
  color: #121212;
  transition: .3s;
  font-size: 14px;
}
.bz-sidebar-box li > a i { font-size: 11px; color: #bbb; transition: .3s; }
.bz-sidebar-box li > a:hover { transform: translateX(5px); }
.bz-sidebar-box li.active > a {
  background: #121212;
  color: #fff;
  border-color: #121212;
}
.bz-sidebar-box li.active > a i { color: #d4af89; }
.bz-sidebar-children {
  margin: 8px 0 4px;
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bz-sidebar-children a {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #777;
  transition: .25s;
}
.bz-sidebar-children a:hover { color: #121212; background: #f6f6f6; }
.bz-sidebar-children a.active { color: #121212; font-weight: 600; background: #f0ebe4; }
.bz-sidebar-children a.l3 { padding-left: 26px; font-size: 12px; }

/* Alt kategori kartları */
.bz-subcategories {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.bz-subcategories::-webkit-scrollbar { height: 0; }
.bz-subcategory-card {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 14px;
  color: #121212;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  transition: .3s;
  white-space: nowrap;
}
.bz-subcategory-thumb {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 auto;
}
.bz-subcategory-card:hover { transform: translateY(-3px); }
.bz-subcategory-card.active { background: #121212; color: #fff; }

@media (max-width: 992px) {
  .bz-category-layout { grid-template-columns: 1fr; }
  .bz-sidebar-box { position: static; max-height: none; }
  .bz-category-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 576px) {
  .bz-category-title h1 { font-size: 38px; }
  .bz-category-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .bz-category-search input { min-width: 0; flex: 1; }
}

/* ═══════════════ ÜRÜN DETAY (bz-product-detail-page) ═══════════════ */

.bz-product-detail-page {
  padding: 50px 0 100px;
  background: #f5f5f5;
}

.bz-product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
  font-size: 14px;
  color: #888;
}
.bz-product-breadcrumb a { color: #666; }
.bz-product-breadcrumb a:hover { color: #121212; }

.bz-product-detail-wrapper {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: flex-start;
}

/* Galeri */
.bz-product-gallery { display: flex; gap: 20px; }
.bz-product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 620px;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding: 4px;
}
.bz-product-thumbs::-webkit-scrollbar { width: 0; }
.bz-thumb {
  width: 90px;
  height: 90px;
  min-height: 90px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  border: 2px solid transparent;
  transition: .3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  padding: 0;
}
.bz-thumb.active { border-color: #121212; }
.bz-thumb:hover { transform: translateY(-3px); }
.bz-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bz-product-main-image {
  flex: 1;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
  position: relative;
  border: none;
  padding: 0;
  cursor: zoom-in;
}
.bz-product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: .4s;
}
.bz-zoom-hint {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(18, 18, 18, .78);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Bilgi tarafı */
.bz-product-info-side { padding-top: 20px; }
.bz-product-category {
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: 3px;
  font-size: 12px;
  color: #b7926a;
  text-transform: uppercase;
}
.bz-product-info-side h1 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 35px;
  color: #121212;
  font-weight: 600;
}
.bz-product-meta { margin-bottom: 30px; }
.bz-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e9e9e9;
}
.bz-meta-row span { color: #888; font-size: 15px; }
.bz-meta-row strong { color: #121212; font-size: 15px; font-weight: 600; text-align: right; }

.bz-product-price {
  margin-bottom: 30px;
}
.bz-product-price .old {
  font-size: 16px;
  color: #aaa;
  text-decoration: line-through;
}
.bz-product-price .now {
  font-size: 36px;
  font-weight: 600;
  color: #121212;
  line-height: 1.15;
}
.bz-product-price .unit {
  font-size: 13px;
  color: #999;
}
.bz-product-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 35px;
}

.bz-product-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.bz-primary-btn {
  height: 56px;
  padding: 0 35px;
  border: none;
  border-radius: 14px;
  background: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bz-primary-btn:hover { transform: translateY(-3px); color: #fff; }
.bz-secondary-btn {
  height: 56px;
  padding: 0 35px;
  border: none;
  border-radius: 14px;
  background: #fff;
  color: #121212;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  transition: .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bz-secondary-btn:hover { transform: translateY(-3px); color: #121212; }

.bz-buy-form { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.bz-buy-qty {
  height: 56px;
  width: 110px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #121212;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}
.bz-buy-qty:focus { outline: none; border-color: #121212; }
.bz-buy-label {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}
.bz-color-select {
  height: 56px;
  padding: 0 18px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #121212;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

/* Detay alt bölümler */
.bz-product-section { margin-top: 70px; }
.bz-product-section-card {
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .04);
}
.bz-product-section-card h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #121212;
}
.bz-product-section-card .product-description-body {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
}

@media (max-width: 1200px) {
  .bz-product-detail-wrapper { grid-template-columns: 1fr; gap: 45px; }
}
@media (max-width: 768px) {
  .bz-product-gallery { flex-direction: column-reverse; }
  .bz-product-thumbs { flex-direction: row; max-height: none; overflow-x: auto; }
  .bz-thumb { width: 75px; height: 75px; min-height: 75px; }
  .bz-product-main-image { height: 420px; }
  .bz-product-info-side h1 { font-size: 34px; }
  .bz-product-section-card { padding: 26px; }
}
@media (max-width: 576px) {
  .bz-product-buttons { flex-direction: column; align-items: stretch; }
  .bz-primary-btn, .bz-secondary-btn { justify-content: center; }
  .bz-product-main-image { height: 320px; }
}

/* ═══════════════ İLETİŞİM SAYFASI (bz-contact-page) ═══════════════ */

.bz-contact-page {
  padding: 50px 0 100px;
  background: #f5f5f5;
}
.bz-contact-top {
  text-align: center;
  margin-bottom: 70px;
}
.bz-contact-top span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #b7926a;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.bz-contact-top h1 {
  font-size: 56px;
  color: #121212;
  margin-bottom: 20px;
  font-weight: 600;
}
.bz-contact-top p {
  max-width: 700px;
  margin: auto;
  line-height: 1.9;
  color: #666;
}
.bz-contact-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}
.bz-contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.bz-contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}
.bz-contact-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 14px;
  background: #121212;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.bz-contact-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #121212;
}
.bz-contact-card p {
  color: #666;
  line-height: 1.8;
  margin: 0;
  font-size: 14px;
}
.bz-contact-side-card {
  background: #fff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}
.bz-map-area {
  margin-top: 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  background: #fff;
}
.bz-map-area iframe {
  display: block;
  width: 100%;
  min-height: 450px;
  border: none;
}
@media (max-width: 992px) {
  .bz-contact-wrapper { grid-template-columns: 1fr; }
  .bz-contact-top h1 { font-size: 40px; }
}

/* ═══════════════ KURUMSAL SAYFA ═══════════════ */

.bz-page {
  padding: 50px 0 100px;
  background: #f5f5f5;
}
.bz-page-top {
  text-align: center;
  margin-bottom: 60px;
}
.bz-page-top span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #b7926a;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.bz-page-top h1 {
  font-size: 52px;
  color: #121212;
  margin-bottom: 20px;
  font-weight: 600;
}
.bz-page-top p {
  max-width: 700px;
  margin: auto;
  line-height: 1.9;
  color: #666;
}
.bz-page-card {
  background: #fff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}
.bz-page-card h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #121212;
}
@media (max-width: 768px) {
  .bz-page-top h1 { font-size: 36px; }
  .bz-page-card { padding: 26px; }
}

/* ═══════════════ GİRİŞ SAYFASI (panel-giris) ═══════════════ */

.bz-login-page {
  min-height: calc(100vh - 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: #f5f5f5;
}
.bz-login-box {
  width: 600px;
  max-width: 100%;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}
.bz-login-box .bz-login-logo {
  max-height: 64px;
  width: auto;
  margin: 0 auto 18px;
  display: block;
}
.bz-login-box h1 {
  font-size: 34px;
  color: #222;
  margin-bottom: 12px;
  font-weight: 600;
}
.bz-login-box > p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 30px;
}
.bz-input-group { margin-bottom: 18px; text-align: left; }
.bz-input-group input {
  width: 100%;
  height: 52px;
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: .3s;
  background: #fafafa;
}
.bz-input-group input:focus {
  border-color: #121212;
  background: #fff;
  box-shadow: none;
}
.bz-login-submit {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 6px;
  background: #121212;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  transition: .3s;
  margin-bottom: 25px;
}
.bz-login-submit:hover { opacity: .9; }
.bz-register-text {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}
.bz-register-link {
  color: #121212;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
  transition: .3s;
  text-transform: uppercase;
}
.bz-register-link:hover { opacity: .7; color: #121212; }
@media (max-width: 480px) {
  .bz-login-box { padding: 35px 25px; }
  .bz-login-box h1 { font-size: 28px; }
}

/* ═══════════════ MEVCUT BİLEŞENLERİN TEMAYA UYUMU ═══════════════ */

/* Sayfa kartları */
.page-card,
.catalog-hero-block,
.page-hero-card {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  border-radius: 22px;
}

/* Butonlar */
.hero-btn {
  border-radius: 10px;
  background: #121212;
  font-weight: 500;
}
.hero-btn:hover { background: #2b2b2b; transform: translateY(-2px); }
.add-cart-btn { border-radius: 10px; background: #121212; }
.add-cart-btn:hover { background: #2b2b2b; }
.btn-outline-secondary { border-radius: 10px; }

/* Form elemanları */
.form-control, .form-select {
  border: 1px solid #ececec;
  border-radius: 10px;
  background: #fafafa;
  font-family: 'Poppins', sans-serif;
}
.form-control:focus, .form-select:focus {
  border-color: #121212;
  box-shadow: none;
  background: #fff;
}

/* Sayfalama */
.premium-pagination .page-item .page-link {
  border-radius: 10px;
  border: none;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
  color: #555;
}
.premium-pagination .page-item.active .page-link {
  background: #121212;
  color: #fff;
}
.premium-pagination .page-item .page-link:hover {
  background: #f0ebe4;
  color: #121212;
}
.premium-pagination .page-item.disabled .page-link {
  background: #fff;
  color: #bbb;
  box-shadow: none;
}
.premium-pagination .pagination-ellipsis .page-link {
  background: transparent;
  box-shadow: none;
}

/* Yukarı dön */
.back-top { border-radius: 12px; }
.back-top:hover { background: #121212; border-color: #121212; }

/* Mobil alt bar + offcanvas zaten var(--clr-primary) kullanır → siyah olur */
.mobile-catalog-panel { background: #121212; }

/* Toast */
.app-toast { border: none; box-shadow: 0 15px 40px rgba(0, 0, 0, .12); }

/* Eski hero-tag rozetini temaya uydur */
.hero-tag {
  background: transparent;
  color: #b7926a;
  border-radius: 0;
  padding: 0;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 500;
}

/* Eski section-empty-note */
.section-empty-note { border-radius: 16px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.04); }

/* Sepet ve hesap kartları zaten page-card/var tabanlı → otomatik uyum */
.cart-summary-grand { border-top-color: #121212; }

/* Mobil menü (collapse) tema uyumu */
#megaNavCollapse .bg-white { border-color: #ececec !important; }
#megaNavCollapse .nav-link { color: #121212; font-size: 15px; }

/* Lightbox arkaplanı */
.detail-lightbox { background: rgba(18, 18, 18, .9); }
