/* --- KURUMSAL GÖRSEL KİMLİK LOKAL FONTLAR --- */
/* Google Fonts Import satırı silindi, yerine lokal dosyalar eklendi */

/* --- LOKAL FONT TANIMLAMALARI (OUTFIT - ANA METİNLER) --- */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/outfit-v15-latin_latin-ext-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/outfit-v15-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/outfit-v15-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/outfit-v15-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/outfit-v15-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('fonts/outfit-v15-latin_latin-ext-800.woff2') format('woff2');
}

/* --- LOKAL FONT TANIMLAMALARI (PLUS JAKARTA SANS - BAŞLIKLAR) --- */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-v12-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-v12-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-v12-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-v12-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-v12-latin_latin-ext-800.woff2') format('woff2');
}

/* --- MODERNİZE EDİLMİŞ TEK RENK PALETİ (eski değişken adları korundu) --- */
:root {
    --brand-primary: #b3242b;
    --brand-primary-dark: #8f1c22;
    --brand-dark: #16130f;
    --brand-light:#faf7f2;
    --bg-soft: #faf7f2;
    --top-green: #123524;
    --gold: #c9a227;
    --border-color: rgba(22,19,15,0.07);
    --border-light: rgba(22,19,15,0.13);
    --text-main: #2a2622;
    --text-muted: #746b5e;
    --display-font: 'Plus Jakarta Sans', sans-serif; /* Eski Fraunces değiştirildi */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 10px rgba(22,19,15,0.06);
    --shadow-md: 0 14px 34px rgba(22,19,15,0.10);
    --shadow-lg: 0 24px 60px rgba(22,19,15,0.14);
	--surface: #ffffff; 
    --success: #10b981; 
    --danger: #ef4444;
}

* {
    font-family: 'Outfit', sans-serif !important;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--brand-light);
    color: var(--text-main);
    letter-spacing: -0.015em;
}

