/* Yeni Ana Renk Paleti - Daha Rafine ve Modern */
:root {
    --primary-color: #A02020;     /* Derin, Asil Bordo Kırmızısı */
    --secondary-color: #CC9933;   /* Topraksı, Sıcak Altın Sarısı */
    --accent-color: #FFBF00;      /* Canlı, Parlak Altın */
    --highlight-light: #F5F5F5;   /* Temiz, Yumuşak Açık Gri */
    --text-dark: #2C2C2C;         /* Yumuşak Kömür Siyahı */
    --text-medium: #7A7A7A;       /* İkincil Metin Rengi */
    --text-light: #F8F9FA;        /* Açık Gri (Gerekirse) */
    --bg-light: #F9F9F9;          /* Temiz Kirli Beyaz Arka Plan */
    --bg-white: #FFFFFF;          /* Saf Beyaz Arka Plan */
    --bg-dark-custom: #1E1E1E;    /* Modern Koyu Gri/Siyah Footer */

    /* Sosyal medya ikon renkleri için varsayılanlar */
    --social-facebook: #3b5998;
    --social-twitter: #00acee;
    --social-whatsapp-color: #25D366;
    --social-instagram: #C13584;

    /* Yeni Genel Değişkenler */
    --border-radius-base: 8px; /* Genel kenar yuvarlatma */
    --box-shadow-light: 0 2px 8px rgba(0,0,0,0.05); /* Hafif gölge */
    --box-shadow-medium: 0 4px 15px rgba(0,0,0,0.08); /* Orta gölge */
    --box-shadow-hover: 0 8px 25px rgba(0,0,0,0.15); /* Hover'da belirginleşen gölge */
    --transition-base: all 0.3s ease-in-out; /* Genel geçiş süresi */
}

/* Genel Ayarlar */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    padding-top: 100px; /* Navbar yüksekliği için boşluk */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Custom Utilities */
.text-primary-custom { color: var(--primary-color) !important; }
.text-secondary-custom { color: var(--secondary-color) !important; }
.text-accent-custom { color: var(--accent-color) !important; }
.text-highlight-light { color: var(--highlight-light) !important; }
.text-medium-custom { color: var(--text-medium) !important; }

.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-secondary-custom { background-color: var(--secondary-color) !important; }
.bg-accent-custom { background-color: var(--accent-color) !important; }
.bg-dark-custom { background-color: var(--bg-dark-custom) !important; }


/* Buton Stilleri */
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    transition: var(--transition-base);
    padding: 12px 30px;
    border-radius: var(--border-radius-base);
    box-shadow: var(--box-shadow-medium);
    text-transform: uppercase;
    font-size: 0.95rem;
}
.btn-primary-custom:hover {
    background-color: #8C1C1C;
    border-color: #8C1C1C;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}
.btn-outline-primary-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-base);
    padding: 10px 28px;
    border-radius: var(--border-radius-base);
    text-transform: uppercase;
    font-size: 0.95rem;
}
.btn-outline-primary-custom:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-light);
}
.btn-accent-custom {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition-base);
    padding: 12px 30px;
    border-radius: var(--border-radius-base);
    box-shadow: var(--box-shadow-medium);
    text-transform: uppercase;
    font-size: 0.95rem;
}
.btn-accent-custom:hover {
    background-color: #E6AC00;
    border-color: #E6AC00;
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}
.btn-outline-accent-custom {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition-base);
    padding: 10px 28px;
    border-radius: var(--border-radius-base);
    text-transform: uppercase;
    font-size: 0.95rem;
}
.btn-outline-accent-custom:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-light);
}

/* Badge Stilleri */
.badge.bg-primary-custom {
    background-color: var(--primary-color) !important;
    padding: 0.5em 1em;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.85em;
}
.badge.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
    padding: 0.5em 1em;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.85em;
}

/* Navbar Ayarları */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--box-shadow-light);
    padding: 0.8rem 0;
    transition: var(--transition-base);
    z-index: 1040;
    border-bottom: none;
    position: fixed;
    top: 0;
    width: 100%;
}

