/* ===== CROFFLE CAFE - TEMİZ CSS ===== */

/* CSS Değişkenleri */
:root {
  --brand: #7b3e19;
  --brand-2: #e4b36b;
  --bg: #0f0f10;
  --text: #f4f4f5;
  --muted: #b9b9c0;
  --topbar-h: 36px;
  --nav-h: 70px;
}

/* Genel Stiller */
html, body {
  background: #ffffff;
  color: #333333;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Hero video için body genişliği */
body.is-home {
  overflow-x: hidden;
}

.brand { 
  color: var(--brand-2) !important; 
}

/* ===== NAVBAR STİLLERİ ===== */

/* Logo responsive düzeltmesi */
.navbar-brand img {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}

/* Footer logo: navbar ile aynı hizalı boyut */
.footer-logo {
  height: 60px;
  width: auto;
}

/* Navbar responsive düzeltmesi */
.navbar {
  padding: 0.5rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobil navbar düzeltmesi */
@media (max-width: 991.98px) {
  .navbar {
    padding: 0.75rem 0;
    min-height: auto;
    text-align: center;
  }
  
  .navbar-brand {
    display: flex;
    align-items: center;
  }
  
  .navbar-brand img {
    height: 70px;
    width: auto;
    max-width: 150px;
  }
  
  .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-nav {
    gap: 0.5rem !important;
    text-align: center;
  }
  
  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
}

/* Offcanvas mobil menü stilleri */
@media (max-width: 991.98px) {
  .offcanvas.offcanvas-end.bg-dark {
    width: 80%;
    max-width: 360px;
    background: #0b0b0b !important; /* Tam opak koyu arka plan */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .offcanvas .nav-link {
    color: #fff !important;
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-weight: 600;
  }
  .offcanvas .nav-link:last-child {
    border-bottom: 0;
  }
  .offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,.08);
    align-items: center;
    gap: 12px;
  }
  .offcanvas .offcanvas-title { color: #fff; font-size: 1rem; font-weight: 600; }
  .offcanvas .navbar-brand img { height: 42px; }
  .offcanvas .nav-link:hover { background: rgba(255,255,255,.06); border-radius: 6px; }
  .offcanvas .text-white-50 { color: rgba(255,255,255,.7) !important; }
  /* İçerikte kaydırma olmasın, hepsi doğrudan görünsün */
  .offcanvas .offcanvas-body { overflow-y: visible !important; flex: 0 0 auto; }
  .offcanvas { padding-bottom: 12px; }
}

/* Offcanvas backdrop koyulaştırma (menü açıldığında arka plan) */
.offcanvas-backdrop { background-color: #000; }
.offcanvas-backdrop.show { opacity: 0.9; }

/* Çok küçük ekranlar için */
@media (max-width: 576px) {
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand img {
    height: 65px;
    max-width: 120px;
  }

  .footer-logo {
    height: 45px;
  }
  
  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 1rem;
  }
  
  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}

/* Mobil navbar container düzeltmesi */
@media (max-width: 991.98px) {
  .navbar .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar-brand {
    flex: 0 0 auto;
  }
  
  .navbar-toggler {
    flex: 0 0 auto;
    order: 2;
  }
  
  .navbar-collapse {
    flex: 1 1 100%;
    order: 3;
    width: 100%;
  }
}
.nav-dark {
  background: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  transition: background-color 0.4s ease, padding 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 0.25rem;
  padding-bottom: 0.75rem;
}

.nav-dark.scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

/* Sayfa durumları */
body.is-home .nav-dark { 
  background: transparent; 
  top: var(--topbar-h);
}

body.is-home .nav-dark.scrolled { 
  background: rgba(0,0,0,.65) !important; 
  top: 0;
}

body:not(.is-home) .nav-dark { 
  background: rgba(0,0,0,.92); 
  top: 0;
}

/* Franchise sayfasında navbar resimdeki gibi koyu */
body.is-franchise .nav-dark {
  background: rgba(0,0,0,.85) !important;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,.15);
}

body.is-franchise .nav-dark.scrolled {
  background: rgba(0,0,0,.7) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* Franchise sayfası arka plan rengi */
body.is-franchise {
  background: linear-gradient(135deg, #fff7ea 0%, #ffe2b8 100%);
  min-height: 100vh;
}

/* İletişim sayfasında navbar franchise ile aynı koyulukta */
body.is-contact .nav-dark {
  background: rgba(0,0,0,.85) !important;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,.15);
}

body.is-contact .nav-dark.scrolled {
  background: rgba(0,0,0,.7) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* İletişim sayfası arka plan rengi */
body.is-contact {
  background: #ffffff;
  min-height: 100vh;
}

/* Çerez Bildirimi Stilleri */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(123, 62, 25, 0.95), rgba(139, 69, 19, 0.95));
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
}

.cookie-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.cookie-text {
  flex: 1;
  color: #fff;
}

.cookie-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.cookie-description {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}

