/* ============================================================
   BEANOVA COFFEE – OpenCart 3.x Tema Stylesheet
   Referans: brewista-reference.png
   ============================================================ */

/* ============================================================
   ORTAK CONTAINER — header, içerik ve footer aynı hizada
   Bootstrap .container override + beanova-container alias
   ============================================================ */
.container,
.beanova-container,
.bv-container {
  width: 100% !important;
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}

/* ===== CSS VARIABLES ===== */
:root {
  --bv-bg-dark: #100b08;
  --bv-bg-dark2: #1a120d;
  --bv-bg-brown: #3a2115;
  --bv-bg-light: #f7f3ee;
  --bv-gold: #c7924e;
  --bv-gold-light: #e4ba7a;
  --bv-gold-pale: rgba(199, 146, 78, 0.12);
  --bv-gold-border: rgba(199, 146, 78, 0.25);
  --bv-text-white: #f8f5f1;
  --bv-text-dark: #2a1710;
  --bv-text-gray: #beb5ae;
  --bv-text-muted: #7a6e66;
  --bv-font-serif: "Playfair Display", Georgia, serif;
  --bv-font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --bv-radius-sm: 4px;
  --bv-radius: 8px;
  --bv-radius-lg: 12px;
  --bv-radius-full: 9999px;
  --bv-shadow-gold: 0 4px 20px rgba(199, 146, 78, 0.25);
  --bv-shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.6);
  --bv-shadow-card: 0 2px 12px rgba(0, 0, 0, 0.4);
  --bv-transition: all 0.25s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body.bv-body {
  font-family: var(--bv-font-sans);
  background-color: var(--bv-bg-dark);
  color: var(--bv-text-gray);
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--bv-gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--bv-gold-light);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bv-font-serif);
  color: var(--bv-text-white);
  font-weight: 600;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

::selection {
  background: rgba(199, 146, 78, 0.3);
  color: var(--bv-gold-light);
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bv-bg-dark2);
}
::-webkit-scrollbar-thumb {
  background: var(--bv-gold);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--bv-gold-light);
}

/* ============================================================
   DUYURU SERİDİ
   ============================================================ */
.bv-announcement {
  width: 100%;
  padding: 10px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1100;
}

.bv-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bv-announcement-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.7;
  line-height: 1;
  padding: 0 4px;
}
.bv-announcement-close:hover {
  opacity: 1;
}

/* ============================================================
   HEADER — Referans: Brewista premium dark header
   Yerleşim: Logo (180px) | Nav (sabit) | [auto boşluk] | Arama | İkonlar
   ============================================================ */