/* GÜNCELLENDİ: Navbar içindeki container'ın mobil ve masaüstünde doğru hizalanmasını sağlar */
.navbar .container, .navbar .container-fluid {
    display: flex;
    justify-content: space-between; /* Logo ve menü butonunu iki uca yaslar */
    align-items: center;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Navbar Toggle Butonu */
.navbar-toggler {
    border: 1px solid var(--highlight-light);
    border-radius: var(--border-radius-base);
    background-color: var(--highlight-light);
    padding: 0.4rem 0.6rem;
    transition: background-color 0.3s ease;
    z-index: 1060;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 .25rem rgba(160, 32, 32, 0.25);
    outline: 0;
}
.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='%23A02020' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.4em;
    height: 1.4em;
}

/* ===== LOGO STİLLERİ GÜNCELLENDİ ===== */
.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    z-index: 1050;
}
.navbar-brand img {
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.2));
    max-height: 75px;
    height: auto;
    width: auto;
    transition: var(--transition-base);
}
.navbar-brand .brand-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
    margin-left: 10px;
}
.navbar-brand .brand-slogan-line {
    display: flex;
    align-items: baseline;
    margin-top: 0;
}
.navbar-brand .brand-imza {
    font-family: 'Lora', serif;
    font-size: 2.2rem; /* Büyütüldü */
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--primary-color);
    margin-right: 8px; /* Aralık artırıldı */
    text-transform: uppercase;
}
.navbar-brand .brand-kokorec {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem; /* Büyütüldü */
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
}
.navbar.scrolled .navbar-brand img {
    max-height: 55px;
}
.navbar.scrolled .navbar-brand .brand-imza {
    font-size: 1.8rem; /* Scrolled durumu da büyütüldü */
}
.navbar.scrolled .navbar-brand .brand-kokorec {
    font-size: 1rem; /* Scrolled durumu da büyütüldü */
}
/* ===== LOGO STİLLERİ BİTTİ ===== */


/* Nav Linkleri Stilleri */
.navbar-light .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-base);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background-color: transparent;
    transform: translateY(0);
    box-shadow: none;
}
.navbar-light .navbar-nav .nav-link:hover {
    background-color: var(--highlight-light);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-light);
}
.navbar-light .navbar-nav .nav-link.active {
    background-color: var(--primary-color);
    color: white !important;
    font-weight: 600;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    transform: translateY(0);
}

/* Yönetim Paneli Butonu Navbar'da */
.navbar .btn-admin {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 6px 18px;
    border-radius: var(--border-radius-base);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-base);
}
.navbar .btn-admin:hover {
    background-color: #B3862C;
    border-color: #B3862C;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-light);
}

/* Hero Section - Carousel İçin */
.hero-carousel-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: -100px;
    padding-top: 100px;
    display: flex;
    align-items: center;
}
#heroCarousel .carousel-item {
    min-height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#heroCarousel .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
#heroCarousel .carousel-caption {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    padding-bottom: 100px;
    text-align: center;
    width: 100%;
    left: 0;
    right: 0;
    max-width: 800px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
#heroCarousel .carousel-caption h1 {
    font-size: 4.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
    animation-delay: 0.4s;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    line-height: 1.1;
}
#heroCarousel .carousel-caption p {
    font-size: 1.8rem;
    margin-top: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    animation-delay: 0.8s;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
#heroCarousel .carousel-caption .btn {
    animation-delay: 1.2s;
    padding: 14px 35px;
    font-size: 1.1rem;
}
#heroCarousel .carousel-indicators button {
    background-color: var(--text-light);
    border: 1px solid var(--accent-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.7;
    transition: var(--transition-base);
}
#heroCarousel .carousel-indicators button.active {
    background-color: var(--accent-color);
    opacity: 1;
    transform: scale(1.2);
}
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    background-color: rgba(160, 32, 32, 0.6);
    border-radius: 50%;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}
#heroCarousel .carousel-control-prev-icon:hover,
#heroCarousel .carousel-control-next-icon:hover {
    background-color: rgba(160, 32, 32, 0.8);
}
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 7%;
}

/* Genel Bölüm Başlıkları */
.section-title {
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 4rem !important;
    font-size: 2.8rem;
    letter-spacing: -0.5px;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}
.section-title.text-start::after {
    left: 0;
    transform: translateX(0);
}

/* Scroll Animasyonları için Yeni Sınıf */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hakkımızda Bölümü */
#about {
    padding: 80px 0;
    background-color: var(--bg-white);
}
#about img {
    border-radius: var(--border-radius-base);
    box-shadow: var(--box-shadow-medium);
    transition: var(--transition-base);
}
#about img:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