.cookie-link:hover {
  color: #f8f9fa;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cookie-accept {
  background: #fff;
  color: #7b3e19;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept:hover {
  background: #f8f9fa;
  color: #5a2d0f;
  transform: translateY(-1px);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .cookie-consent {
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 15px;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-decline,
  .cookie-accept {
    flex: 1;
    max-width: 120px;
  }
}

/* Çerez Politikası Sayfası Stilleri */
.cookie-policy-content {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin: 20px 0;
}

.policy-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.policy-section:last-child {
  border-bottom: none;
}

.cookie-type {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  border-left: 4px solid #7b3e19;
}

.contact-info {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  color: #666;
}

.contact-info i {
  color: #7b3e19;
  width: 20px;
}

.policy-footer {
  background: linear-gradient(135deg, #7b3e19, #8b4513);
  color: white;
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
}

.policy-footer .btn {
  background: white;
  color: #7b3e19;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.policy-footer .btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* KVKK Aydınlatma Metni Stilleri */
.kvkk-content {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin: 20px 0;
}

.kvkk-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.kvkk-section:last-child {
  border-bottom: none;
}

.contact-info {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  color: #666;
}

.data-category {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  border-left: 4px solid #7b3e19;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.purpose-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.purpose-item:hover {
  border-color: #7b3e19;
  transform: translateY(-2px);
}

.purpose-item i {
  font-size: 2rem;
  color: #7b3e19;
  margin-bottom: 10px;
}

.purpose-item h6 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #7b3e19;
}

.purpose-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.security-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  border-left: 4px solid #7b3e19;
}

.security-item i {
  font-size: 1.5rem;
  color: #7b3e19;
  flex-shrink: 0;
}

.security-item h6 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #7b3e19;
}

.security-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.right-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.right-item:hover {
  background: #e9ecef;
  border-color: #7b3e19;
}

.right-item i {
  color: #7b3e19;
  font-size: 1.2rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  border-left: 4px solid #7b3e19;
}

.contact-method i {
  font-size: 1.5rem;
  color: #7b3e19;
  flex-shrink: 0;
}

.contact-method h6 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #7b3e19;
}

.contact-method p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.kvkk-footer {
  background: linear-gradient(135deg, #7b3e19, #8b4513);
  color: white;
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
}

.kvkk-footer .btn {
  background: white;
  color: #7b3e19;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.kvkk-footer .btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .purpose-grid,
  .security-measures,
  .rights-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .kvkk-content {
    padding: 20px;
  }
}

/* Footer Yasal Linkler */
.legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #fff;
  text-decoration: underline;
}

.separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.dev-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.dev-link:hover {
  color: #fff;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .legal-links {
    justify-content: center;
    margin-top: 10px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 5px;
  }
  
  .separator {
    display: none;
  }
  
  /* SSS Widget mobil pozisyonu */
  .faq-widget {
    bottom: 60px;
    right: 10px;
  }
}

/* Franchise Başarı Bildirimi */
.success-notification {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #c3e6cb;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
  animation: slideDown 0.5s ease-out;
}

/* Arama sonuçlarında vurgulama */
.search-highlight {
  background: linear-gradient(135deg, rgba(228,179,107,.35), rgba(139,69,19,.25));
  padding: 0 .15rem;
  border-radius: 3px;
  box-decoration-break: clone;
  transition: background-color .4s ease, color .4s ease, opacity .4s ease;
}

.search-highlight.fade {
  background: rgba(228,179,107,.15);
  color: inherit;
  opacity: .6;
}

.success-notification .alert-heading {
  color: #155724;
  font-weight: 600;
}

.success-notification p {
  color: #0f5132;
  font-size: 0.95rem;
}

.success-notification .fa-check-circle {
  color: #28a745;
}

.success-notification .btn-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #155724;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.success-notification .btn-close:hover {
  opacity: 1;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* İçerik padding ayarları */
body:not(.is-home) main { 
  padding-top: 96px; 
}

body.is-menu main { 
  padding-top: 120px; 
}

body.is-corporate main,
body.is-contact main { 
  padding-top: 100px; 
}

body:not(.is-home) .site-footer { 
  margin-top: 20px; 
}

/* Navbar linkler */
.nav-link { 
  color: #ffffff !important; 
  opacity: .9; 
  font-size: 1rem;
  font-weight: 500;
}

.nav-link:hover { 
  opacity: 1; 
}

/* Smooth scroll offset düzeltmesi */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + var(--nav-h) + 20px);
}

/* Nav arama stilleri */
.nav-search { 
  position: relative; 
  display: flex; 
  align-items: center; 
  flex-direction: row-reverse;
}

.nav-search-input {
  width: 0; 
  opacity: 0; 
  transform: translateX(20px);
  transition: width .3s ease, opacity .3s ease, transform .3s ease;
  background: rgba(255,255,255,.15); 
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; 
  height: 36px; 
  border-radius: 999px; 
  padding: 0 .75rem;
  font-size: .9rem;
}

.nav-search.open .nav-search-input { 
  width: 250px; 
  opacity: 1; 
  transform: translateX(0); 
  margin-right: 8px;
}

.nav-search-icon {
  background: rgba(255,255,255,.1); 
  border: 1px solid rgba(255,255,255,.25); 
  color: #fff; 
  font-size: 1rem;
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  width: 36px; 
  height: 36px; 
  border-radius: 50%;
  transition: all .2s ease;
  cursor: pointer;
}

.nav-search-icon:hover { 
  background: rgba(255,255,255,.2); 
  border-color: rgba(255,255,255,.4);
  transform: scale(1.05);
}

/* Buton stilleri */
.btn-primary {
  --bs-btn-bg: var(--brand-2);
  --bs-btn-border-color: var(--brand-2);
  --bs-btn-hover-bg: #f1c37f;
  --bs-btn-hover-border-color: #f1c37f;
  --bs-btn-color: #212529;
}