.bv-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #120d09;
  border-bottom: 1px solid var(--bv-gold-border);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.bv-header.bv-scrolled {
  background: #0e0a07;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

/* İç satır: flex, 95px yükseklik */
.bv-header-inner {
  height: 95px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ===== LOGO ===== */
.bv-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 180px;
  min-width: 180px;
  margin-right: 40px;
  color: inherit;
  text-decoration: none;
}
.bv-logo:hover,
.bv-logo:focus {
  color: inherit;
  text-decoration: none;
}

.bv-logo-img {
  max-height: 52px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

.bv-logo-text-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bv-logo-icon svg {
  display: block;
  flex-shrink: 0;
}

.bv-logo-texts {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.bv-logo-name {
  font-family: var(--bv-font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bv-gold);
  letter-spacing: 3px;
}

.bv-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 3px;
  color: var(--bv-text-muted);
  text-transform: uppercase;
  margin-top: 3px;
}

/* ===== NAVİGASYON — common/menu.twig üzerinden dinamik render ===== */
/* Wrapper: flex: 1 ile logo ve actions arasında ortalanır */
.bv-main-nav-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bv-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Ana nav listesi */
.bv-main-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.bv-nav-item {
  position: relative;
  list-style: none;
}

/* Nav linkleri: 15px, 600 weight, 14px yatay padding (~28px arası boşluk) */
.bv-nav-item > a {
  font-family: var(--bv-font-sans);
  font-size: 15px;
  font-weight: 600;
  color: #d4ccc5;
  letter-spacing: 0.3px;
  padding: 0 16px;
  height: 95px;
  line-height: 95px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
  background: transparent;
  border: none;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}

/* Aktif altın çizgi */
.bv-nav-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--bv-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.bv-nav-item > a:hover {
  color: #f8f5f1;
  text-decoration: none;
}

.bv-nav-item > a:hover::after,
.bv-nav-item.bv-active > a::after {
  transform: scaleX(1);
}

.bv-nav-item.bv-active > a {
  color: var(--bv-gold);
}

/* Dropdown ok ikonu */
.bv-nav-caret {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.bv-has-dropdown:hover .bv-nav-caret {
  transform: rotate(180deg);
}

/* Dropdown menü */
.bv-dropdown {
  display: none;
  position: absolute;
  top: 95px;
  left: 0;
  min-width: 210px;
  background: #1a120d;
  border: 1px solid var(--bv-gold-border);
  border-top: 2px solid var(--bv-gold);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  padding: 6px 0;
  list-style: none;
  margin: 0;
  z-index: 1001;
}

.bv-dropdown li {
  list-style: none;
}

.bv-dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bv-text-gray);
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}

.bv-dropdown li a:hover {
  background: rgba(199, 146, 78, 0.1);
  color: var(--bv-gold);
  padding-left: 22px;
  text-decoration: none;
}

/* Alt kategori (child) — hafif indent */
.bv-dropdown-child a {
  padding-left: 28px !important;
  font-size: 0.8125rem !important;
  color: var(--bv-text-muted) !important;
}

.bv-dropdown-child a:hover {
  padding-left: 32px !important;
  color: var(--bv-gold) !important;
}

/* "Tümünü gör" linki — dropdown'ın altında ayraçlı */
.bv-dropdown-all {
  border-top: 1px solid var(--bv-gold-border);
  margin-top: 4px;
}

.bv-dropdown-all a {
  color: var(--bv-gold) !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
}

.bv-dropdown-all a:hover {
  background: rgba(199, 146, 78, 0.15) !important;
  padding-left: 22px !important;
}

/* Mobil nav inner — menu.twig'den gelir, drawer'a JS ile taşınır */
.bv-mobile-nav-inner {
  display: none; /* Başlangıçta gizli, JS ile drawer'a taşınır */
}

/* ===== MOBİL DRAWER ===== */
.bv-mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  background: #1a120d;
  border-right: 1px solid var(--bv-gold-border);
  z-index: 1050;
  overflow-y: auto;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bv-mobile-drawer.bv-open {
  left: 0;
}

.bv-mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--bv-gold-border);
}

.bv-mobile-drawer-logo {
  text-decoration: none;
}

.bv-mobile-drawer-close {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--bv-gold-border);
  border-radius: 50%;
  color: var(--bv-text-muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.bv-mobile-drawer-close:hover {
  background: rgba(199, 146, 78, 0.1);
  color: var(--bv-gold);
  border-color: var(--bv-gold);
}

.bv-mobile-nav-wrap {
  flex: 1;
  padding: 8px 0;
}

.bv-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bv-mobile-nav-list > li > a,
.bv-mobile-parent {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  color: var(--bv-text-gray);
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
  text-decoration: none;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  cursor: pointer;
}

.bv-mobile-nav-list > li > a:hover,
.bv-mobile-parent:hover {
  color: var(--bv-gold);
  background: rgba(199, 146, 78, 0.06);
  text-decoration: none;
}

.bv-mobile-arrow {
  margin-left: auto;
  font-size: 0.875rem;
  color: var(--bv-text-muted);
  transition: transform 0.2s ease;
}

.bv-mobile-sub {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
}

.bv-mobile-sub li a {
  display: block;
  padding: 10px 20px 10px 44px;
  color: var(--bv-text-muted);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
  text-decoration: none;
}

.bv-mobile-sub li a:hover {
  color: var(--bv-gold);
  background: rgba(199, 146, 78, 0.06);
  text-decoration: none;
}

/* ===== HEADER ACTIONS (sağ grup) ===== */
/* margin-left: auto → nav'dan sonra otomatik boşluk bırakır, sağa yaslar */
.bv-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

/* İkon butonları */
.bv-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-text-gray);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 1.375rem;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  text-decoration: none;
  padding: 0;
  line-height: 1;
}

.bv-icon-btn:hover,
.bv-icon-btn:focus {
  color: var(--bv-gold);
  border-color: var(--bv-gold-border);
  background: rgba(199, 146, 78, 0.08);
  text-decoration: none;
  outline: none;
}

/* ===== ARAMA KUTUSU (masaüstü) ===== */
.bv-search-desktop {
  display: flex;
  align-items: center;
  position: relative;
}

.bv-search-desktop #search {
  width: 220px;
}

.bv-search-desktop .input-group {
  display: flex;
  align-items: center;
  position: relative;
  width: 220px;
}