/* Ürünler Bölümü */
#products {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.product-filter-group .btn {
    border-radius: 50px !important;
    margin: 0 6px;
    min-width: 140px;
    font-size: 1rem;
}
.product-filter-group .btn-outline-primary-custom.active {
    background-color: var(--primary-color) !important;
    color: white !important;
    box-shadow: var(--box-shadow-light);
}
.product-grid .card {
    border: none;
    border-radius: var(--border-radius-base);
    overflow: hidden;
    transition: var(--transition-base);
    background-color: var(--bg-white);
    box-shadow: var(--box-shadow-medium);
}
.product-grid .card:hover {
    transform: translateY(-12px);
    box-shadow: var(--box-shadow-hover);
}
.product-grid .card-img-top {
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
}
.product-grid .card-body {
    padding: 1.5rem;
}
.product-grid .card-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

/* Üretim Süreci İkonları */
#production-process {
    padding: 80px 0;
    background-color: var(--bg-white);
}
.process-steps-container {
    padding: 20px 0;
}
.process-step {
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-base);
    transition: var(--transition-base);
    box-shadow: var(--box-shadow-light);
    border: 1px solid rgba(0,0,0,.03);
}
.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-medium);
}
.process-step .icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--box-shadow-light);
    margin: 0 auto; /* İkonları ortalamak için eklendi */
}
.process-step h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 12px;
    font-size: 1.4rem;
}
.process-step p {
    font-size: 0.95rem;
}

/* Hijyen ve Sertifikalar */
#certificates {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.certificate-icons img {
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 0.2rem 0.4rem rgba(0,0,0,.08));
}
.certificate-icons h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 18px;
    font-size: 1.2rem;
}

/* Şubelerimiz Kartları */
#branches {
    padding: 80px 0;
    background-color: var(--bg-white);
}
.branch-cards .card {
    border: none;
    border-radius: var(--border-radius-base);
    background-color: var(--bg-white);
    box-shadow: var(--box-shadow-medium);
    transition: var(--transition-base);
}
.branch-cards .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}
.branch-cards .card-body i {
    color: var(--primary-color);
}
.branch-cards .card-title i {
    color: var(--accent-color);
}
.branch-cards .card-text i {
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

/* Blog Kartları */
#blog {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.blog-posts-grid .card {
    border: none;
    border-radius: var(--border-radius-base);
    background-color: var(--bg-white);
    box-shadow: var(--box-shadow-medium);
    transition: var(--transition-base);
}
.blog-posts-grid .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}
.blog-posts-grid .blog-img-height {
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
}
.blog-posts-grid .card-title {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}
.blog-posts-grid .card-footer {
    background-color: var(--bg-white) !important;
    border-top: 1px solid rgba(0,0,0,.03);
}
.blog-posts-grid .card-footer small {
    color: var(--text-medium) !important;
    font-weight: 500;
    font-size: 0.85rem;
}
.blog-posts-grid .card-footer i {
    color: var(--text-medium);
}

/* İletişim Formu */
#contact {
    padding: 80px 0;
    background-color: var(--bg-white);
}
.contact-form-custom {
    background-color: var(--bg-white);
    box-shadow: var(--box-shadow-medium);
    border-radius: var(--border-radius-base) !important;
    padding: 3rem !important;
}
.contact-form-custom .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.contact-form-custom .form-control {
    border-radius: var(--border-radius-base);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}
.contact-form-custom .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(160, 32, 32, 0.2);
}