.btn-outline-light {
  --bs-btn-hover-bg: rgba(255,255,255,.2);
  --bs-btn-hover-border-color: rgba(255,255,255,.4);
}

/* ===== TOPBAR STİLLERİ ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  color: #fff;
  height: var(--topbar-h);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
}

.topbar.hide-topbar {
  transform: translateY(-100%);
}

.topbar .topbar-item, .topbar .topbar-item a { 
  color: #f0f0f0; 
}

.topbar .topbar-item { 
  color: #e9e9e9; 
  font-size: .9rem; 
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar .topbar-item a { 
  color: inherit; 
  text-decoration: none; 
}

.topbar .topbar-item a:hover { 
  text-decoration: underline; 
}

/* Dil menüsü stilleri */
.lang-chip { 
  color:#fff; 
  font-size:.75rem; 
  background: rgba(255,255,255,.1); 
  border:1px solid rgba(255,255,255,.25); 
  padding:.15rem .4rem; 
  border-radius:999px; 
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  height: 24px;
}

.lang-chip:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
}

.tr-flag-svg { 
  display:inline-flex; 
  align-items:center; 
  justify-content:center; 
  width: 16px;
  height: 16px;
}

.lang-menu {
  position:absolute; 
  right:0; 
  top:calc(100% + 2px); 
  min-width: 120px;
  background:rgba(0,0,0,0.95); 
  border:1px solid rgba(255,255,255,0.2); 
  border-radius:6px; 
  box-shadow:0 4px 12px rgba(0,0,0,.4);
  padding:.4rem; 
  z-index:1200;
  backdrop-filter: blur(10px);
  font-size: .75rem;
}

/* ===== HERO BÖLÜMÜ ===== */
.hero {
  position: relative;
  min-height: calc(100vh + 80px);
  display: flex; 
  align-items: center;
  overflow: hidden; 
  margin: 0; 
  padding: 0;
  padding-top: calc(var(--topbar-h) + var(--nav-h));
}

/* Hero video için özel ayarlar - tam ekran */
.hero.hero-video {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: 0;
  padding-right: 0;
}

.hero-video { 
  background: #0f0f10 !important; 
  position: relative !important;
  width: 100vw !important;
  height: 100vh !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  left: 0 !important;
  right: 0 !important;
  max-width: 100vw !important;
}

/* Video optimizasyonu - Tüm videolar için TAM EKRAN KAPLAMA */
.hero-video video,
.hero-video .hero-bg-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  object-fit: cover !important;
  object-position: center !important;
  z-index: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Video play butonu */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(123, 62, 25, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  border: 3px solid #e4b36b;
}

.video-play-btn:hover {
  background: rgba(123, 62, 25, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn i {
  color: #e4b36b;
  font-size: 24px;
  margin-left: 4px;
}

.video-play-btn.playing {
  opacity: 0;
  pointer-events: none;
}

/* Lazy loading için görseller */
img[data-src] {
  opacity: 0;
  transition: opacity 0.3s;
}

img[data-src].loaded {
  opacity: 1;
}

/* Görsel optimizasyonu */
img {
  max-width: 100%;
  height: auto;
  /* WebP desteği için */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero-bg-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  object-fit: cover !important;
  object-position: center !important;
  z-index: 1;
  transform: none !important;
}

/* Hero section için tam genişlik - container'dan taşır */
section.hero.hero-video {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  left: 0 !important;
  right: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Container'ı bypass et */
section.hero.hero-video > * {
  max-width: 100vw !important;
}

/* Video için özel - TAM GENİŞLİK - YAN BOŞLUK YOK - TÜM SEÇİCİLER */
section.hero.hero-video .hero-bg-video,
section.hero.hero-video video.hero-bg-video,
.hero-video .hero-bg-video,
.hero-video video,
video.hero-bg-video,
.hero.hero-video video,
.hero.hero-video .hero-bg-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  object-fit: cover !important;
  object-position: center !important;
  z-index: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  display: block !important;
}

/* Mobil cihazlar için video tam ekran kaplama */
@media (max-width: 768px) {
  .hero-bg-video,
  .hero-video video {
    width: 100vw !important;
    height: 100vh !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
  }
  
  .hero.hero-video {
    width: 100vw !important;
  }
}

.hero-overlay {
  position: absolute; 
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0,0,0,.6), rgba(123,62,25,.3));
  z-index: 2;
}

.hero-content { 
  position: relative; 
  z-index: 3; 
  text-align: center; 
  color: white; 
}

.hero .lead { 
  color: var(--muted); 
  max-width: 680px; 
  margin: 0 auto 2rem; 
}