/* YENİ: h1, h2, h3 dinamikleri için global Plus Jakarta Sans tanımlaması */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--display-font) !important;
}

        /* --- ÜST BAR (TOP BAR) TASARIMI --- */
        .top-bar {
            background: var(--top-green);
            padding: 10px 0;
            font-size: 13.5px;
            color: #ffffff;
        }
        .top-bar-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-actions-group {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .top-link-action {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ffffff !important;
            transition: all 0.2s ease;
            font-weight: 400;
        }
        .top-link-action i {
            color: var(--gold) !important;
            font-size: 1.1rem;
        }
        .top-link-action:hover {
            opacity: 0.8;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            font-weight: 500;
        }
        .pulse-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            display: inline-block;
            position: relative;
        }
        .pulse-dot::after {
            content: ''; position: absolute;
            width: 100%; height: 100%;
            border-radius: 50%;
            animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
        }

        .is-open .pulse-dot { background-color: #10b981; }
        .is-open .pulse-dot::after { background-color: #10b981; opacity: 0.6; }
        .is-closed .pulse-dot { background-color: #f43f5e; }
        .is-closed .pulse-dot::after { background-color: #f43f5e; opacity: 0.6; }

        @keyframes pulse-ring {
            0% { transform: scale(1); opacity: 0.6; }
            80% { transform: scale(2.5); opacity: 0; }
            100% { transform: scale(2.5); opacity: 0; }
        }

        /* --- ANA MENÜ (NAVBAR) TASARIMI --- */
        .navbar-custom { 
            background: var(--brand-light) !important;
            padding: 1.2rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 25px rgba(0,0,0,0.03) !important;
        }
        
        .navbar-brand { 
            font-weight: 800; font-size: 1.6rem; 
            color: var(--brand-dark) !important; 
            display: flex; align-items: center; gap: 10px;
            letter-spacing: -0.5px;
            width: 200px;
            max-width: 200px;
            margin-right: 15px;
        }
        .site-logo-img { 
            height: 45px; 
            width: 100%;
            max-width: 100%; 
            object-fit: contain;
            object-position: left;
            transition: transform 0.3s; 
        }
        .navbar-brand:hover .site-logo-img { transform: scale(1.05); }

        .nav-link { 
            font-weight: 500; color: var(--brand-dark) !important; 
            font-size: 1.05rem; 
            margin: 0 6px; 
            position: relative; transition: color 0.3s;
            padding-bottom: 5px;
        }
        .nav-link:hover { color: var(--brand-primary) !important; }
        
        .nav-link.active-page { color: var(--brand-primary) !important; }
        .nav-link.active-page::after {
            content: ''; position: absolute; bottom: 0; left: 10%;
            width: 80%; height: 2px; background: var(--brand-primary);
            border-radius: 2px;
        }

        .header-actions { display: flex; align-items: center; gap: 15px; }

        /* Yuvarlak Minimalist Sepet Butonu */
        .btn-cart-circle {
            width: 44px; height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(0,0,0,0.15);
            display: flex; align-items: center; justify-content: center;
            color: var(--brand-dark);
            position: relative;
            text-decoration: none;
            transition: all 0.2s;
            background: transparent;
        }
        .btn-cart-circle:hover {
            background: rgba(0,0,0,0.04);
            color: var(--brand-dark);
        }
        .btn-cart-circle i { font-size: 1.25rem; }
        
        .cart-badge {
            position: absolute; top: -5px; right: -5px;
            background: var(--brand-primary); color: #fff;
            min-width: 20px; height: 20px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.75rem; font-weight: 700;
            border: 2px solid var(--brand-light);
            margin: 0;
        }

        /* Resimdeki Order Online Pill Butonu */
        .btn-order-online {
            background: var(--brand-primary);
            color: #fff !important;
            padding: 11px 26px;
            border-radius: var(--radius-sm, 10px);
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.25s;
            box-shadow: var(--shadow-sm);
        }
        .btn-order-online:hover {
            background: var(--brand-primary-dark, #8f1c22);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Offcanvas & Mobil Tasarım */
        .btn-track-mobile {
            background: var(--brand-light); color: var(--brand-dark);
            border: 1px solid var(--border-color); padding: 14px; border-radius: 12px;
            font-weight: 700; font-size: 0.95rem; text-decoration: none; 
            display: flex; align-items: center; gap: 10px; transition: all 0.2s;
        }
        .btn-track-mobile:hover { opacity: 0.85; }

        #pwaSmartBanner {
            position: fixed;
            bottom: -120px;
            left: 20px;
            right: 20px;
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 16px;
            box-shadow: 0 15px 30px rgba(22, 19, 15, 0.15);
            z-index: 9999;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        #pwaSmartBanner.show { bottom: 30px; }
        .pwa-banner-icon {
            width: 48px; height: 48px;
            background: var(--brand-primary);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.5rem; flex-shrink: 0;
        }
        .pwa-banner-text h6 { margin: 0; font-weight: 800; font-size: 0.9rem; color: var(--brand-dark); }
        .pwa-banner-text p { margin: 0; font-size: 0.75rem; color: var(--text-muted); }
        .pwa-banner-btn {
            background: var(--brand-dark); color: #fff; border: none;
            padding: 8px 16px; border-radius: 10px; font-weight: 700;
            font-size: 0.8rem; margin-left: auto;
        }

        @media (max-width: 991px) {
            .navbar-custom { padding: 0.8rem 0; }
            .desktop-only { display: none !important; }
            .top-bar-flex { flex-direction: column; gap: 12px; justify-content: center; }
            .top-actions-group { flex-wrap: wrap; justify-content: center; gap: 15px; }
        }

/* --- GENEL YAPI (Çakışmalar Giderildi) --- */
html, body { height: 100%; margin: 0; }

.tecrube-rozet {
        transform: translateX(-50%); 
    }
    /* Mobilde ekranı kesmemesi için sadece hafifçe dışarı taşar */
    @media (max-width: 768px) {
        .tecrube-rozet {
            transform: translateX(-15px); 
        }
    }
/* --- SİPARİŞ DURUMU ANİMASYONLARI --- */
.anim-motor { display: inline-block; animation: drive 2s linear infinite; }
@keyframes drive { 
    0% { transform: translateX(-100px); opacity: 0; }  
    20% { opacity: 1; } 
    80% { opacity: 1; } 
    100% { transform: translateX(100px); opacity: 0; } 
}
.anim-cook { display: inline-block; animation: pulseSmoke 1.5s ease-in-out infinite; font-size: 3.5rem; color: #f59e0b; }
@keyframes pulseSmoke { 
    0% { transform: scale(1); opacity: 0.8; } 
    50% { transform: scale(1.1) translateY(-5px); opacity: 1; text-shadow: 0 10px 15px rgba(245, 158, 11, 0.4); } 
    100% { transform: scale(1); opacity: 0.8; } 
}
.anim-check { display: inline-block; animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; font-size: 3.5rem; color: #10b981; }
.anim-cancel { display: inline-block; animation: flash 1s infinite; font-size: 3.5rem; color: #ef4444; }
@keyframes flash { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* --- ÜRÜN VARYASYONLARI (PORSİYON) MODERN SEÇİM ALANI (Üst Tasarım Korundu) --- */
.variation-check { display: none; } 
.variation-label {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 18px; border: 1px solid var(--border-light); border-radius: var(--radius-sm);
    cursor: pointer; transition: all 0.2s ease; 
    font-weight: 500; color: var(--text-main); margin-bottom: 5px; font-size: 0.85rem;
    background-color: #fff;
}
.variation-label i { display: none; color: var(--brand-primary); font-size: 1.2rem; }
.variation-label:hover { border-color: var(--brand-primary); background-color: var(--bg-soft); }
.variation-check:checked + .variation-label {
    border-color: var(--brand-primary); 
    background-color: rgba(179, 36, 43, 0.04);
    color: var(--brand-dark); 
    box-shadow: 0 0 0 1px var(--brand-primary); /* Daha net bir focus çerçevesi */
}
.variation-check:checked + .variation-label i { display: block; animation: popIn 0.3s ease forwards; }

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- MODERN MİKTAR (ADET) BUTONLARI (Geniş Tasarım Korundu) --- */
.qty-wrapper-modal {
    background: var(--bg-soft); border: 1px solid var(--border-light);
    border-radius: var(--radius-sm); padding: 4px; display: flex; align-items: center; justify-content: space-between;
}
.qty-btn {
    background: #fff; border: 1px solid var(--border-light); width: 36px; height: 36px; 
    border-radius: 8px; font-weight: 800; display: flex; align-items: center; justify-content: center;
    color: var(--brand-dark); transition: all 0.2s; box-shadow: none;
}
.qty-btn:hover { color: var(--brand-primary); border-color: var(--brand-primary); background: #f1f5f9; transform: translateY(-1px); }

/* --- MODAL (POPUP) KURUMSAL TASARIM (Geniş Çerçeve Korundu) --- */
.modal-content-modern { 
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light); 
    overflow: hidden; box-shadow: var(--shadow-lg);
    background: #fff;
}
.modal-body-modern { padding: 28px; }
.modal-close-btn {
    position: absolute; top: 15px; right: 15px; 
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(5px);
    border: 1px solid var(--border-light); width: 34px; height: 34px; 
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    box-shadow: none; z-index: 10; transition: all 0.2s ease; color: var(--brand-dark); font-size: 1.1rem;
}
.modal-close-btn:hover { transform: scale(1.05); color: var(--brand-primary); border-color: var(--brand-primary); background: #fff; }

.modal-img-wrapper { 
    position: relative; width: 100%; aspect-ratio: 1 / 1; max-height: 400px; 
    background: var(--brand-light); display: flex; align-items: center; justify-content: center; overflow: hidden;
    border-radius: var(--radius-sm); border: 1px solid var(--border-light);
}
.modal-img-wrapper img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 10px; }
.modal-title-main { font-family: var(--display-font); font-weight: 600; font-size: 1.3rem; color: var(--brand-dark); letter-spacing: -0.2px; }
.modal-price-tag { font-weight: 700; font-size: 1.15rem; color: var(--brand-dark); }
.btn-add-final {
    height: 44px; background: var(--brand-primary); color: #fff; border: none; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.95rem; transition: 0.25s;
}
.btn-add-final:hover { background: var(--brand-primary-dark); }

/* --- YENİ HERO SLIDER ALANI TASARIMI (TAM EKRAN BACKGROUND) --- */
.hero-section { position: relative; background: var(--brand-dark); padding: 0; border-bottom: none; }
.hero-slide-fullscreen {
    position: relative; width: 100%; height: 80vh; min-height: 500px; 
    background-size: cover; background-position: center; background-repeat: no-repeat;
    display: flex; align-items: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to left, rgba(22, 19, 15, 0.1) 0%, rgba(22, 19, 15, 0.9) 100%); z-index: 1;
}
.hero-content-wrapper { position: relative; z-index: 2; width: 100%; padding-top: 1rem !important; padding-bottom: 1rem !important; }

/* Tipografi */
.hero-subtitle { font-family: var(--display-font); font-style: italic; font-weight: 500; color: var(--gold); font-size: 1.3rem; margin-bottom: 8px; display: block; letter-spacing: 0.01em; }
.hero-title { font-weight: 600; font-size: 3.2rem; line-height: 1.12; margin-bottom: 15px; font-family: var(--display-font); letter-spacing: -0.01em; text-shadow: 0 4px 20px rgba(0,0,0,0.35); }
.hero-title span { font-style: italic; }
.hero-desc { font-size: 1.05rem; max-width: 90%; margin-bottom: 20px; line-height: 1.5; }

/* 20 Dk. Rozeti */
.hero-badge-white { 
    background: #fff; padding: 8px 18px; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 8px; 
    font-weight: 800; color: #1e1e1e; font-size: 0.9rem; border: 1px solid var(--border-light);
}
.hero-badge-white div { width: 30px !important; height: 30px !important; }
.hero-badge-white div i { font-size: 0.95rem !important; }

/* Buton Tasarımları */
.btn-pill-primary { background-color: var(--brand-primary); color: #fff; font-weight: 600; border-radius: var(--radius-sm); padding: 12px 26px; transition: all 0.25s ease; border: none; display: inline-flex; align-items: center; font-size: 0.9rem; text-decoration: none; box-shadow: var(--shadow-sm); }
.btn-pill-primary:hover { background-color: var(--brand-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-pill-outline { background-color: transparent; color: #1e1e1e; font-weight: 600; border-radius: var(--radius-sm); padding: 12px 26px; transition: all 0.25s ease; border: 1px solid #1e1e1e; display: inline-flex; align-items: center; font-size: 0.9rem; text-decoration: none; }
.btn-pill-outline:hover { background-color: #1e1e1e; color: #fff; transform: translateY(-2px); }
.btn-pill-outline.bg-white:hover { background-color: var(--border-light) !important; color: var(--brand-dark) !important; transform: translateY(-2px); }
.btn-modern-primary { background-color: var(--brand-primary); color: #fff; font-weight: 700; border-radius: var(--radius-sm); padding: 11px 26px; transition: all 0.25s ease; border: none; display: inline-flex; align-items: center; font-size: 0.9rem; box-shadow: var(--shadow-sm); }
.btn-modern-primary:hover { background-color: var(--brand-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* --- ANA SAYFA HAKKIMIZDA MODÜLÜ --- */
.home-about-wrapper {
    position: relative; padding: 60px 0; margin-top: -20px; 
    background: linear-gradient(to bottom, var(--bg-soft) 0%, var(--bg-soft) 20px, var(--brand-dark) 20px, var(--brand-dark) 35%, var(--bg-soft) 35%, var(--bg-soft) 100%);
}
.about-main-card { background: #ffffff; border-radius: var(--radius-lg); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); padding: 50px; }
.about-story-grid { display: flex; flex-wrap: wrap; gap: 40px; }
.about-story-content { flex: 1.5; min-width: 0; }
.about-image-side { flex: 1; min-width: 0; }
.about-story-content h2 { font-family: var(--display-font); font-weight: 600; color: #16130f; font-size: 2rem; margin-bottom: 20px; letter-spacing: -0.01em; }
.about-story-content p { line-height: 1.8; color: var(--text-muted); font-size: 1.05rem; margin-bottom: 20px; }
.about-highlight-box { background: var(--brand-light); border-left: 4px solid var(--brand-primary); padding: 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 25px 0; font-size: 1rem; color: var(--brand-dark); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); border-right: 1px solid var(--border-light); }
.about-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--border-light); text-align: center; }
.about-stat-val { display: block; font-family: var(--display-font); font-size: 2.1rem; font-weight: 600; color: #b3242b; }
.about-stat-lbl { font-weight: 700; color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px;}
.about-img-rounded { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); min-height: 300px;}

/* --- MENÜ VE KATEGORİ YAPISI --- */
.category-title { font-weight: 800; color: var(--brand-dark); letter-spacing: -0.5px; font-size: 1.3rem; }
.category-line { width: 28px; height: 3px; background-color: var(--brand-primary); border-radius: 2px; margin-top: 4px; }
.btn-view-all { font-size: 0.7rem; font-weight: 700; border-radius: 4px; border: 1px solid var(--border-light); color: var(--text-muted); padding: 5px 12px; transition: 0.2s; background: #fff; text-decoration: none; }
.btn-view-all:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

.category-showcase-container { width: 100%; position: relative; display: flex; align-items: center; justify-content: center; padding: 0 40px; }
.category-showcase-wrapper { display: flex; gap: 24px; overflow-x: auto; max-width: 100%; padding-bottom: 15px; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth; }
.category-showcase-wrapper::-webkit-scrollbar { display: none; }
.category-showcase-card { display: flex; flex-direction: column; align-items: center; min-width: 145px; cursor: pointer; transition: transform 0.2s ease; }
.category-showcase-card:hover { transform: translateY(-4px); }
.category-showcase-img-box { width: 145px; height: 145px; background-color: var(--brand-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; padding: 0; overflow: hidden; transition: box-shadow 0.25s ease, transform 0.25s ease; border: 1px solid var(--border-light); box-shadow: none; }
.category-showcase-card:hover .category-showcase-img-box { box-shadow: var(--shadow-md); border-color: var(--brand-primary); transform: translateY(-3px); }
.category-showcase-img-box img { width: 100%; height: 100%; object-fit: cover; }
.category-showcase-title { color: var(--brand-dark); font-weight: 700; font-size: 1rem; margin-bottom: 4px; text-align: center; }
.category-showcase-count { color: var(--text-muted); font-size: 0.8rem; text-align: center; font-weight: 400; }

.category-scroll-btn {
    position: absolute; top: calc(50% - 15px); transform: translateY(-50%); width: 36px; height: 36px;
    background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    color: var(--brand-dark); box-shadow: var(--shadow-sm); cursor: pointer; z-index: 5; transition: all 0.25s;
}
.category-scroll-btn:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.category-scroll-btn.left-btn { left: 0px; }
.category-scroll-btn.right-btn { right: 0px; }

/* --- YENİLENEN ÜRÜN KARTLARI --- */
.modern-product-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    
    /* Çizgi yine 1px ama kırmızı rengi %30 şeffaflıkta veriyoruz. Bu çizgiyi zarif ve ipince gösterir */
    border: 1px solid rgba(179, 36, 43, 0.3); 
    
    padding: 12px 16px;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    
    /* Orijinal siyah/gri gölge yerine, markanın kırmızı tonunda çok hafif (sadece %8) bir gölge ekliyoruz */
    box-shadow: 0 4px 15px rgba(179, 36, 43, 0.08); 
}

/* Fareyle üzerine gelindiğinde çerçevenin tam kırmızı ve gölgenin biraz daha belirgin olması için: */
.modern-product-card:hover { 
    border-color: var(--brand-primary); 
    box-shadow: 0 8px 25px rgba(179, 36, 43, 0.15); 
    transform: translateY(-3px); 
}
.product-img-wrapper { cursor: pointer; }
.product-img-box { 
    width: 100%; aspect-ratio: 1 / 1; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 12px; 
    background: var(--brand-light); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center;
}
.product-img-box img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.product-favorite-btn { transition: 0.2s; }
.product-favorite-btn:hover i { color: var(--brand-primary) !important; }
.product-title { font-weight: 600; font-size: 0.90rem; color: var(--brand-dark); margin-bottom: 8px; line-height: 1.35; }
.allergen-badge {
    font-size: 0.65rem; color: #a15c00; background-color: #fef3c7; padding: 3px 6px; border-radius: 4px;
    display: inline-flex; align-items: center; gap: 4px; margin-bottom: 6px; font-weight: 700; width: fit-content; border: 1px solid #fde68a;
}
.product-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; height: 32px; overflow: hidden; margin-bottom: 8px; }
.current-price { color: var(--brand-dark) !important; }
.price-original + .current-price { color: #157a45 !important; }

/* --- ANA FOOTER TASARIMI (Renk güncellemeleri yapıldı) --- */
.site-footer-modern { margin-top: auto; background-color: var(--top-green); color: #f8fafc; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-contact-list li { margin-bottom: 15px; font-size: 0.85rem; color: #ffffff; display: flex; align-items: flex-start; }
.footer-contact-list li i { color: var(--gold); margin-right: 12px; font-size: 1.1rem; margin-top: 2px; }
.footer-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 25px; color: #ffffff; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #ffffff; text-decoration: none; font-size: 0.85rem; transition: 0.25s; display: flex; align-items: center; font-weight: 500; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-icon-badge { background-color: var(--brand-primary); color: #fff; border-radius: var(--radius-sm); width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.65rem; margin-right: 10px; font-weight: 800; }
.footer-links i { color: var(--gold); margin-right: 10px; font-size: 1.1rem; }


/* --- MOBİL ALT NAVİGASYON --- */
.mobile-bottom-nav {
    position: fixed; bottom: 0; left: 0; width: 100%; background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--border-light);
    box-shadow: var(--shadow-md, 0 -4px 25px rgba(0, 0, 0, 0.04)); z-index: 1040; display: flex; justify-content: space-around; align-items: center;
    padding: 8px 10px; padding-bottom: calc(8px + env(safe-area-inset-bottom)); 
}
.mobile-nav-item {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-decoration: none; color: var(--text-muted); font-size: 0.75rem; font-weight: 700; 
    text-transform: none; letter-spacing: 0.2px; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); position: relative; padding: 6px 10px;
    border-radius: var(--radius-sm, 10px);
}
.mobile-nav-item i { font-size: 1.3rem; margin-bottom: 4px; transition: all 0.2s ease; color: var(--text-muted); }
.mobile-nav-item:active, .mobile-nav-item:hover { background-color: var(--brand-light); }
.mobile-nav-item:active i, .mobile-nav-item:hover i { color: var(--brand-primary); transform: translateY(-2px); }
.mobile-nav-item:active span, .mobile-nav-item:hover span { color: var(--brand-dark); }
.mobile-nav-badge {
    position: absolute; top: -2px; right: calc(50% - 18px); background: var(--brand-primary); color: #fff;
    font-size: 0.75rem; font-weight: 800; padding: 2px 6px; border-radius: 4px; line-height: 1; border: 2px solid #fff;
    animation: pulse-badge 2s infinite ease-in-out;
}
@keyframes pulse-badge { 0%, 100% { transform: scale(1); box-shadow: 0 2px 6px rgba(179, 36, 43, 0.25); } 50% { transform: scale(1.1); box-shadow: 0 4px 10px rgba(179, 36, 43, 0.4); } }

/* --- SWEETALERT ÖZEL TASARIM --- */
div:where(.swal2-container) div:where(.swal2-popup) { border-radius: var(--radius-lg, 20px) !important; padding: 32px 24px !important; border: 1px solid var(--border-light) !important; box-shadow: 0 10px 25px -5px rgba(22, 19, 15, 0.1) !important; font-family: 'Outfit', sans-serif !important; background: #ffffff !important; }
div:where(.swal2-container) h2:where(.swal2-title) { font-weight: 800 !important; color: var(--brand-dark) !important; font-size: 1.5rem !important; margin-bottom: 0.2em !important; }
div:where(.swal2-container) div:where(.swal2-html-container) { font-weight: 500 !important; color: var(--text-muted) !important; font-size: 0.95rem !important; line-height: 1.6 !important; margin-top: 0 !important; }
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm { background-color: var(--brand-dark) !important; color: #ffffff !important; border-radius: var(--radius-sm, 10px) !important; font-weight: 800 !important; font-family: 'Outfit', sans-serif !important; padding: 14px 36px !important; font-size: 0.95rem !important; letter-spacing: 0.5px !important; box-shadow: none !important; transition: all 0.2s ease !important; margin-top: 15px !important; border: 1px solid transparent !important;}
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:hover { background-color: #fff !important; color: var(--brand-dark) !important; border-color: var(--brand-dark) !important; transform: translateY(-2px) !important; box-shadow: none !important; }
div:where(.swal2-container) .swal2-icon { border-width: 0 !important; margin-top: 0 !important; margin-bottom: 20px !important; }
div:where(.swal2-container) div:where(.swal2-toast) { background: rgba(255, 255, 255, 0.95) !important; backdrop-filter: blur(10px) !important; border: 1px solid var(--border-light) !important; box-shadow: 0 5px 15px rgba(22, 19, 15, 0.05) !important; border-radius: 8px !important; padding: 16px 24px !important; color: var(--brand-dark) !important; }
div:where(.swal2-container) div:where(.swal2-toast) .swal2-title { font-weight: 700 !important; font-size: 0.95rem !important; color: var(--brand-dark) !important; letter-spacing: -0.2px !important; margin: 0 !important; }
div:where(.swal2-container) div:where(.swal2-toast) .swal2-timer-progress-bar { background-color: var(--brand-primary) !important; height: 3px !important; opacity: 0.8 !important; }
div:where(.swal2-container) div:where(.swal2-toast) .swal2-success-circular-line-right, div:where(.swal2-container) div:where(.swal2-toast) .swal2-success-circular-line-left, div:where(.swal2-container) div:where(.swal2-toast) .swal2-success-fix { background-color: transparent !important; }

/* --- RESPONSIVE (MOBİL) AYARLAR --- */
@media (max-width: 991px) {
    html, body { height: auto !important; } 
    /* body kısmındaki 130px'lik gereksiz boşluğu tamamen sildik */
    .site-footer-modern { display: block !important; padding-bottom: 80px; } /* Mobil menünün yüksekliği kadar içeriden boşluk bıraktık */
    .footer-title { padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 15px; }
    .footer-links { padding-top: 15px; padding-bottom: 15px; }
}

@media (min-width: 992px) {
    .mobile-bottom-nav { display: none !important; }
    .footer-collapse-lg-show { display: block !important; }
}

@media (max-width: 768px) {
    .hero-section { padding: 0; }
    .hero-slide-fullscreen { height: auto; min-height: 500px; padding: 40px 0; }
    .hero-overlay { background: linear-gradient(to top, rgba(22, 19, 15, 0.95) 0%, rgba(22, 19, 15, 0.4) 100%); }
    .hero-content-wrapper .text-start { text-align: center !important; }
    .hero-title { font-size: 2.4rem; margin-bottom: 10px; }
    .hero-desc { margin: 0 auto 20px auto; font-size: 0.9rem; text-align: center; }
    .hero-content-wrapper .justify-content-start { justify-content: center !important; }
    .d-flex.gap-3 { flex-direction: column; width: 100%; align-items: center; gap: 10px !important; }
    .btn-pill-primary, .btn-pill-outline { width: 80%; justify-content: center; }
    .about-main-card { padding: 30px 20px; }
    .about-story-grid { flex-direction: column; gap: 30px; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .home-about-wrapper { background: linear-gradient(to bottom, var(--bg-soft) 0%, var(--bg-soft) 20px, var(--brand-dark) 20px, var(--brand-dark) 15%, var(--bg-soft) 15%, var(--bg-soft) 100%); }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-badge-white { bottom: 0%; right: -5%; padding: 6px 14px; font-size: 0.8rem; }
    .hero-badge-white div { width: 24px !important; height: 24px !important; }
    .hero-badge-white div i { font-size: 0.8rem !important; }
    .category-showcase-container { padding: 0 35px; } 
    .category-scroll-btn { width: 30px; height: 30px; top: calc(50% - 15px); }
    .category-scroll-btn.left-btn { left: 2px; }
    .category-scroll-btn.right-btn { right: 2px; }
    .category-showcase-card { min-width: 115px; }
    .category-showcase-wrapper { gap: 12px; }
    .category-showcase-img-box { width: 115px; height: 115px; padding: 0; margin-bottom: 8px; border-radius: 50%; } 
    .category-showcase-title { font-size: 0.85rem; }
    .category-showcase-count { font-size: 0.75rem; }
    .modern-product-card { padding: 8px; }
    .product-img-box { aspect-ratio: 1.2 / 1; } 
    .product-title { font-size: 0.80rem; }
    .allergen-badge { font-size: 0.75rem; padding: 2px 4px; margin-bottom: 4px; }
    .allergen-badge span { max-width: 100px !important; }
    .product-desc { font-size: 0.7rem; height: 28px; margin-bottom: 6px; }
    .product-pricing { flex-direction: column; align-items: flex-start !important; gap: 0px !important; }
    .current-price { font-size: 1rem !important; }
    .modal-body-modern { padding: 16px !important; }
    .modal-img-wrapper { max-height: 300px; }
    .about-story-content h2 { font-size: 1.6rem; }
}
/* --- MİNİMAL ÇEREZ POLİTİKASI TASARIMI --- */
.minimal-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 360px;
    background-color: #ffffff;
    border: 1px solid var(--border-color, rgba(0,0,0,0.06));
    box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.08));
    border-radius: var(--radius-md, 16px);
    padding: 16px 20px;
    z-index: 99999;
    display: none; /* JavaScript ile görünür yapılacak */
    font-family: 'Outfit', sans-serif;
    align-items: center;
    gap: 15px;
    animation: slideUpCookie 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.minimal-cookie-text {
    font-size: 0.80rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.minimal-cookie-text strong {
    color: #111111;
    font-weight: 800;
    display: block;
    margin-bottom: 2px;
    font-size: 0.85rem;
}

.minimal-cookie-btn {
    background-color: var(--brand-primary, #b3242b);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm, 8px);
    padding: 8px 18px;
    font-size: 0.80rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.minimal-cookie-btn:hover {
    background-color: var(--brand-primary-dark, #8f1c22);
    transform: translateY(-1px);
}

@keyframes slideUpCookie {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobilde Butonların Üstünde Durması İçin Ayar */
@media (max-width: 991px) {
    .minimal-cookie-banner {
        bottom: 95px; 
        left: 15px;
        right: 15px;
        max-width: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 16px;
    }
    .minimal-cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* YENİ: Ana Sayfa İndirim ve Rozet Tasarımları */
.discount-timer {
    position: absolute; top: 8px; left: 8px;
    background: rgba(179, 36, 43, 0.95);
    color: #fff; padding: 4px 8px; border-radius: var(--radius-sm, 8px);
    font-size: 0.75rem; font-weight: 700; z-index: 3;
    display: flex; align-items: center; gap: 5px;
    box-shadow: var(--shadow-sm, 0 2px 6px rgba(0,0,0,0.15));
    backdrop-filter: blur(4px); letter-spacing: 0.5px;
}

.badges-wrapper {
    position: absolute; bottom: 8px; left: 8px;
    display: flex; flex-direction: column; gap: 4px; z-index: 3;
}
.badge-chef, .badge-bestseller {
    background: #ffffff;
    padding: 3px 6px; border-radius: 6px;
    font-size: 0.75rem; font-weight: 700;
    border: 1px solid var(--border-light, #e2e8f0);
    display: flex; align-items: center; gap: 4px;
    width: fit-content;
    box-shadow: var(--shadow-sm, none);
}
.badge-chef { color: #5a4a35; }
.badge-chef i { color: var(--gold, #d4af37); }
.badge-bestseller { color: var(--brand-primary, #b91c1c); }
.badge-bestseller i { color: var(--brand-primary, #ef4444); }

.price-original { 
    text-decoration: line-through; 
    color: var(--text-muted, #64748b); 
    font-size: 1.25rem !important; /* Bootstrap fs-5 ile aynı büyüklükte olması için 1.25rem ayarlandı */
    margin-right: 8px; 
    font-weight: 500; 
    opacity: 0.7;
}

.price-blink { animation: blinker 1.2s linear infinite; }
@keyframes blinker { 50% { opacity: 0.3; } }

/* YENİ: Yorum Kartları Tasarımı */
.review-card {
    background: #fff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: var(--radius-md, 16px);
    padding: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: var(--shadow-sm, 0 2px 10px rgba(0,0,0,0.05));
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md, 0 14px 30px rgba(0,0,0,0.08));
}
.review-author {
    font-weight: 700;
    color: var(--brand-dark, #111);
    margin-bottom: 2px;
}
.review-date {
    font-size: 0.75rem;
    color: var(--text-muted, #64748b);
}
.review-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-main, #334155);
    margin-top: 12px;
    flex-grow: 1;
}
.g-icon {
    width: 24px;
    height: 24px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* YENİ: Yorumlar Slider Tasarımı */
.reviews-slider-container {
    position: relative;
}
.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    /* Scrollbar'ı gizle */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.reviews-slider::-webkit-scrollbar {
    display: none;
}
.review-slide-item {
    flex: 0 0 100%; /* Mobilde tek kart */
    scroll-snap-align: start;
}
@media (min-width: 768px) {
    .review-slide-item {
        flex: 0 0 calc(33.333% - 10px); /* Masaüstünde yan yana 3 kart, kalanı scroll */
    }
}
.review-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm, 0 4px 6px rgba(0,0,0,0.1));
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
}
.review-scroll-btn:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.review-scroll-btn.left { left: -15px; }
.review-scroll-btn.right { right: -15px; }