:root {
  /* BRAND */
  --brand-yellow: #f7b500;   /* Ana Butonlar, Fiyatlar, Vurgular */
  --brand-yellow-dark: #d99a00;

  /* DARKS */
  --black-main: #212121;     /* Navbar scroll sonrası, Footer */
  --black-soft: #1a1a1a;     /* Ürün Kartları */
  --black-muted: #2a2a2a;    /* Çizgiler */

  /* LIGHTS */
  --bg-main: #f4f1ea;        /* Sitenin Ana Arka Planı (Bej) */
  --bg-soft: #fbf9f4;        /* Alt bölümler */

  /* TEXT */
  --text-dark: #212121;      /* Açık zemin üstüne yazı */
  --text-light: #ffffff;     /* Koyu zemin üstüne yazı */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: #212121 !important;
    font-family: 'Oswald', sans-serif;
    padding-top: 85px; /* Navbar yüksekliği kadar */
}

/* Siyah yerine Yumuşak Antrasit - Genel Renk Zorlaması */
/* Hero slider içindeki beyaz metinler hariç tutuldu */
body, h1:not(.hero-title), h2:not(.section-title):not(.hero-title), h3:not(.hero-title), h4, h5, h6, p:not(.hero-subtitle), span:not(.hero-title):not(.hero-subtitle), a:not(.hero-title):not(.btn-custom) {
    color: #212121 !important;
}

/* Section başlıkları için özel renk */
.section-title {
    color: #212121 !important;
}