.hero-buttons { 
  margin-top: 2rem; 
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

/* Bootstrap margin class'larını iptal et */
.hero-buttons .btn.me-3 {
  margin-right: 0 !important;
  margin-bottom: 1rem !important;
}

/* Desktop görünümde buton eşitliği */
.hero-buttons .btn {
  width: 100% !important;
  max-width: 280px !important;
  min-width: 280px !important;
  padding: 0.8rem 1.5rem !important;
  font-size: 1rem !important;
  font-weight: 400 !important; /* normal font-weight */
  letter-spacing: .3px !important; /* görseldeki gibi hafif aralık */
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.25 !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
  margin-bottom: 1rem !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* Mobilde butonlar dikey sıralama */
@media (max-width: 768px) {
  .hero-buttons {
    gap: 12px !important;
    margin-top: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
  
  .hero-buttons .btn {
    width: 100% !important;
    max-width: 280px !important;
    min-width: 280px !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    letter-spacing: .3px !important;
  }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
  .hero-buttons .btn {
    max-width: 260px !important;
    min-width: 260px !important;
    padding: 11px 18px !important;
    font-size: .98rem !important;
  }
}

/* ===== ÖNE ÇIKAN ÜRÜNLER BÖLÜMÜ ===== */
.products-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  background-size: 200% 200%;
  animation: productsGradient 4s ease-in-out infinite;
}

@keyframes productsGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animated-text {
  background: linear-gradient(45deg, #7b3e19, #e4b36b, #7b3e19);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradient 3s ease-in-out infinite;
}

@keyframes textGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ===== ÜRÜN KARTLARI ===== */
.product-card {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.product-card .card-img-top { 
  object-fit: cover; 
  height: 280px; 
  width: 100%;
  border-radius: 12px 12px 0 0;
}

/* Ürün vitrin kartları */
.product-showcase-card {
  position: relative; 
  border-radius: 20px; 
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(123, 62, 25, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer; 
  background: white; 
  min-height: 0;
  opacity: 0; 
  transform: translateY(50px) scale(0.9);
  animation: productCardEntry 0.8s ease forwards; 
  margin-bottom: 0;
}

.product-showcase-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(123, 62, 25, 0.25);
}

.product-image {
  width: 100%; 
  height: 320px; 
  position: relative; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  padding: 1rem; 
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  overflow: hidden;
}

.product-image img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center; 
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.96) contrast(1.06);
  box-shadow: 0 8px 20px rgba(123, 62, 25, 0.1);
}

.product-showcase-card:hover .product-image img {
  transform: scale(1.03);
  filter: brightness(1) contrast(1.12);
  box-shadow: 0 12px 25px rgba(123, 62, 25, 0.2);
}

.product-footer { 
  padding: 1rem; 
  text-align: center; 
}

.product-name { 
  font-size: 1.3rem; 
  font-weight: 700; 
  margin-bottom: 0; 
  color: #7b3e19; 
  letter-spacing: 0.5px; 
}

.btn-explore {
  background: linear-gradient(135deg, #e4b36b, #7b3e19); 
  color: #fff; 
  border: none;
  padding: 0.5rem 1rem; 
  border-radius: 999px; 
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(123,62,25,.2);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(123,62,25,.28);
  filter: brightness(1.05);
}

/* ===== MENÜ SAYFASI ===== */
.menu-category {
  background: linear-gradient(180deg, #ffffff, #faf6f0);
  border: 1px solid #f1e3cf; 
  border-radius: 16px;
  padding: 1rem 1.25rem; 
  box-shadow: 0 8px 20px rgba(123,62,25,.08);
}

.menu-category-header { 
  display: flex; 
  align-items: center; 
  gap: .6rem; 
}

.menu-category-icon {
  width: 36px; 
  height: 36px; 
  border-radius: 50%;
  background: linear-gradient(135deg, #e4b36b, #7b3e19); 
  color: #fff;
  display: flex; 
  align-items: center; 
  justify-content: center;
  box-shadow: 0 6px 14px rgba(123,62,25,.25);
}

.menu-card {
  border: 1px solid #f1e3cf; 
  background: #fff; 
  border-radius: 16px; 
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.menu-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 16px 36px rgba(123,62,25,.18); 
}

.menu-image-wrapper { 
  position: relative; 
}

.menu-image-wrapper img { 
  height: 280px; 
  width: 100%;
  object-fit: cover; 
  object-position: center;
}

.menu-chip {
  position: absolute; 
  top: 10px; 
  left: 10px;
  background: rgba(0,0,0,.65); 
  color: #fff; 
  font-size: .75rem;
  padding: .25rem .6rem; 
  border-radius: 999px; 
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,.2);
}

.menu-title { 
  color: #7b3e19; 
  font-weight: 700; 
}

.menu-desc { 
  color: #6b6b6b; 
  min-height: 40px; 
}

.menu-footer { 
  background: linear-gradient(180deg, #fff, #f9f4ec); 
  border-top: 1px solid #f1e3cf; 
}

.menu-price { 
  color: #7b3e19; 
  font-weight: 700; 
  font-size: 1rem; 
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0c0c0d;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
}

.site-footer .footer-title { 
  color:#fff; 
  font-weight:700; 
  margin-bottom:.5rem; 
  font-size: 0.95rem;
}

.site-footer .footer-links { 
  list-style:none; 
  padding:0; 
  margin:0; 
  display:flex; 
  flex-direction:column; 
  gap:.25rem; 
}

.site-footer .footer-links a { 
  color:#cfcfd4; 
  text-decoration:none; 
}

.site-footer .footer-links a:hover { 
  color:#fff; 
  text-decoration:underline; 
}

.site-footer .footer-contact { 
  list-style:none; 
  padding:0; 
  margin:0; 
  display:flex; 
  flex-direction:column; 
  gap:.25rem; 
}

.site-footer .footer-contact i { 
  width:18px; 
  text-align:center; 
  margin-right:.35rem; 
}

.site-footer .footer-contact a { 
  color:#cfcfd4; 
  text-decoration:none; 
}

.site-footer .footer-contact a:hover { 
  color:#fff; 
  text-decoration:underline; 
}

.site-footer .footer-social { 
  display:flex; 
  gap:.5rem; 
  margin-top:.5rem; 
}

.site-footer .footer-social a {
  width:28px; 
  height:28px; 
  display:inline-flex; 
  align-items:center; 
  justify-content:center;
  border-radius:50%; 
  background:rgba(255,255,255,.06); 
  color:#fff;
}

.site-footer .footer-social a:hover { 
  background:rgba(255,255,255,.12); 
}

.site-footer .footer-bottom { 
  background:#0b0b0c; 
  border-top:1px solid rgba(255,255,255,.08); 
}

/* Footer üst çizgi ve içerik arasında nefes alanı */
.site-footer .row.align-items-center { 
  padding-top: .5rem; 
}

/* Footer boyutunu küçült */
.site-footer .container { 
  padding-top: 2rem !important; 
  padding-bottom: 2rem !important; 
}
.site-footer .row.g-4 { 
  --bs-gutter-y: 0.75rem; 
  --bs-gutter-x: 1.25rem; 
}

.site-footer .dev-link { 
  color:#cfcfd4; 
  text-decoration:none; 
  letter-spacing:2px; 
  text-transform:lowercase; 
}

.site-footer .dev-link:hover { 
  color:#fff; 
}

/* ===== ANİMASYONLAR ===== */
.fade-in { 
  opacity: 0; 
  transform: translateY(30px); 
  transition: opacity 0.6s ease, transform 0.6s ease; 
}

.fade-in.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

.slide-in-left { 
  opacity: 0; 
  transform: translateX(-50px); 
  transition: opacity 0.8s ease, transform 0.8s ease; 
}

.slide-in-left.visible { 
  opacity: 1; 
  transform: translateX(0); 
}

.slide-in-right { 
  opacity: 0; 
  transform: translateX(50px); 
  transition: opacity 0.8s ease, transform 0.8s ease; 
}

.slide-in-right.visible { 
  opacity: 1; 
  transform: translateX(0); 
}

/* ===== GALLERY SLIDER ===== */
.gallery-slider { 
  position: relative; 
}

.gallery-viewport { 
  overflow: hidden; 
  position: relative; /* okların üstte kalması için bağlam */
}

.gallery-track { 
  display: flex; 
  gap: 12px; 
  will-change: transform; 
}

.gallery-item { 
  flex: 0 0 25%; 
}

.gallery-thumb { 
  height: 420px; 
  object-fit: cover;
  border-radius: 12px;
  user-select: none; 
}

.gallery-viewport, .gallery-thumb { 
  cursor: grab; 
}

.gallery-viewport:active, .gallery-thumb:active { 
  cursor: grabbing; 
}

.gallery-arrow {
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%);
  border: none; 
  background: rgba(123,62,25,.7); 
  color: #fff;
  width: 40px; 
  height: 40px; 
  border-radius: 50%;
  display: flex;
  align-items: center; 
  justify-content: center;
  z-index: 10; /* görsellerin üstünde */
  box-shadow: 0 6px 16px rgba(0,0,0,.3);
  pointer-events: auto;
}

.gallery-arrow.left { 
  left: 10px; 
}

.gallery-arrow.right { 
  right: 10px; 
}

/* ===== FRANCHISE STİLLERİ ===== */

/* Franchise Ana Başlık */
.franchise-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #7b3e19;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}

.franchise-main-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e4b36b, #7b3e19);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(228, 179, 107, 0.3);
}
.fr-hero {
  margin: 0 5%;
  padding: 15px 0;
  border-radius: 30px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(228,179,107,.25) 0%, rgba(228,179,107,0) 55%),
    radial-gradient(120% 120% at 100% 0%, rgba(154,79,29,.25) 0%, rgba(154,79,29,0) 55%),
    linear-gradient(135deg, #3a210f 0%, #7b3e19 45%, #3a210f 100%);
  background-size: 120% 120%, 120% 120%, 200% 200%;
  animation: frHeroGradient 3s ease-in-out infinite;
}

@keyframes frHeroGradient {
  0% {
    background-position: 0% 0%, 100% 0%, 0% 50%;
  }
  50% {
    background-position: 20% 10%, 80% 5%, 100% 50%;
  }
  100% {
    background-position: 0% 0%, 100% 0%, 0% 50%;
  }
}

/* Franchise form stilleri */
.fr-form {
  position: relative;
}

.fr-form.bg-white {
  margin-top: -10px;
}

.fr-form::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 16px;
  background: linear-gradient(45deg, #e4b36b, #7b3e19, #e4b36b);
  filter: blur(10px);
  opacity: .25;
}

.fr-form .form-control {
  border-radius: 12px;
}

/* Yatırım Bütçesi select oku */
#budget.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a592f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  padding-right: 2.5rem;
}

#budget.form-control:focus {
  border-color: #e4b36b;
  box-shadow: 0 0 0 .2rem rgba(228,179,107,.25);
}

.fr-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

.fr-form .form-label {
  font-weight: 600;
  color: #7b3e19;
}

/* CTA buton stilleri */
.cta-btn {
  background: linear-gradient(135deg, #e4b36b, #7b3e19);
  color: #fff;
  border: none;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(123,62,25,.2);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(123,62,25,.28);
  filter: brightness(1.05);
}

.cta-btn:active {
  transform: translateY(0);
}

/* Franchise CTA */
.franchise-cta {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
}

/* Başvuru süreci slider */
.process-band {
  background: linear-gradient(135deg, #fff2dc, #f8e6d1, #fff2dc);
  background-size: 200% 200%;
  border: 1px solid #f1e3cf;
  padding: 30px 0 52px;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(123, 62, 25, 0.15);
  overflow: hidden;
  position: relative;
  padding-bottom: 50px;
  max-width: 1200px;
  margin: 0 auto;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.process-band-viewport {
  position: relative;
  overflow: hidden;
  padding-bottom: 8px;
}

.process-band-track {
  display: flex;
  gap: 24px;
  padding: 8px 16px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.process-card {
  flex: 0 0 300px;
  background: #fff;
  border: 1px solid #f1e3cf;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 20px rgba(123,62,25,.08);
  position: relative;
  overflow: hidden;
}

.process-card h6 {
  color: #7b3e19;
  font-weight: 700;
  margin-bottom: .35rem;
}

.process-card p {
  color: #6b6b6b;
  margin: 0;
  font-size: .95rem;
}

.process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 8px;
  top: -10px;
  font-size: 64px;
  font-weight: 800;
  color: #7b3e19;
  opacity: .06;
  pointer-events: none;
  line-height: 1;
}

.process-nav {
  position: absolute;
  right: 24px;
  bottom: 10px;
  display: flex;
  gap: 12px;
  z-index: 5;
  left: auto;
  transform: none;
}

.process-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #7b3e19, #e4b36b);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,.2);
  cursor: pointer;
}

.process-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #9c5525, #f1c37f);
  transform: scale(1.08);
}

.process-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Başlık altı çizgi */
.headline-underline {
  position: relative;
  padding-bottom: .6rem;
  margin-bottom: 1.25rem;
}

.headline-underline.inline-underline {
  display: inline-block;
}

.headline-underline.inline-underline::after {
  left: 0;
  transform: none;
  width: 100%;
}

.headline-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, #e4b36b, #7b3e19);
  opacity: 1;
  border-radius: 2px;
}

.process-title {
  font-weight: 800;
  color: #7b3e19;
  letter-spacing: .2px;
  font-size: 1.8rem;
}

.headline-underline.center::after {
  display: none;
}

.process-title.headline-underline::after {
  display: none;
}

/* SSS (Sıkça Sorulan Sorular) Stilleri */
.sss-panel {
  background: linear-gradient(135deg, #ffffff, #faf6f0, #f8f2e8, #faf6f0, #ffffff);
  background-size: 300% 300%;
  box-shadow: 0 12px 28px rgba(123,62,25,.12);
  border-radius: 16px;
  border-left: 4px solid #e4b36b;
  animation: sssGradientShift 12s ease-in-out infinite;
}

@keyframes sssGradientShift {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.accordion .accordion-button {
  border: none;
  background: #fff;
  color: #7b3e19;
  font-weight: 600;
}

.accordion .accordion-button:focus {
  box-shadow: 0 0 0 .2rem rgba(228,179,107,.25);
}

.accordion .accordion-button:not(.collapsed) {
  background: #fff7ea;
  color: #7b3e19;
}

.accordion .accordion-item {
  border: 1px solid #f1e3cf;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(123,62,25,.06);
}

.accordion .accordion-item + .accordion-item {
  margin-top: .6rem;
}

.accordion .accordion-body {
  color: #555;
}

/* SSS üst grup başlıklarında 01/02/03 rozeti */
#faqRoot .accordion-button[data-num] {
  position: relative;
  padding-left: 3rem;
}

#faqRoot .accordion-button[data-num]::before {
  content: attr(data-num);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4b36b, #7b3e19);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#faqRoot .accordion .accordion .accordion-button {
  padding-left: 1rem;
}

#faqRoot .accordion .accordion .accordion-button::before {
  display: none;
}