/* Hover Efektleri */
.hover-elevate {
    transition: var(--transition-base);
}
.hover-elevate:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover) !important;
}
.hover-accent:hover {
    color: var(--accent-color) !important;
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--social-whatsapp-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition-base);
}
.whatsapp-button:hover {
    background-color: #1DA851;
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Sosyal Medya İkon Renkleri (detay sayfaları için) */
.social-share-buttons .fa-facebook-square { color: var(--social-facebook); }
.social-share-buttons .fa-twitter-square { color: var(--social-twitter); }
.social-share-buttons .fa-whatsapp-square { color: var(--social-whatsapp-color); }
.social-share-buttons .fa-instagram-square { color: var(--social-instagram); }

/* Yorum Mesajı Alanı Stil */
#commentFormMessage.alert {
    padding: 12px;
    margin-top: 15px;
    border-radius: var(--border-radius-base);
    font-weight: 600;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    font-size: 0.9rem;
}
#commentFormMessage.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border-color: #badbcc;
}
#commentFormMessage.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* Beğeni Butonu Rengi */
.like-button {
    cursor: pointer;
    color: var(--text-medium);
    transition: var(--transition-base);
}
.like-button.liked {
    color: #dc3545;
    transform: scale(1.1);
}
.like-button:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Yeni WhatsApp Mesaj Gönder Butonu Stili */
.btn-whatsapp-custom {
    background-color: var(--social-whatsapp-color);
    border-color: var(--social-whatsapp-color);
    color: white;
    font-weight: 600;
    transition: var(--transition-base);
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    font-size: 0.95rem;
}
.btn-whatsapp-custom:hover {
    background-color: #1DA851;
    border-color: #1DA851;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* Yeni Sosyal Medya Takip Alanı Stili */
.social-follow-section {
    padding: 18px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-base);
    margin-top: 25px;
    box-shadow: inset 0 0 4px rgba(0,0,0,0.03);
}
.social-follow-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.social-follow-icon {
    font-size: 2rem;
    color: var(--text-dark);
    transition: var(--transition-base);
    margin: 0 8px;
}
.social-follow-icon .fa-facebook-f { color: var(--social-facebook); }
.social-follow-icon .fa-instagram { color: var(--social-instagram); }
.social-follow-icon .fa-twitter { color: var(--social-twitter); }
.social-follow-icon:hover {
    transform: scale(1.1);
    filter: brightness(0.9);
}


/* Responsive Düzenlemeler */
@media (max-width: 991.98px) { /* Medium ve daha küçük ekranlar */
    body {
        padding-top: 80px;
    }
    .navbar {
        padding: 0.6rem 0;
    }

    /* LOGO BOYUTLARI ARTIRILDI (TABLET) */
    .navbar-brand img {
        max-height: 65px;
    }
    .navbar-brand .brand-imza {
        font-size: 1.8rem; 
    }
    .navbar-brand .brand-kokorec {
        font-size: 1rem; 
    }

    /* GÜNCELLENDİ: Mobil Navbar Collapse (Menü açıldığında) */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
        border-radius: 0 0 var(--border-radius-base) var(--border-radius-base);
        padding: 15px 20px;
        text-align: center; /* Menü linklerini ortalar */
        z-index: 1039;
    }
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        color: var(--primary-color) !important;
        font-size: 1rem;
        display: inline-block; /* Genişliği içeriğe göre ayarlar */
        width: auto;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--secondary-color) !important;
        background-color: transparent;
        box-shadow: none;
        transform: none;
    }
    .navbar .btn-admin {
        margin-top: 10px;
        width: 100%;
        text-align: center;
        border-radius: var(--border-radius-base);
        padding: 8px 20px;
    }

    /* Hero Section Mobil */
    #heroCarousel .carousel-caption {
        padding-bottom: 80px;
    }
    #heroCarousel .carousel-caption h1 {
        font-size: 3rem;
    }
    #heroCarousel .carousel-caption p {
        font-size: 1.4rem;
    }
    #heroCarousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
    .section-title {
        font-size: 2.4rem;
        margin-bottom: 3.5rem !important;
    }
}

@media (max-width: 767.98px) { /* Small ve daha küçük ekranlar */
    body {
        padding-top: 70px;
    }

    /* YENİ: Bu ekrandan itibaren genel ortalamayı güçlendiriyoruz */
    #about .col-lg-6,
    #production-process .process-step,
    #certificates .certificate-icons,
    #contact .col-lg-7 {
        text-align: center; /* İçerikleri ortalar */
        margin-left: auto;
        margin-right: auto;
    }

    /* Hakkımızda bölümündeki resmin altında mobil için boşluk */
    #about img {
        margin-bottom: 2rem;
    }

    /* YENİ: Sola hizalı başlıkları mobil'de ortala */
    .section-title.text-start {
        text-align: center !important;
    }
    .section-title.text-start::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* LOGO BOYUTLARI ARTIRILDI (MOBİL) */
    .navbar-brand img {
        max-height: 55px;
    }
    .navbar-brand .brand-imza {
        font-size: 1.6rem;
    }
    .navbar-brand .brand-kokorec {
        font-size: 0.9rem;
    }

    #heroCarousel .carousel-caption {
        padding-bottom: 50px;
        max-width: 90%;
    }
    #heroCarousel .carousel-caption h1 {
        font-size: 2.2rem;
        margin-bottom: 0.3rem;
        line-height: 1.1;
    }
    #heroCarousel .carousel-caption p {
        font-size: 1.1rem;
        margin-top: 8px;
        line-height: 1.3;
    }
    #heroCarousel .carousel-caption .btn {
        padding: 8px 18px;
        font-size: 0.9rem;
        margin-top: 15px;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem !important;
    }
    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .process-step {
        margin-bottom: 25px; /* Mobil'de adımlar arasına boşluk */
    }
}