/* ========== NAVBAR ========== */
.navbar {
    min-height: 85px;
    background-color: var(--bg-main) !important; /* Krem rengini zorla */
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.navbar-collapse {
    flex-grow: 1;
}

.navbar-nav {
    gap: 2rem;
}

/* Navbar Linkleri için Özel Kural */
/* --- NAVBAR FONT AYARI (BARLOW CONDENSED) --- */
.navbar-nav .nav-link,
.navbar .btn {
    font-family: 'Barlow Condensed', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- NAVBAR MENÜ LİNKLERİ (Aktif Sayfa Kırmızı) --- */

/* 1. Aktif Olan Sayfa (Örn: Ana Sayfa) HER ZAMAN Kırmızı Olsun */
.navbar-nav .nav-link.active {
    color: #C33130 !important; /* Marka Kırmızısı */
    font-weight: 700 !important; /* Biraz daha kalın */
}

/* 2. Diğer Linklerin Normal Hali (Siyah/Koyu Gri) */
.navbar-nav .nav-link {
    color: #212529 !important; /* Standart Siyah */
    font-size: 1.25rem !important; /* Condensed için büyütülmüş */
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 0.5rem 0 !important;
}

/* 3. Mouse Üzerine Gelince (Hover) Hepsi Kırmızı Olsun */
.navbar-nav .nav-link:hover {
    color: #C33130 !important;
}

.btn-products {
    background-color: var(--brand-yellow);
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-products:hover {
    background-color: var(--brand-yellow-dark);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(247, 181, 0, 0.3);
}

/* Navbar/Hover: Marka kırmızısı korunsun */
.navbar .btn-products:hover,
.navbar .btn-warning:hover {
    color: #C33130 !important;
    background-color: #ffcd39 !important;
}

/* Butonlar div'i zaten ms-auto ile en sağa yaslanıyor */

/* --- NAVBAR BUTONLARI (BOXY / KUTU GÖRÜNÜM) --- */
.navbar .btn,
.navbar .btn-products,
.navbar .btn-warning {
    /* 1. ŞEKİL: Üst/Alt çok, Sağ/Sol az (Kutu Formu) */
    padding: 16px 12px !important;

    /* 2. YAZI: Sığması için biraz küçültüyoruz */
    font-size: 0.95rem !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    /* 3. BOYUT KONTROLÜ: Eşit durmaları için min-width */
    min-width: 110px;
    line-height: 1 !important;

    /* Renk ve Diğer Ayarlar */
    color: #C33130 !important;
    background-color: #ffc107 !important;
    border-radius: 6px;
    border: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* İkon ile yazı arasını biraz kıstık */
}

.navbar-toggler {
    border: 2px solid var(--text-dark);
    padding: 0.4rem 0.6rem;
}

.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(33, 33, 33, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- MASAÜSTÜ NAVBAR İYİLEŞTİRMELERİ (Sadece 992px ve üstü) --- */
@media (min-width: 992px) {

    /* 1. NAVBAR GÖVDESİ (İdeal Kalınlık) */
    .navbar {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        display: flex !important;
        align-items: center !important;
        transition: all 0.3s ease;
    }

    /* 2. LOGO AYARI (Maksimum & Ortalı) */
    .navbar-brand img {
        height: 75px !important;
        width: auto;
        display: block;
        margin: 0 !important;
        transform: none !important;
    }

    /* 3. Kapsayıcı (Kenar boşlukları) */
    .navbar .container,
    .navbar .container-fluid {
        display: flex !important;
        align-items: center !important;
        padding-left: 100px !important;
        padding-right: 100px !important;
        max-width: 100%;
    }

    /* 4. MENÜ LİNKLERİ VE BUTONLAR (Logoya göre tam göbek hizasında) */
    .navbar-nav .nav-link,
    .navbar .btn {
        align-self: center !important;
        margin-top: 0 !important;
    }

    .navbar .btn {
        padding: 16px 12px !important; /* Boxy / kutu formu */
        font-size: 0.95rem !important;
        min-width: 110px;
        border-radius: 6px;
    }

    .navbar-nav .nav-link {
        font-size: 1.25rem !important;
        margin: 0 12px; /* Link aralıkları */
    }
}

/* Mobil Navbar Düzenlemeleri */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0;
        min-height: 65px;
    }

    body {
        padding-top: 65px; /* Mobil navbar yüksekliği */
    }

    .navbar-logo {
        height: 50px;
    }

    .navbar-nav {
        margin-top: 1rem;
        gap: 0;
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(33, 33, 33, 0.1);
        color: #212121 !important; /* Rengi zorla */
    }

    /* Mobil Butonlar - Küçük Font ve Padding */
    .navbar .d-flex.gap-2.ms-auto .btn-products {
        font-size: 11px !important;
        padding: 0.25rem 0.5rem !important;
        white-space: nowrap;
    }

    .navbar .d-flex.gap-2.ms-auto {
        gap: 0.25rem !important;
    }
}

/* ========== HERO SLIDER (SWIPER) ========== */

/* --- GENEL SWIPER (Masaüstü Varsayılanı) --- */
.myHeroSwiper {
    width: 100%;
    height: 750px; /* Sabit yükseklik */
    background-color: #000;
    padding-bottom: 0;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

/* Arka Plan Resmi (Tam Kaplama) */
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: blur(4px);
}

/* İçerik Container */
.swiper-slide .container {
    position: relative;
    z-index: 10;
    height: 100%;
}

/* Ürün sütunu - resim altta hizalansın */
.hero-product-col {
    height: 100%;
}

/* Masaüstü Resim Ayarı - DEV BURGER MODU */
@media (min-width: 992px) {
    .slider-product {
        height: auto;
        max-height: 680px; /* Resmi tekrar devasa yap */
        width: auto;
        transform: scale(1.2); /* Hafif zoom ile patlat */
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
        margin-bottom: -50px; /* Hafif aşağı taşsın, zemine otursun */
    }

    /* Masaüstü animasyonlarda scale korunsun */
    .swiper-slide-active .slider-product {
        animation: slideInFromRightDesktop 1s ease-out forwards;
    }
    .swiper-slide-prev .slider-product,
    .swiper-slide-next .slider-product {
        animation: flyUpAndAwayDesktop 0.8s ease-in forwards;
    }

    /* Resim Kapsayıcısı */
    .img-container {
        height: 100%;
        display: flex;
        align-items: flex-end; /* Resmi en alta yasla */
        justify-content: center;
        padding-bottom: 50px;
    }
}

/* --- METİN KAPSAYICISI --- */
.hero-text-content {
    z-index: 20; /* Resmin ve arka planın kesinlikle üstünde olsun */
    position: relative;
    text-align: left; /* Referans sitedeki gibi sola dayalı */
    padding-left: 50px; /* Kenara yapışmasın */
}

/* --- BAŞLIK (Wongs Tower vb.) --- */
.hero-text-content h1.main-title {
    font-family: 'Luckiest Guy', cursive;
    color: #ffffff !important; /* ZORLA BEYAZ */
    font-size: 5rem;
    text-shadow: 4px 4px 0px #000000; /* Siyah gölge ile patlat */
    line-height: 0.9;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* --- ALT SLOGAN (Dikkat Alışkanlık Yapar vb.) --- */
.hero-text-content h3.sub-slogan {
    font-family: 'Luckiest Guy', cursive;
    color: #ffc107 !important; /* ZORLA SARI (Cajun Sarısı) */
    font-size: 2.2rem;
    text-shadow: 2px 2px 0px #000000;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- AÇIKLAMA / MALZEMELER --- */
.hero-text-content p.ingredients-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f8f9fa !important; /* ZORLA KIRIK BEYAZ */
    font-size: 1.2rem;
    font-weight: 600; /* Biraz daha kalın */
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8); /* Okunurluk gölgesi */
    max-width: 90%;
    margin-bottom: 30px;
}

/* --- RESİM AYARLARI (Temel - Masaüstü medya sorgusunda override) --- */
.slider-product {
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* --- SLIDER ÖZEL BUTONU (RENK ZORLAMA & KATANA EFEKTİ) --- */

/* 1. Normal Durum (Yumuşak Antrasit #212121) */
a.btn-custom,
a.btn-custom:link,
a.btn-custom:visited,
a.btn-custom:active,
a.btn-custom:focus {
    background-color: #ffc107 !important; /* Sarı Zemin */
    color: #212121 !important; /* Yumuşak Siyah (Antrasit) */

    font-family: 'Lilita One', cursive !important;
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important; /* Alt çizgiyi engelle */

    border-radius: 10px;
    padding: 12px 50px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1;
    display: inline-block;
}

/* 2. Katana Parlama Efekti (Aynen Koruyoruz) */
a.btn-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.9) 50%,
        transparent 70%
    );
    transform: skewX(-25deg);
    transition: none;
    z-index: -1;
}