/* ===== İLETİŞİM SAYFASI STİLLERİ ===== */

/* Mobil için görsel ortalama - Yeni yaklaşım */
@media (max-width: 768px) {
  .is-contact .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }
  
  .is-contact .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  
  .is-contact .col-lg-6:first-child {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .contact-image-container {
    width: 100% !important;
    max-width: 100% !important;
    height: 350px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }
  
  .contact-main-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 15px !important;
    display: inline-block !important;
    vertical-align: middle !important;
  }
}

/* İletişim Ana Başlık */
.contact-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #7b3e19;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}

.contact-main-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  transform: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e4b36b, #7b3e19);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
}

/* İletişim Görsel */
.contact-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(123, 62, 25, 0.15);
  transition: transform 0.3s ease;
}

/* İletişim: Sütunları eşit yükseklikte yap */
.is-contact .row.g-5 { align-items: stretch; }
.is-contact .row.g-5 > [class*="col-"] { display: flex; }
.contact-image-container, .contact-info-panel { flex: 1 1 auto; height: 100%; }

/* Desktop görünümde görseli ortalama */
@media (min-width: 992px) {
  .contact-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
  }
}

/* Mobilde iletişim fotoğrafını zorla ortalama */
@media (max-width: 991.98px) {
  .is-contact .container {
    padding-left: 5px !important;
    padding-right: 5px !important;
    max-width: 100% !important;
  }
  
  .is-contact .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .is-contact .col-lg-6:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px !important;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .contact-image-container {
    width: 90% !important;
    max-width: 400px !important;
    height: 300px !important;
    background: linear-gradient(135deg, #f8f4f0, #e8d5c4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    padding: 0 !important;
  }
}

.contact-image-container:hover {
  transform: translateY(-5px);
}

.contact-main-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 20px;
  max-width: 100% !important;
}