/* Input: 220px genişlik, 44px yükseklik, koyu arka plan */
.bv-search-desktop .input-group .form-control {
  width: 220px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--bv-gold-border) !important;
  border-radius: 6px !important;
  color: var(--bv-text-white) !important;
  font-size: 0.875rem !important;
  padding: 0 44px 0 16px !important;
  transition:
    border-color 0.2s ease,
    background 0.2s ease !important;
  box-shadow: none !important;
}

.bv-search-desktop .input-group .form-control::placeholder {
  color: var(--bv-text-muted) !important;
}

.bv-search-desktop .input-group .form-control:focus {
  border-color: var(--bv-gold) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Sarı arama butonu gizle */
.bv-search-desktop .input-group .btn-default,
.bv-search-desktop .input-group .btn {
  display: none !important;
}

/* Büyüteç ikonu — input'un sağ içine pseudo-element ile */
.bv-search-desktop .input-group::after {
  content: "\f002";
  font-family: "FontAwesome";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bv-gold);
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 5;
}

/* Mobil arama toggle */
.bv-search-toggle {
  display: none;
}

/* Mobil arama paneli */
.bv-mobile-search {
  display: none;
  background: #1a120d;
  border-top: 1px solid var(--bv-gold-border);
  padding: 12px 0;
}
.bv-mobile-search.open {
  display: block;
}
.bv-mobile-search #search {
  width: 100%;
}

.bv-mobile-search .input-group .form-control {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid var(--bv-gold-border) !important;
  border-right: none !important;
  color: var(--bv-text-white) !important;
  border-radius: 4px 0 0 4px !important;
  height: 44px !important;
  font-size: 0.875rem !important;
}
.bv-mobile-search .input-group .form-control::placeholder {
  color: var(--bv-text-muted) !important;
}
.bv-mobile-search .input-group .form-control:focus {
  border-color: var(--bv-gold) !important;
  box-shadow: none !important;
  outline: none !important;
}
.bv-mobile-search .input-group .btn {
  background: var(--bv-gold) !important;
  border: 1px solid var(--bv-gold) !important;
  color: var(--bv-text-dark) !important;
  border-radius: 0 4px 4px 0 !important;
  height: 44px !important;
  padding: 0 14px !important;
  display: flex !important;
  align-items: center !important;
}

/* ===== HESAP DROPDOWN ===== */
.bv-account {
  position: relative;
}

.bv-account-dropdown {
  background-color: #1a120d !important;
  border: 1px solid var(--bv-gold-border) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
  min-width: 240px !important;
  padding: 8px 0 !important;
}

.bv-account-dropdown li a {
  color: var(--bv-text-gray) !important;
  padding: 14px 22px !important;
  font-size: 1.25rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  transition: all 0.2s ease !important;
  background: transparent !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
}

.bv-account-dropdown li a .fa {
  font-size: 1.125rem !important;
  width: 20px !important;
  text-align: center !important;
  color: var(--bv-gold) !important;
  flex-shrink: 0 !important;
}

.bv-account-dropdown li a:hover {
  background: rgba(199, 146, 78, 0.1) !important;
  color: var(--bv-gold) !important;
  padding-left: 26px !important;
}

.bv-account-dropdown .divider {
  background-color: var(--bv-gold-border) !important;
  margin: 4px 0 !important;
}

/* ===== SEPET ===== */
.bv-cart-btn #cart > .btn {
  background: rgba(199, 146, 78, 0.1);
  border: 1.5px solid var(--bv-gold);
  color: var(--bv-gold);
  border-radius: var(--bv-radius-full);
  padding: 0 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  transition: var(--bv-transition);
  white-space: nowrap;
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.bv-cart-btn #cart > .btn:hover {
  background: var(--bv-gold);
  border-color: var(--bv-gold);
  color: var(--bv-text-dark);
}

/* Sepet butonundaki .fa ikonu */
.bv-cart-btn #cart > .btn .fa {
  font-size: 1.125rem;
}

.bv-cart-btn #cart .dropdown-menu,
.bv-cart-dropdown {
  background-color: #1a120d !important;
  border: 1px solid var(--bv-gold-border) !important;
  border-radius: 6px !important;
  min-width: 300px !important;
  right: 0 !important;
  left: auto !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
  padding: 0 !important;
}