/* 3. Hover Durumu (Kırmızı) */
a.btn-custom:hover {
    color: #C33130 !important; /* HOVER'DA KIRMIZI OLSUN */
    background-color: #ffcd39 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.5);
}

/* Hover Animasyonu Tetikleyici */
a.btn-custom:hover::after {
    left: 150%;
    transition: all 0.6s ease-in-out;
}

/* ========== SLIDER ANİMASYONLARI (SWIPER) ========== */
.swiper-slide-active .slider-product {
    animation: slideInFromRight 1s ease-out forwards;
    opacity: 0;
}

@keyframes slideInFromRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRightDesktop {
    0% { transform: translateX(100px) scale(1.2); opacity: 0; }
    100% { transform: translateX(0) scale(1.2); opacity: 1; }
}

.swiper-slide-prev .slider-product,
.swiper-slide-next .slider-product {
    animation: flyUpAndAway 0.8s ease-in forwards;
}

@keyframes flyUpAndAway {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-150px); opacity: 0; }
}

@keyframes flyUpAndAwayDesktop {
    0% { transform: translateY(0) scale(1.2); opacity: 1; }
    100% { transform: translateY(-150px) scale(1.2); opacity: 0; }
}

.swiper-slide-active .hero-text-content {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Swiper Navigation & Pagination */
.swiper-button-next,
.swiper-button-prev {
    color: var(--brand-yellow) !important;
    width: 50px;
    height: 50px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background-color: var(--brand-yellow) !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* --- MOBİL UYUMLULUK (CAJUN STYLE FIX) --- */
@media (max-width: 991px) {
    /* 1. Slider Kapsayıcısı: Sabit bir yükseklik şart */
    .myHeroSwiper {
        height: 650px !important; /* Mobilde ekranı dolduracak bir yükseklik */
        min-height: unset;
        padding-bottom: 0;
        position: relative; /* İçindeki absolute elemanlar buna göre hizalanacak */
    }

    /* 2. Slayt Yapısı */
    .swiper-slide {
        position: relative; /* Resim bunun içine hapsolsun */
        overflow: hidden; /* Taşan kısımları gizle */
    }

    .swiper-slide .row {
        display: block; /* Flex'i iptal et */
        height: 100%;
    }

    /* 3. Metin Alanı (Üst Katman) */
    .hero-text-content {
        text-align: center !important;
        padding: 40px 15px 0 15px !important; /* Üstten boşluk */
        margin: 0 !important;
        position: relative;
        z-index: 10; /* Burgerin ÜSTÜNDE kalsın */
        width: 100%;
    }

    /* Yazı Boyutları (Aynı kalıyor) */
    .hero-text-content h1.main-title { font-size: 2.8rem !important; }
    .hero-text-content h3.sub-slogan { font-size: 1.3rem !important; margin-bottom: 15px; }
    .hero-text-content p.ingredients-text {
        font-size: 1rem !important;
        line-height: 1.3;
        margin-bottom: 25px;
        display: block;
    }

    /* 4. RESİM KAPSAYICISI (Gerekirse) */
    .col-lg-5.img-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 1; /* Yazının ALTINDA kalsın */
    }

    /* 5. DEV BURGER AYARI (GÜNCEL) */
    .slider-product {
        position: absolute !important;
        bottom: -10px !important; /* Yukarı çıktı, kesilme azaldı - zemin hizası korunsun */
        left: 50% !important;
        transform: translateX(-50%) scale(1.3) !important; /* Ortala ve %30 büyüt */

        /* KRİTİK: Genişlik ayarı */
        width: 120% !important; /* Ekrandan daha geniş yap! */
        max-width: none !important; /* Sınırları kaldır */
        height: auto !important;

        display: block;
        margin: 0 !important;
        filter: drop-shadow(0 -10px 30px rgba(0,0,0,0.7)); /* Üste doğru gölge atarak derinlik ver */
    }

    /* Butonu biraz yukarı itelim ki burgere çok binmesin */
    .btn-custom {
        margin-bottom: 50px;
    }
}

/* ========== YENİ KATEGORİ SÜTUNLARI (Cajun Corner Tarzı) ========== */

.new-categories-section {
    background-color: #F4F1EA;
    border-bottom: 1px solid #e0e0e0;
}

/* --- KATEGORİ KUTUSU ANIMASYONLARI --- */
.category-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 30px 15px;
    height: 100%;
    border-right: 1px solid #e0e0e0;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease;
}