/* İletişim Bilgi Paneli */
.contact-info-panel {
  background: linear-gradient(135deg, #fff7ea, #f8f4f0);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(123, 62, 25, 0.1);
  border: 1px solid rgba(123, 62, 25, 0.1);
  /* Görsel ile aynı yükseklik */
  min-height: 420px;
}

.contact-info-title {
  font-size: 2rem;
  font-weight: 700;
  color: #7b3e19;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(123, 62, 25, 0.1);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(123, 62, 25, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 62, 25, 0.15);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7b3e19, #e4b36b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(123, 62, 25, 0.25);
}

.contact-text h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #7b3e19;
  font-size: 1rem;
}

.contact-text a,
.contact-text span {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-text a:hover {
  color: #7b3e19;
  text-decoration: underline;
}

/* İletişim Formu */
.contact-form-container {
  background: linear-gradient(135deg, #fff7ea, #f8f4f0);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(123, 62, 25, 0.1);
  border: 1px solid rgba(123, 62, 25, 0.1);
}

/* ===== İletişim - Mobil Düzeltmeleri ===== */
@media (max-width: 991.98px) {
  .contact-main-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }

  /* Görsel kutusunu ve görseli ortala */
  .is-contact .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
  }

  .contact-image-container { 
    margin: 8px auto 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 320px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    box-sizing: border-box;
  }

  .contact-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(123, 62, 25, 0.15);
  }

  .contact-info-panel {
    padding: 1.5rem;
    min-height: auto;
  }

  .contact-info-item {
    padding: 0.9rem 1rem;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .contact-text h6 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }

  .contact-text a,
  .contact-text span {
    font-size: 0.9rem;
  }

  /* Mobilde Bize Ulaşın paneli üstünde ortalı logo */
  .contact-mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-mobile-logo img {
    height: 56px;
    width: auto;
  }
}