/* Tüm tablo ve satır arka planlarını sıfırla */
.bv-cart-dropdown *,
.bv-cart-dropdown table,
.bv-cart-dropdown tbody,
.bv-cart-dropdown thead,
.bv-cart-dropdown tfoot,
.bv-cart-dropdown tr,
.bv-cart-dropdown td,
.bv-cart-dropdown th,
.bv-cart-dropdown li,
.bv-cart-dropdown div,
.bv-cart-dropdown p {
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
}

/* Ürün tablosu */
.bv-cart-table {
  width: 100% !important;
  margin: 0 !important;
  border-collapse: collapse !important;
}

.bv-cart-table td {
  color: var(--bv-text-gray) !important;
  padding: 10px 8px !important;
  vertical-align: middle !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}

.bv-cart-table td a {
  color: var(--bv-text-white) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
}

.bv-cart-table td a:hover {
  color: var(--bv-gold) !important;
}

.bv-cart-table td small {
  color: var(--bv-text-muted) !important;
  font-size: 0.75rem !important;
}

/* Toplam tablosu */
.bv-cart-total-table {
  width: 100% !important;
  margin: 0 !important;
  border-collapse: collapse !important;
}

.bv-cart-total-table td {
  color: var(--bv-text-gray) !important;
  padding: 8px 12px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
}

.bv-cart-total-table td strong {
  color: var(--bv-gold) !important;
  font-weight: 600 !important;
}

/* Sepete Git / Kasaya Git butonları */
.bv-cart-actions {
  padding: 10px 12px !important;
  margin: 0 !important;
  border-top: 1px solid rgba(199, 146, 78, 0.2) !important;
  display: flex !important;
  gap: 12px !important;
  justify-content: center !important;
}

.bv-cart-link {
  color: var(--bv-gold) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 12px !important;
  border: 1px solid var(--bv-gold-border) !important;
  border-radius: 4px !important;
  transition: all 0.2s ease !important;
}

.bv-cart-link:hover {
  background: rgba(199, 146, 78, 0.15) !important;
  color: var(--bv-gold-light) !important;
  border-color: var(--bv-gold) !important;
  text-decoration: none !important;
}

.bv-cart-link-checkout {
  background: rgba(199, 146, 78, 0.1) !important;
}

.bv-cart-empty {
  color: var(--bv-text-muted) !important;
  padding: 16px !important;
  font-size: 0.875rem !important;
}

/* img-thumbnail koyu temaya uyarla */
.bv-cart-table .img-thumbnail {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  max-width: 60px !important;
  max-height: 60px !important;
}

/* Para birimi & Dil */
.bv-currency-lang {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bv-currency-lang .btn-link,
.bv-currency-lang .btn-link:hover,
.bv-currency-lang .btn-link:focus {
  color: var(--bv-text-muted);
  text-decoration: none;
  padding: 0 4px;
  font-size: 0.75rem;
}
.bv-currency-lang .btn-link:hover {
  color: var(--bv-gold);
}

.bv-currency-lang .dropdown-menu {
  background-color: #1a120d !important;
  border: 1px solid var(--bv-gold-border) !important;
  border-radius: 6px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

.bv-currency-lang .dropdown-menu li a {
  color: var(--bv-text-gray) !important;
  padding: 6px 14px !important;
  font-size: 0.875rem !important;
}
.bv-currency-lang .dropdown-menu li a:hover {
  background: rgba(199, 146, 78, 0.1) !important;
  color: var(--bv-gold) !important;
}

/* ===== HAMBURGER ===== */
.bv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.bv-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bv-text-gray);
  border-radius: 2px;
  transition: var(--bv-transition);
}

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

.bv-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}
.bv-nav-overlay.open {
  display: block;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.bv-hero-section {
  position: relative;
  overflow: hidden;
}

/* Slider wrapper: sabit yükseklik, tüm slaytlar absolute overlay */
.bv-hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

/* Her slayt tam alanı kaplar, opacity ile geçiş */
.bv-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  z-index: 1;
}

/* Aktif slayt üstte görünür */
.bv-slide.active {
  opacity: 1;
  z-index: 2;
}

.bv-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bv-slide .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 120px;
  width: 100%;
}

.bv-slide-content {
  max-width: 600px;
}