.col-lg-2:last-child .category-box {
    border-right: none;
}

.category-box:hover {
    background-color: #FFC107 !important;
    cursor: pointer;
}

/* --- KATEGORİ ANIMASYON REVİZESİ --- */
.category-box:hover .cat-img-wrapper {
    transform: translateY(100px) scale(0.9);
}

.category-box:hover .cat-txt-wrapper {
    transform: translateY(-120px) scale(1.1);
}

.cat-img-wrapper,
.cat-txt-wrapper {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cat-img-wrapper {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
}

.cat-txt-wrapper {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.cat-product {
    max-height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.cat-text-icon {
    max-height: 50px;
    width: auto;
}

/* --- MOBİL İÇİN YATAY KAYDIRMA (SWIPE) --- */
@media (max-width: 991px) {
    .new-categories-section .row {
        display: flex;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .new-categories-section .col-6,
    .new-categories-section .col-md-4 {
        flex: 0 0 45% !important;
        max-width: 45% !important;
        margin-right: 10px;
    }

    .new-categories-section .row::-webkit-scrollbar {
        display: none;
    }
    .new-categories-section .row {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* Mobil Kategori Ayarları */
@media (max-width: 768px) {
    .category-box {
        padding: 20px 10px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .cat-product {
        max-height: 90px;
    }

    .cat-text-icon {
        max-height: 40px;
    }
}

/* ========== HAKKIMIZDA BÖLÜMÜ REVİZE ========== */
.home-about-section {
    background-color: #F4F1EA !important;
}

.about-heading {
    font-family: 'Luckiest Guy', cursive !important;
    font-size: 3rem;
    color: #333;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-text {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    color: #555;
}

.about-img-wrapper img {
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-img-wrapper img:hover {
    transform: scale(1.02);
}

/* ========== MODERN IZGARA İSTATİSTİK TASARIMI ========== */

.stats-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    text-align: center;
    border-color: rgba(206, 18, 18, 0.3);
    border-style: dashed;
    border-width: 0;
}

.item-tl {
    border-bottom-width: 1px;
    border-right-width: 1px;
}

.item-tr {
    border-bottom-width: 1px;
}

.item-bl {
    border-right-width: 1px;
}

.item-br {
    border: none;
}

.stats-badge-modern {
    margin-bottom: 15px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stats-grid-item:hover .stats-badge-modern {
    transform: scale(1.1) rotate(10deg);
}

.stats-icon-modern {
    font-size: 2rem;
    color: #ce1212;
}

.stats-number-modern {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    color: #ce1212;
    line-height: 1;
    margin-bottom: 5px;
}

.stats-label-modern {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- MOBİL İÇİN İSTATİSTİK TAMİRİ --- */
@media (max-width: 768px) {
    .stats-grid-container {
        width: 100% !important;
        padding: 0 10px;
    }

    .stats-grid-item {
        padding: 15px 5px !important;
        border-width: 0;
    }

    .item-tl { border-bottom-width: 1px; border-right-width: 1px; }
    .item-tr { border-bottom-width: 1px; }
    .item-bl { border-right-width: 1px; }

    .stats-badge-modern {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 8px !important;
    }

    .stats-icon-modern {
        font-size: 1.4rem !important;
    }

    .stats-number-modern {
        font-size: 1.8rem !important;
        margin-bottom: 2px !important;
    }

    .stats-label-modern {
        font-size: 0.9rem !important;
        letter-spacing: 0;
        line-height: 1.2;
    }
}

/* ========== FEATURED PRODUCTS ========== */
.featured-products {
    background-color: var(--bg-soft);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

.product-card {
    background-color: var(--black-soft);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--black-muted);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.product-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--black-muted);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-yellow);
}

.btn-add-cart {
    background-color: var(--brand-yellow);
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-add-cart:hover {
    background-color: var(--brand-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(247, 181, 0, 0.3);
}

/* Mobil Ürün Kartları */
@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-name {
        font-size: 1.25rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 1.25rem;
    }

    .btn-add-cart {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .featured-products {
        padding: 2rem 0 !important;
    }
}

/* ========== FRANCHISE (BAYİ OL) MODÜLÜ ========== */

/* --- FRANCHISE (BAYİ OL) BUTONU FINAL --- */
.franchise-sticky-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 95px;
    height: 95px;
    border-radius: 15px;
    background-color: #FFC107;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    animation: pulse-yellow 2s infinite;
    transition: transform 0.3s ease;
}

.franchise-sticky-btn:hover {
    transform: scale(1.05);
}

.franchise-icon {
    font-size: 2.2rem;
    color: #ce1212;
    margin-bottom: 5px;
    filter: drop-shadow(0px 1px 0px white) drop-shadow(0px -1px 0px white) drop-shadow(1px 0px 0px white) drop-shadow(-1px 0px 0px white);
}

.franchise-text {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.3rem;
    line-height: 1;
    color: #ce1212;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow:
        2px 2px 0px white,
        -2px -2px 0px white,
        2px -2px 0px white,
        -2px 2px 0px white;
}

@keyframes pulse-yellow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 193, 7, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

.franchise-sidebar {
    background-color: #d4a017;
    color: white;
    width: 400px !important;
    border-right: 5px solid #fff;
}

.franchise-form .form-control,
.franchise-form .form-select {
    border: none;
    border-radius: 8px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.9);
}

.franchise-form .form-control:focus,
.franchise-form .form-select:focus {
    border: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

/* ========== FOOTER TASARIMI REVİZE ========== */
.site-footer {
    background-color: #F4F1EA;
    border-top: 5px solid #C33130;
    color: #000;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 500;
    margin-top: 4rem;
}

.footer-title {
    color: #C33130 !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.contact-item,
.site-footer p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #C33130;
    padding-left: 5px;
}

.contact-item strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    color: #C33130;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #C33130 !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem !important;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
}

.social-links a i {
    font-size: 2.2rem;
}

.social-links a:hover {
    transform: scale(1.05);
    color: #a01d1d !important;
}

/* Mobil Footer */
@media (max-width: 767.98px) {
    .site-footer {
        padding: 2rem 0 1rem !important;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .social-links a {
        font-size: 1.5rem !important;
    }

    .social-links a i {
        font-size: 1.7rem;
    }
}

/* ========== GENEL DÜZENLEMELER ========== */
.container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Bootstrap Carousel Indicator Düzenlemesi */
.carousel-indicators [data-bs-target] {
    background-color: var(--brand-yellow);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

/* Slider butonlarını en üste taşı */
.carousel-control-prev, .carousel-control-next {
    z-index: 9999 !important; /* Her şeyin üstünde olsun */
    cursor: pointer;
    width: 5%; /* Tıklama alanını netleştirelim */
}

/* --- NAVBAR BUTONLARI (RENK ZORLAMA) --- */
/* Bootstrap'in btn-warning siyah rengini ezmek için specificity artırıyoruz */
.navbar .btn,
.navbar .btn:link,
.navbar .btn:visited,
.navbar .btn i { /* İkonları da kapsa */
    color: #C33130 !important; /* KESİN KIRMIZI */
    font-weight: 700 !important;
}

/* Hover durumunda da kırmızı kalsın */
.navbar .btn:hover,
.navbar .btn:hover i {
    color: #C33130 !important;
}

/* --- MOBİL GÖRÜNÜM DÜZELTMELERİ (Sadece 991px ve altı) --- */
@media (max-width: 991px) {

    /* 1. Navbar Konteyner */
    .navbar .container,
    .navbar .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;

        display: flex !important;
        flex-wrap: nowrap !important; /* Asla alt satıra inmesin */
        align-items: center !important;
        justify-content: space-between !important;
    }

    /* 2. Logo Boyutunu Mobilde (40-45px bandı) */
    .navbar-brand img {
        height: 45px !important;
        width: auto;
        margin: 0 !important;
    }

    /* 3. Navbar Yüksekliğini Ayarla */
    .navbar {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
        height: auto !important;
    }

    /* 4. MOBİLDE BUTONLARI KÜÇÜLT (Gizleme, sığdır) */
    .navbar .btn {
        display: inline-flex !important; /* Geri Getir */
        padding: 6px 10px !important; /* Çok daha küçük boşluk */
        font-size: 0.8rem !important; /* Yazılar küçülsün */
        min-width: auto !important; /* Genişlik zorlamasını kaldır */
        height: 35px !important; /* Yüksekliği kıs */

        /* İkon ve Yazı Ayarı */
        gap: 4px;
        align-items: center;

        /* Pozisyon: Logoya yapışmasın */
        margin-left: 5px;
    }

    /* Hamburger Menü Butonu (Toggler) Ayarı */
    .navbar-toggler {
        border: none !important;
        padding: 5px !important;
        outline: none !important;
        box-shadow: none !important;
    }
}

/* ========== CAJUN MENU STİLİ (ÜRÜNLER SAYFASI) ========== */

/* Temiz & Şeffaf Sidebar */
.sidebar-link {
    display: block;
    padding: 10px 0;
    color: #555;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s;
    background: transparent !important;
    border: none !important;
    position: relative;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: #ce1212;
    padding-left: 10px;
}

.sidebar-link:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #ce1212;
    border-radius: 50%;
}

/* Mobil Offcanvas */
.mobile-link {
    font-size: 1.3rem;
    color: #333;
}

.menu-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #FFC107;
}

.menu-img-box {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #fff;
}
.menu-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}
.menu-card:hover .menu-img-box img {
    transform: scale(1.08);
}
.menu-content { flex-grow: 1; display: flex; flex-direction: column; }

.menu-title {
    font-family: 'Barlow Condensed', sans-serif !important;
    color: #1F1F1F !important;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    line-height: 1.1;
}

.menu-desc {
    font-family: 'Barlow Condensed', sans-serif !important;
    color: #5A5A5A !important;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
    flex-grow: 1;
}

.menu-price {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.6rem;
    color: #1F1F1F;
}

.btn-incele {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