@media (max-width: 576px) {
  .contact-main-title {
    font-size: 2rem;
  }

  /* Mobil için özel düzenleme */
  .is-contact .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .is-contact .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .is-contact .col-lg-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .contact-image-container { 
    margin: 8px auto 0; 
    width: 100% !important; 
    max-width: 100% !important;
    height: 350px !important;
    padding: 0 !important;
    box-sizing: border-box;
  }

  .contact-main-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(123, 62, 25, 0.15);
    max-width: 100% !important;
  }

  .contact-info-panel {
    padding: 1.25rem;
  }

  .contact-info-item {
    gap: 1rem;
  }

  .contact-mobile-logo img {
    height: 48px;
  }

  /* Görselin küçük ekranda taşmasını önle ve üstteki büyük görsel ile mesafeyi artır */
  .contact-image-container { 
    margin: 8px auto 0; 
    border-radius: 14px; 
    text-align: center; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 350px;
    height: 250px;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .contact-main-image { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
    border-radius: 14px;
    max-width: 100%;
  }
}

.contact-form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #7b3e19;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form .form-label {
  font-weight: 600;
  color: #7b3e19;
  margin-bottom: 0.5rem;
}

.contact-form .form-control {
  border: 2px solid rgba(123, 62, 25, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #7b3e19;
  box-shadow: 0 0 0 0.2rem rgba(123, 62, 25, 0.15);
}

.contact-submit-btn {
  background: linear-gradient(135deg, #7b3e19, #e4b36b);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(123, 62, 25, 0.25);
  width: 100%;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(123, 62, 25, 0.35);
  filter: brightness(1.05);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .contact-main-title {
    font-size: 2.5rem;
  }
  
  .contact-info-panel,
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .contact-main-image {
    height: 300px;
  }
  
  .contact-info-item {
    padding: 1rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  /* Mobilde panel yüksekliği görsel ile eşitlensin */
  .contact-info-panel {
    min-height: 300px;
  }
}
.contact-map-container {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(123,62,25,.1);
  border: 1px solid rgba(123,62,25,.1);
}

.contact-info-container {
  background: linear-gradient(135deg, #fff, #faf6f0);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(123,62,25,.1);
  border: 1px solid rgba(123,62,25,.1);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,.7);
  border-radius: 12px;
  transition: all .3s ease;
  border: 1px solid rgba(123,62,25,.1);
}

.contact-item:hover {
  background: rgba(123,62,25,.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123,62,25,.15);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7b3e19, #e4b36b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-text a {
  transition: color .2s ease;
}

.contact-text a:hover {
  color: #7b3e19 !important;
}

.cafe-image-container img {
  transition: transform .3s ease;
}

.cafe-image-container:hover img {
  transform: scale(1.02);
}

.fr-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.fr-hero__title{
  margin: 0 0 .75rem;
  font-weight: 800;
  color: #f6d1a6;
  letter-spacing: .2px;
}

.fr-hero__desc{
  max-width: 980px;
  margin: 0 auto 24px;
  color: #f3e5d7;
  opacity: .95;
  font-size: 1.1rem;
}

.fr-hero__btn{
  background: linear-gradient(135deg, #f0a24c, #9a4f1d);
  color: #fff;
  border: none;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(154,79,29,.35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.fr-hero__btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 32px rgba(154,79,29,.45);
}

/* ===== SSS WIDGET ===== */
.faq-widget { 
  position: fixed; 
  right: 16px; 
  bottom: 40px; 
  z-index: 1100; 
  display: flex; 
  flex-direction: column-reverse; 
  align-items: flex-end; 
  gap: 8px; 
}

/* Mobilde SSS widget'ı daha yukarı taşı */
@media (max-width: 768px) {
  .faq-widget {
    bottom: 20px;
    right: 12px;
  }
  
  .faq-button {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
}

.faq-button {
  background: linear-gradient(135deg,#e4b36b,#7b3e19); 
  color:#fff; 
  border:none; 
  border-radius:999px;
  padding:.6rem 1rem; 
  font-weight:600; 
  box-shadow:0 10px 24px rgba(0,0,0,.25); 
  display:flex; 
  align-items:center; 
  gap:.5rem;
}

.faq-button::before{ 
  content:'\f059'; 
  font-family:"Font Awesome 6 Free"; 
  font-weight:900; 
}

.faq-panel{ 
  transform-origin: bottom right; 
  animation: faqIn .35s ease; 
}

.faq-q{ 
  position:relative; 
}

.faq-q::after{
  content:'\f107'; 
  font-family:"Font Awesome 6 Free"; 
  font-weight:900;
  position:absolute; 
  right:.5rem; 
  top:50%; 
  transform:translateY(-50%); 
  transition: transform .2s ease;
}

.faq-q.expanded::after{ 
  transform: translateY(-50%) rotate(180deg); 
}

.faq-a { 
  overflow: hidden; 
  max-height: 0; 
  opacity: 0; 
  transition: max-height .4s ease, opacity .4s ease; 
}

.faq-a.open { 
  max-height: 400px; 
  opacity: 1; 
}

.faq-panel {
  width: 280px; 
  max-height: 50vh; 
  overflow:auto; 
  background:#fff;
  border-radius:12px; 
  box-shadow:0 18px 40px rgba(0,0,0,.28); 
  padding:.5rem;
}

.faq-item + .faq-item { 
  border-top:1px solid #eee; 
  margin-top:.5rem; 
  padding-top:.5rem; 
}

.faq-q { 
  width:100%; 
  text-align:left; 
  background:none; 
  border:none; 
  font-weight:600; 
  color:#7b3e19; 
  padding:.5rem; 
}

.faq-a { 
  padding:.5rem .75rem; 
  color:#444; 
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 992px) {
  .product-showcase-card { 
    height: auto; 
  }
  .product-image { 
    padding: 1rem; 
  }
}

@media (max-width: 768px) {
  .product-showcase-card { 
    height: auto; 
  }
  .product-image { 
    padding: 1rem; 
  }
  .product-image img { 
    width: 100%; 
    height: auto; 
  }
}

@media (max-width: 576px) {
  .product-showcase-card { 
    height: auto; 
  }
  .product-image { 
    padding: 0.8rem; 
  }
  .product-image img { 
    width: 100%; 
    height: auto; 
  }
}

/* ===== ANİMASYON KEYFRAMES ===== */
@keyframes productCardEntry {
  0% { 
    opacity: 0; 
    transform: translateY(50px) scale(0.9); 
  }
  50% { 
    opacity: 0.8; 
    transform: translateY(-10px) scale(1.02); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

@keyframes faqIn { 
  from { 
    opacity:0; 
    transform: scale(.98); 
  } 
  to { 
    opacity:1; 
    transform: scale(1); 
  } 
}
/* === Mobilde Görseli Tam Ortala ve Taşmayı Önle === */
@media (max-width: 991.98px) {
  .is-contact .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .is-contact .col-lg-6.order-2 {
    order: 2 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 1.5rem !important;
    text-align: center;
  }

  .contact-image-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 90% !important;
    max-width: 400px !important;
    height: auto !important;
    margin: 0 auto !important;
    border-radius: 15px !important;
    overflow: hidden !important;
  }

  .contact-main-image {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(123, 62, 25, 0.15);
  }
}
/* Transform ile tam ekran ortalama (son çare) */
@media (max-width: 991.98px) {
  .contact-image-container {
    position: relative !important;
    left: 50% !important;
    transform: translateX(-55%) !important;
    width: min(92vw, 420px) !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .contact-main-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

/* Franchise Form Dropdown Ok İşaretleri */
.fr-form select.form-control {
  appearance: none;
  -webkit-appearance: none; /* Chrome/Safari */
  -moz-appearance: none;    /* Firefox */
  background-color: #fff;
  background-image: none !important; /* Eski tarayıcı oklarını gizle */
  padding-right: 40px;
}

/* Edge/IE için yerel oku gizle */
.fr-form select.form-control::-ms-expand {
  display: none;
}

/* Mobil İletişim Bölümü Stilleri */
.mobile-contact-section {
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: transparent !important;
  padding: 1rem 0 !important;
  text-align: center !important;
}

.mobile-contact-section h5,
.mobile-contact-section h6 {
  color: #fff !important;
  font-weight: 600;
  text-align: center !important;
}

.mobile-contact-section .contact-info {
  background: transparent !important;
  text-align: center !important;
}

.mobile-contact-section .contact-info .d-flex {
  justify-content: center !important;
}

.mobile-contact-section .contact-info a {
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.mobile-contact-section .contact-info a:hover {
  color: #ffc107 !important;
}

.mobile-contact-section .social-links {
  gap: 1rem !important;
  justify-content: center !important;
  display: flex !important;
}

.mobile-contact-section .social-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

.mobile-contact-section .social-links .social-link:last-child {
  margin-right: 0;
}

.mobile-contact-section .social-links .social-link:hover {
  background: #ffc107;
  color: #000 !important;
  transform: translateY(-2px);
}