.bv-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(199, 146, 78, 0.15);
  border: 1px solid var(--bv-gold-border);
  border-radius: var(--bv-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bv-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bv-hero-title {
  font-family: var(--bv-font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--bv-text-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.bv-hero-desc {
  font-size: 1rem;
  color: rgba(248, 245, 241, 0.8);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

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

.bv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--bv-gold);
  color: var(--bv-text-dark);
  border-radius: var(--bv-radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--bv-transition);
  border: 2px solid var(--bv-gold);
  text-decoration: none;
}

.bv-btn-primary:hover {
  background: var(--bv-gold-light);
  border-color: var(--bv-gold-light);
  color: var(--bv-text-dark);
  transform: translateY(-2px);
  box-shadow: var(--bv-shadow-gold);
  text-decoration: none;
}

/* Slider Controls */
.bv-slider-prev,
.bv-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 11, 8, 0.6);
  border: 1px solid var(--bv-gold-border);
  color: var(--bv-text-white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--bv-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bv-slider-prev {
  left: 20px;
}
.bv-slider-next {
  right: 20px;
}

.bv-slider-prev:hover,
.bv-slider-next:hover {
  background: var(--bv-gold);
  border-color: var(--bv-gold);
  color: var(--bv-text-dark);
}

.bv-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}

.bv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--bv-transition);
  padding: 0;
}

.bv-dot.active {
  background: var(--bv-gold);
  transform: scale(1.2);
}

/* Hero Features Bar — slider'ın altında, section içinde */
.bv-hero-features {
  position: relative;
  z-index: 5;
  background: rgba(16, 11, 8, 0.92);
  border-top: 1px solid var(--bv-gold-border);
  backdrop-filter: blur(8px);
}

.bv-features-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.bv-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  flex: 1;
  justify-content: center;
}

.bv-feature-item .fa {
  font-size: 1.5rem;
  color: var(--bv-gold);
  flex-shrink: 0;
}

.bv-feature-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bv-text-white);
  line-height: 1.3;
}

.bv-feature-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--bv-text-gray);
  line-height: 1.3;
}

.bv-feature-divider {
  width: 1px;
  height: 40px;
  background: var(--bv-gold-border);
  flex-shrink: 0;
}

/* ============================================================
   ANA ICERIK (Moduller)
   ============================================================ */
#common-home {
  background: var(--bv-bg-light);
  padding: 48px 0;
}

#common-home h3,
#common-home .module-title {
  font-family: var(--bv-font-serif);
  font-size: 1.75rem;
  color: var(--bv-text-dark);
  margin-bottom: 8px;
  text-align: center;
}

/* ============================================================
   KATEGORI KARTLARI
   ============================================================ */
.bv-categories-section {
  background: var(--bv-bg-light);
  padding: 56px 0;
}

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

.bv-section-header h2 {
  font-family: var(--bv-font-serif);
  font-size: 2rem;
  color: var(--bv-text-dark);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bv-section-divider {
  width: 48px;
  height: 2px;
  background: var(--bv-gold);
  margin: 0 auto;
}

.bv-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.bv-cat-card {
  background: #fff;
  border-radius: var(--bv-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--bv-transition);
  display: block;
  text-decoration: none;
  color: inherit;
}

.bv-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
}

.bv-cat-card:hover .bv-cat-img img {
  transform: scale(1.05);
}

.bv-cat-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bv-bg-light);
}

.bv-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bv-cat-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bv-cat-name {
  font-family: var(--bv-font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bv-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bv-cat-arrow {
  color: var(--bv-gold);
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}

.bv-cat-card:hover .bv-cat-arrow {
  transform: translateX(4px);
}

/* ============================================================
   SLIDER FALLBACK GRADİENTLER
   hero-bg*.jpg yüklenmediğinde her slayt farklı koyu kahve tonu gösterir
   ============================================================ */

/* Slayt 1 — Koyu espresso tonu */
.bv-slide-1 {
  background-color: #1a0e08;
  background-image:
    radial-gradient(
      ellipse at 70% 50%,
      rgba(58, 33, 21, 0.8) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #100b08 0%, #2a1710 50%, #1a0e08 100%);
}

/* Slayt 2 — Koyu amber/kahve tonu */
.bv-slide-2 {
  background-color: #1c1008;
  background-image:
    radial-gradient(
      ellipse at 30% 60%,
      rgba(74, 42, 18, 0.7) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, #0e0a06 0%, #3a2115 45%, #1c1008 100%);
}

/* Slayt 3 — Koyu çikolata tonu */
.bv-slide-3 {
  background-color: #160d07;
  background-image:
    radial-gradient(
      ellipse at 60% 40%,
      rgba(50, 28, 12, 0.75) 0%,
      transparent 58%
    ),
    linear-gradient(135deg, #0c0806 0%, #2e1a0e 48%, #160d07 100%);
}

/* ============================================================
   GUVEN ALANI - Detaylar stylesheet-extra.css dosyasındadır
   ============================================================ */