@media (max-width: 575.98px) { /* Extra small ekranlar */
    body {
        padding-top: 65px;
    }

    /* LOGO BOYUTLARI ARTIRILDI (KÜÇÜK MOBİL) */
    .navbar-brand img {
        max-height: 50px;
    }
    .navbar-brand .brand-imza {
        font-size: 1.4rem;
    }
    .navbar-brand .brand-kokorec {
        font-size: 0.8rem;
    }

    .navbar-brand .brand-text-container {
        margin-left: 8px;
    }

    #heroCarousel .carousel-caption {
        padding-bottom: 40px;
        max-width: 95%;
        padding-left: 10px;
        padding-right: 10px;
    }
    #heroCarousel .carousel-caption h1 {
        font-size: 1.8rem;
    }
    #heroCarousel .carousel-caption p {
        font-size: 0.9rem;
        margin-top: 5px;
    }
    #heroCarousel .carousel-caption .btn {
        padding: 7px 15px;
        font-size: 0.85rem;
        margin-top: 10px;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem !important;
    }
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }
    .contact-form-custom {
        padding: 2rem !important;
    }
}


/* =============================================== */
/* === YENİ WHATSAPP SİPARİŞ BÖLÜMÜ STİLLERİ === */
/* =============================================== */

#whatsapp-order-section {
    background-color: var(--social-whatsapp-color, #25D366);
    color: white;
    padding: 60px 0;
}
#whatsapp-order-section .whatsapp-order-title {
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
#whatsapp-order-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}
#whatsapp-order-section .whatsapp-order-button {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
    color: var(--social-whatsapp-color);
    border: 2px solid var(--bg-white);
}
#whatsapp-order-section .whatsapp-order-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    background-color: var(--bg-white);
    color: #1DA851;
}

/* Navbar'daki eski WhatsApp butonu stili - referans için kalabilir veya silinebilir */
.navbar .btn-navbar-whatsapp {
    background-color: var(--social-whatsapp-color, #25D366);
    border-color: var(--social-whatsapp-color, #25D366);
    color: white;
    padding: 6px 18px;
    border-radius: var(--border-radius-base);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar .btn-navbar-whatsapp:hover {
    background-color: #1DA851;
    border-color: #1DA851;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-light);
}

@media (max-width: 991.98px) {
    .navbar .btn-navbar-whatsapp {
        margin-top: 10px;
        width: 100%;
        padding: 8px 20px;
    }
}
/* Navbar içindeki logonun ve butonun mobil sürümde yan yana durmasını sağlar */
.navbar > .container, 
.navbar > .container-fluid {
    display: flex !important;             /* Kapsayıcıyı esnek kutu yapar. */
    flex-wrap: nowrap !important;          /* Elemanların alt satıra kaymasını engeller. */
    justify-content: space-between !important; /* Elemanların arasını açarak iki uca yaslar. */
    align-items: center !important;        /* Elemanları dikey olarak ortalar. */
}
/* ===== ÜRÜN KARTI FİYAT ETİKETİ STİLLERİ ===== */

/* Görseli ve fiyat etiketini içeren kapsayıcı */
.product-image-container {
    position: relative; /* İçindeki etiketlerin konumlanabilmesi için */
    display: block;
    overflow: hidden; /* Kenar yuvarlatmanın düzgün çalışması için */
    border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
}

/* Fiyat etiketinin kendisi */
.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color); /* Ana marka rengi */
    color: white;
    padding: 8px 14px;
    border-radius: var(--border-radius-base);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    z-index: 10;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px); /* Destekleyen tarayıcılarda hafif bulanıklık */
    -webkit-backdrop-filter: blur(2px);
}

/* Fiyat miktarı */
.price-badge .price-amount {
    margin-right: 4px;
}

/* "/ KG" birimi */
.price-badge .price-unit {
    font-size: 0.8em;
    font-weight: 500;
    opacity: 0.9;
}

/* Kartın üzerine gelince etiketin hafifçe büyümesi */
.product-card-hover:hover .price-badge {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* ===== STİLLER BİTTİ ===== */