/* ==========================================================================
   Şehr-i Nizip Baklava — Profesyonel Tema Katmanı (Override)
   Ana renkler: Yeşil + Bordo (premium altın aksanlı)
   NOT: Bu dosya style.css'ten SONRA yüklenir ve sadece görünümü günceller.
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800;900&display=swap");

:root {
    --brand-green: #1f6b3a;
    --brand-green-dark: #144527;
    --brand-green-light: #2e8b57;
    --brand-green-soft: #eaf3ec;

    --brand-bordo: #6e1f2e;
    --brand-bordo-dark: #4f1421;
    --brand-bordo-light: #8a2738;

    --brand-gold: #c8a24a;
    --brand-gold-light: #e3c87f;

    --brand-ink: #1c2b22;
    --brand-muted: #5d6b62;

    /* Sıcak krem zemin (yeşil + bordo ile uyumlu) */
    --brand-cream: #faf4e9;
    --brand-cream-soft: #f4ead6;
    --brand-card: #fffdf7;   /* kartlar için sıcak kırık beyaz */
    --brand-input: #fbf6ec;  /* form alanları için sıcak ton */
    --brand-white: #f6edd8;  /* koyu zemin üzerindeki başlıklar için sıcak kırık beyaz */
    --brand-white-90: rgba(246, 237, 216, 0.9);  /* koyu zemin metni - yüksek opaklık */
    --brand-white-85: rgba(246, 237, 216, 0.85); /* koyu zemin metni - orta opaklık */
    --brand-white-82: rgba(246, 237, 216, 0.82); /* koyu zemin metni - orta opaklık */
    --brand-white-80: rgba(246, 237, 216, 0.8);  /* koyu zemin metni - düşük opaklık */

    --grad-green: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    --grad-bordo: linear-gradient(135deg, var(--brand-bordo-light) 0%, var(--brand-bordo) 55%, var(--brand-bordo-dark) 100%);
    --grad-brand: linear-gradient(120deg, var(--brand-green-dark) 0%, var(--brand-green) 45%, var(--brand-bordo) 100%);

    --shadow-sm: 0 4px 14px rgba(20, 69, 39, 0.08);
    --shadow-md: 0 12px 30px rgba(20, 69, 39, 0.12);
    --shadow-lg: 0 22px 48px rgba(20, 69, 39, 0.18);
}

/* --------------------------------------------------------------------------
   Genel tipografi & temel öğeler
   -------------------------------------------------------------------------- */
body {
    color: #2a3a30;
    background: var(--brand-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--brand-bordo);
    color: var(--brand-cream);
}

a {
    transition: color .25s ease;
}

/* İnce, markalı kaydırma çubuğu */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--brand-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--brand-green-dark);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-green-dark);
}

/* --------------------------------------------------------------------------
   Header / Navigasyon
   -------------------------------------------------------------------------- */
/* Hero üzerinde okunabilirlik için yumuşak üst gölge */
.header-area::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 220px;
    background: linear-gradient(180deg, rgba(15, 40, 24, 0.55) 0%, rgba(15, 40, 24, 0) 100%);
    pointer-events: none;
    z-index: -1;
}

.header-area .main-header-area .main-menu ul li a {
    font-weight: 500;
    letter-spacing: .2px;
}

.header-area .main-header-area .main-menu ul li a::before {
    background: var(--brand-gold);
    height: 2px;
    border-radius: 2px;
}

.header-area .main-header-area .main-menu ul li a.active,
.header-area .main-header-area .main-menu ul li a:hover {
    color: var(--brand-gold);
}

/* İletişim (telefon) butonu */
.header-area .main-header-area .book_room .book_btn a {
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: .3px;
    transition: all .3s ease;
}

.header-area .main-header-area .book_room .book_btn a:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-bordo-dark);
    box-shadow: 0 8px 20px rgba(200, 162, 74, 0.35);
}

.header-area .main-header-area .book_room .socail_links ul li a {
    color: var(--brand-cream);
}

.header-area .main-header-area .book_room .socail_links ul li a:hover {
    color: var(--brand-gold);
}

/* Masaüstü: header'ı sayfa üstünden hafif aşağı al, logoyu biraz küçült */
@media (min-width: 992px) {
    .header-area .main-header-area {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .header-area .main-header-area .logo-img img {
        width: 195px;
        height: auto;
    }

    /* Sticky durumda daha kompakt dursun */
    .header-area .main-header-area.sticky {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .header-area .main-header-area.sticky .logo-img img {
        width: 130px;
    }
}

/* --------------------------------------------------------------------------
   Mobil header — dolu yeşil bar, ortalı logo, sağda hamburger
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .header-area::before {
        display: none;
    }

    .header-area .main-header-area {
        position: relative;
        background: var(--grad-green);
        padding: 9px 16px !important;
        box-shadow: 0 6px 22px rgba(20, 69, 39, 0.25);
    }

    .header-area .main-header-area .row {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .header-area .main-header-area .logo-img {
        text-align: center;
    }

    .header-area .main-header-area .logo-img img {
        width: auto !important;
        height: 50px;
        margin: 0 !important;
    }

    /* Hamburger'a logoyla çakışmaması için sağ alan bırak */
    .header-area .main-header-area .col-xl-2.col-lg-2 {
        flex: 1;
        max-width: 100%;
        padding: 0 52px;
    }

    .mobile_nav_toggle {
        background: rgba(255, 255, 255, 0.16);
    }
}

/* --------------------------------------------------------------------------
   Mobil menü — hamburger + soldan kayan sidebar (offcanvas)
   -------------------------------------------------------------------------- */
/* Eski slicknav mobil menüyü gizle */
.slicknav_menu,
.mobile_menu {
    display: none !important;
}

.mobile_nav_toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    z-index: 20;
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    transition: background .25s ease;
}

.mobile_nav_toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile_nav_toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    border-radius: 3px;
    background: var(--brand-cream);
    transition: all .3s ease;
}

/* Sticky header'da hamburger çizgileri koyu zeminde kalsın diye beyaz kalır */

/* Sidebar */
.mobile_sidebar {
    width: 300px !important;
    max-width: 85vw;
    background: var(--grad-green);
    color: #fff;
    border: none;
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.35);
}

.mobile_sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile_sidebar__logo img {
    height: 60px;
    width: auto;
}

.mobile_sidebar__close {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 15px;
    transition: all .25s ease;
}

.mobile_sidebar__close:hover {
    background: var(--brand-bordo);
    transform: rotate(90deg);
}

.mobile_sidebar__body {
    display: flex;
    flex-direction: column;
    padding: 22px 18px 26px;
}

.mobile_sidebar__nav {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.mobile_sidebar__nav li {
    margin-bottom: 6px;
}

.mobile_sidebar__nav li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 12px;
    color: var(--brand-white-90);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all .25s ease;
}

.mobile_sidebar__nav li a i {
    font-size: 18px;
    color: var(--brand-gold);
    transition: color .25s ease;
}

.mobile_sidebar__nav li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(4px);
}

.mobile_sidebar__nav li a.active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.mobile_sidebar__nav li a.active i {
    color: var(--brand-gold-light);
}

.mobile_sidebar__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 6px;
    margin-bottom: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile_sidebar__contact a {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--brand-white-85);
    font-size: 13.5px;
    line-height: 1.5;
    transition: color .25s ease;
}

.mobile_sidebar__contact a i {
    color: var(--brand-gold);
    margin-top: 2px;
}

.mobile_sidebar__contact a:hover {
    color: var(--brand-gold);
}

.mobile_sidebar__social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 6px;
}

.mobile_sidebar__social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 16px;
    transition: all .3s ease;
}

.mobile_sidebar__social a:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-bordo-dark);
    transform: translateY(-3px);
}

.mobile_sidebar__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0 6px;
    padding: 14px 18px;
    border-radius: 30px;
    background: var(--brand-cream);
    color: var(--brand-green-dark);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform .25s ease, filter .25s ease;
}

.mobile_sidebar__cta i {
    font-size: 18px;
    color: #128c4a;
}

.mobile_sidebar__cta:hover {
    color: var(--brand-green-dark);
    transform: translateY(-2px);
    filter: brightness(.97);
}

/* Offcanvas her şeyin üstünde olsun (yüzen butonlar 1050) */
.offcanvas.mobile_sidebar {
    z-index: 20050;
}

.offcanvas-backdrop {
    z-index: 20040;
}

/* Sabit (sticky) header — derin yeşil cam efekti */
.header-area .main-header-area.sticky {
    background: rgba(20, 69, 39, 0.92) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18) !important;
}

/* --------------------------------------------------------------------------
   Slider / Hero
   -------------------------------------------------------------------------- */
.overlay::before {
    background: linear-gradient(120deg, rgba(15, 40, 24, 0.72) 0%, rgba(78, 20, 33, 0.45) 100%) !important;
    opacity: 1 !important;
}

.slider_area .single_slider .slider_text h3 {
    font-family: "Playfair Display", "Times New Roman", serif !important;
    font-weight: 800 !important;
    font-size: 84px;
    line-height: 1.02;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--brand-white);
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.5);
}

/* İlk satır kreme/beyaz, ikinci satır altın vurgu için stagger his */
.slider_area .single_slider .slider_text h3:last-child {
    color: var(--brand-bordo);
    background: none;
    -webkit-text-fill-color: var(--brand-bordo);
    -webkit-text-stroke: 1.4px var(--brand-gold-light);
    text-shadow:
        0 0 2px rgba(244, 220, 157, 0.9),
        0 6px 20px rgba(0, 0, 0, 0.55);
}

/* Altın ince ayraç çizgisi (son başlığın altında) */
.slider_area .single_slider .slider_text h3:last-child::after {
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    margin: 26px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
}

.slider_area .single_slider .slider_text h4 {
    color: var(--brand-gold-light);
}

@media (max-width: 767px) {
    .slider_area .single_slider .slider_text h3 {
        font-size: 44px;
        line-height: 1.05;
    }
    .slider_area .single_slider .slider_text::after {
        width: 64px;
        margin-top: 18px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .slider_area .single_slider .slider_text h3 {
        font-size: 60px;
    }
}

/* --------------------------------------------------------------------------
   Bölüm başlıkları
   -------------------------------------------------------------------------- */
.section_title span {
    color: var(--brand-gold);
    font-family: "Pacifico", cursive;
}

.section_title h3 {
    color: var(--brand-green-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

.section_title.text-center h3::after,
.text-center .section_title h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    border-radius: 3px;
    background: var(--grad-bordo);
}

/* Sol hizalı başlık varyantı (iki kolonlu bölümler için) */
.section_title--left {
    text-align: left;
}

.section_title--left span {
    font-size: 26px;
}

.section_title--left h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 3px;
    border-radius: 3px;
    background: var(--grad-bordo);
}

/* --------------------------------------------------------------------------
   Butonlar
   -------------------------------------------------------------------------- */
.boxed-btn5 {
    background: var(--grad-bordo) !important;
    border: 1px solid transparent !important;
    color: #fff !important;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: .4px;
    box-shadow: 0 10px 24px rgba(110, 31, 46, 0.28);
    transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

.boxed-btn5:hover {
    background: var(--grad-bordo) !important;
    color: #fff !important;
    transform: translateY(-3px);
    filter: brightness(1.06);
    box-shadow: 0 16px 32px rgba(110, 31, 46, 0.38);
}

.line-button:hover,
.line-button:hover::before {
    color: var(--brand-green);
    background: var(--brand-green);
}

.book_now {
    color: var(--brand-green);
    border-color: var(--brand-green);
    border-radius: 30px;
    font-weight: 600;
    transition: all .3s ease;
}

.book_now:hover {
    background: var(--brand-green);
    color: #fff;
}

/* Bootstrap yardımcı butonları — palete uyum */
.btn-success {
    background: var(--grad-green) !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 10px 24px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(31, 107, 58, 0.25);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn-success:hover,
.btn-success:focus {
    filter: brightness(1.07);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(31, 107, 58, 0.35);
}

.btn-outline-success {
    color: var(--brand-green) !important;
    border: 1.5px solid var(--brand-green) !important;
    border-radius: 30px !important;
    font-weight: 600;
    transition: all .25s ease;
}

.btn-outline-success:hover,
.btn-outline-success.active,
.filter-btn.active {
    background: var(--grad-green) !important;
    border-color: var(--brand-green) !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(31, 107, 58, 0.28);
}

.btn-warning {
    background: var(--grad-bordo) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 30px !important;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(110, 31, 46, 0.22);
}

.btn-warning:hover,
.btn-warning:focus {
    filter: brightness(1.07);
    color: #fff !important;
}

.btn-dark {
    background: var(--brand-green-dark) !important;
    border: none !important;
}

.text-warning {
    color: var(--brand-bordo) !important;
}

/* --------------------------------------------------------------------------
   Ürün bölümü (best_burgers_area) — temiz krem zemin
   -------------------------------------------------------------------------- */
.best_burgers_area {
    background-image: none !important;
    background: linear-gradient(180deg, var(--brand-cream) 0%, var(--brand-cream-soft) 100%) !important;
    padding-top: 110px;
    padding-bottom: 110px;
}

/* "Tüm Ürünleri Gör" butonu — ortalanmış pill */
.best_burgers_area .iteam_links {
    text-align: center;
}

.best_burgers_area .iteam_links a {
    display: inline-block;
}

/* Menü sayfası kategori filtre pill'leri */
.filter-btn {
    padding: 9px 22px;
    font-size: 14px;
}

/* Yatay kaydırılabilir kategori barı (sığarsa ortalanır, sığmazsa kaydırılır) */
.category-filter {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 0 14px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
}

.category-filter__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin: auto;
    padding: 0 4px;
}

.category-filter__track .filter-btn {
    flex: 0 0 auto;
    margin: 0 !important;
    scroll-snap-align: center;
    white-space: nowrap;
}

/* İnce, markalı yatay kaydırma çubuğu */
.category-filter::-webkit-scrollbar {
    height: 6px;
}

.category-filter::-webkit-scrollbar-track {
    background: #eef3ef;
    border-radius: 10px;
}

.category-filter::-webkit-scrollbar-thumb {
    background: var(--brand-green);
    border-radius: 10px;
}

.category-filter {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-green) #eef3ef;
}

/* --------------------------------------------------------------------------
   PROFESYONEL ÜRÜN KARTI (e-ticaret tarzı, dikey)
   -------------------------------------------------------------------------- */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--brand-card);
    border: 1px solid #ecf1ed;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(20, 69, 39, 0.06);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
    cursor: pointer;
}

.product-card:focus-visible {
    outline: 2px solid var(--brand-green);
    outline-offset: 2px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(31, 107, 58, 0.22);
}

.product-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--brand-green-soft);
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.08);
}

.product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--grad-bordo);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 30px;
    box-shadow: 0 6px 14px rgba(110, 31, 46, 0.32);
}

.product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}

.product-card__title {
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--brand-green-dark);
    margin: 0 0 8px;
}

.product-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--brand-muted);
    margin: 0 0 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed #e6ece7;
}

.product-card__price {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 1;
    color: var(--brand-bordo);
    white-space: nowrap;
}

.product-card__price small {
    font-size: 13px;
    font-weight: 600;
    margin-left: 2px;
}

.product-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    background: var(--grad-green);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 16px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(31, 107, 58, 0.22);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.product-card__btn:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 12px 24px rgba(31, 107, 58, 0.32);
}

.product-card__btn i {
    font-size: 16px;
}

/* Mobil: her satırda 2 kart — daha kompakt iç boşluk ve tipografi */
@media (max-width: 575.98px) {
    .product-card__body {
        padding: 14px 14px 16px;
    }
    .product-card__title {
        font-size: 15px;
    }
    .product-card__desc {
        font-size: 12.5px;
        margin-bottom: 12px;
    }
    .product-card__price {
        font-size: 18px;
    }
    .product-card__btn {
        font-size: 12.5px;
        padding: 9px 12px;
    }
    .product-card__badge {
        font-size: 10px;
        padding: 5px 10px;
        top: 10px;
        left: 10px;
    }
}

/* Eski yatay kart (single_delicious) — başka yerde kullanılırsa uyumlu kalsın */
.best_burgers_area .single_delicious {
    background: var(--brand-card);
    border: 1px solid #eef2ee;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    overflow: hidden;
}

.best_burgers_area .single_delicious:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 107, 58, 0.25);
}

.best_burgers_area .single_delicious .info h3 {
    color: var(--brand-green-dark);
    font-size: 24px;
}

.best_burgers_area .single_delicious .info p {
    color: var(--brand-muted);
}

.best_burgers_area .single_delicious .info span {
    color: var(--brand-bordo);
    font-size: 22px;
}

/* --------------------------------------------------------------------------
   Hakkımızda & içerik bölümleri
   -------------------------------------------------------------------------- */
.about_area .about_info p {
    color: var(--brand-muted);
    line-height: 1.9;
}

/* --------------------------------------------------------------------------
   Ana sayfa — Hakkımızda bölümü (profesyonel)
   -------------------------------------------------------------------------- */
.about_home {
    position: relative;
    padding: 100px 0;
    background-image: none !important;
    background: linear-gradient(180deg, #f7eed6 0%, #fdf8ec 50%, #f7eed6 100%) !important;
    background:
        radial-gradient(circle at 90% 10%, rgba(31, 107, 58, 0.05), transparent 40%),
        radial-gradient(circle at 0% 90%, rgba(110, 31, 46, 0.04), transparent 38%),
        #ffffff;
}

.about_figure {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
    padding: 14px;
}

/* Görselin arkasında dekoratif çerçeve */
.about_figure::before {
    content: "";
    position: absolute;
    inset: 0 22px 22px 0;
    border: 2px solid var(--brand-green);
    border-radius: 24px;
    z-index: 0;
}

.about_figure::after {
    content: "";
    position: absolute;
    top: -16px;
    right: -16px;
    width: 90px;
    height: 90px;
    background:
        radial-gradient(var(--brand-gold) 1.6px, transparent 1.7px) 0 0 / 14px 14px;
    opacity: .5;
    z-index: 0;
}

.about_figure__img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about_figure__badge {
    position: absolute;
    left: -10px;
    bottom: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--grad-green);
    color: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(20, 69, 39, 0.3);
}

.about_figure__badge i {
    font-size: 26px;
    color: var(--brand-gold-light);
}

.about_figure__badge span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}

.about_home__lead {
    font-size: 16px;
    line-height: 1.95;
    color: #4a5750;
    margin-bottom: 24px;
}

/* RichEditor (HTML editör) çıktısının kapsayıcılarda düzgün durması */
.about_home__lead p {
    margin: 0 0 14px;
}

.about_home__lead p:last-child {
    margin-bottom: 0;
}

.about_home__lead ul,
.about_home__lead ol {
    margin: 0 0 14px;
    padding-left: 22px;
}

.about_home__lead a {
    color: var(--brand-bordo);
    text-decoration: underline;
}

/* Başlık ve alt başlık alanlarında RichEditor'ün <p> sarmasını sadeleştir */
.section_title h3 p,
.section_title--left h3 p,
.video_area .video_area_inner span p {
    display: inline;
    margin: 0;
}

.about_features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.about_features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--brand-green-dark);
    padding: 8px 0;
}

.about_features li i {
    color: var(--brand-green-light);
    font-size: 19px;
}

.about_home__btn {
    padding: 16px 38px;
}

@media (max-width: 991.98px) {
    .about_home {
        padding: 70px 0;
    }
    .about_home__info {
        text-align: center;
        margin-top: 10px;
    }
    .section_title--left {
        text-align: center;
    }
    .section_title--left h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about_features li {
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   Ana sayfa — Galeri bölümü (lightbox tile'lar)
   -------------------------------------------------------------------------- */
.gallery_home {
    padding: 30px 0 110px;
    background: linear-gradient(180deg, var(--brand-cream) 0%, var(--brand-cream-soft) 100%);
}

.gallery_tile {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(20, 69, 39, 0.08);
}

.gallery_tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.gallery_tile__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 69, 39, 0.55), rgba(78, 20, 33, 0.55));
    opacity: 0;
    transition: opacity .35s ease;
}

.gallery_tile__overlay i {
    color: #fff;
    font-size: 30px;
    transform: scale(.7);
    transition: transform .35s ease;
}

.gallery_tile:hover img {
    transform: scale(1.1);
}

.gallery_tile:hover .gallery_tile__overlay {
    opacity: 1;
}

.gallery_tile:hover .gallery_tile__overlay i {
    transform: scale(1);
}

.video_area {
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Hero gibi koyu marka filigranı — yazılar okunur olsun */
.video_area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    pointer-events: none;
}

.video_area .video_area_inner {
    position: relative;
    z-index: 2;
}

.video_area .video_area_inner h3 {
    color: var(--brand-white);
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.video_area .video_area_inner span {
    color: var(--brand-white);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Galeri görselleri — yumuşak hover */
.instragram_area img,
.gallery_area img {
    transition: transform .45s ease, box-shadow .45s ease;
}

.instragram_area .col-6:hover img,
.gallery_area .col-6:hover img,
.gallery_area .col-md-3:hover img {
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   Şubeler (about) — kaydırmalı şube slider'ı
   -------------------------------------------------------------------------- */
.branches_modern {
    background: linear-gradient(180deg, var(--brand-cream-soft) 0%, var(--brand-cream) 100%);
    padding: 90px 0;
}

/* Geniş içerik alanı + sağ/sol nav butonları */
.branches_slider {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 70px;
}

.branches_slider__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 4px 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.branches_slider__track::-webkit-scrollbar {
    display: none;
}

.branches_slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: var(--grad-green);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 24px rgba(20, 69, 39, 0.22);
    cursor: pointer;
    transition: transform .25s ease, filter .25s ease, opacity .25s ease;
}

.branches_slider__nav:hover {
    transform: translateY(-50%) scale(1.08);
    filter: brightness(1.06);
}

.branches_slider__nav--prev {
    left: 8px;
}

.branches_slider__nav--next {
    right: 8px;
}

.branches_slider__nav:disabled {
    opacity: 0;
    pointer-events: none;
}

.branch_card {
    flex: 0 0 380px;
    max-width: 380px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: var(--brand-card);
    border: 1px solid #ecf1ed;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(20, 69, 39, 0.07);
    transition: transform .35s ease, box-shadow .35s ease;
    cursor: pointer;
}

.branch_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.branch_card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--brand-green-soft);
}

.branch_card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.branch_card:hover .branch_card__media img {
    transform: scale(1.06);
}

.branch_card__zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-green-dark);
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: scale(.85);
    transition: opacity .3s ease, transform .3s ease;
}

.branch_card:hover .branch_card__zoom {
    opacity: 1;
    transform: scale(1);
}

.branch_card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 26px;
}

.branch_card__name {
    margin: 0 0 14px;
    color: var(--brand-green-dark);
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.branch_card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.branch_card__meta li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--brand-muted);
    line-height: 1.45;
}

.branch_card__meta li i {
    flex: 0 0 auto;
    margin-top: 1px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-green-soft);
    color: var(--brand-green);
    font-size: 13px;
}

.branch_card__meta li a {
    color: var(--brand-ink);
    transition: color .25s ease;
    word-break: break-word;
}

.branch_card__meta li a:hover {
    color: var(--brand-green);
}

.branch_card__social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.branch_card__social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #e2e9e4;
    color: var(--brand-green-dark);
    font-size: 14px;
    transition: all .3s ease;
}

.branch_card__social a:hover {
    background: var(--grad-green);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

.branch_card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: auto;
    background: var(--grad-bordo);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 8px 18px rgba(110, 31, 46, 0.22);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.branch_card__btn:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.07);
    box-shadow: 0 12px 24px rgba(110, 31, 46, 0.32);
}

/* Tablet ve altı: nav butonlarını kenara yaklaştır, kart genişliğini küçült */
@media (max-width: 991.98px) {
    .branches_slider {
        padding: 0 56px;
    }
    .branch_card {
        flex: 0 0 340px;
        max-width: 340px;
    }
}

/* Mobil: tam genişliğe yakın tek kart, ortalı snap */
@media (max-width: 575.98px) {
    .branches_slider {
        padding: 0 12px;
    }
    .branches_slider__track {
        gap: 16px;
        padding: 10px 0 24px;
        scroll-padding: 0 7%;
    }
    .branches_slider__nav {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
    .branches_slider__nav--prev {
        left: -2px;
    }
    .branches_slider__nav--next {
        right: -2px;
    }
    .branch_card {
        flex: 0 0 86%;
        max-width: 86%;
        scroll-snap-align: center;
    }
    .branch_card:first-child {
        margin-left: 7%;
    }
    .branch_card:last-child {
        margin-right: 7%;
    }
    .branch_card__body {
        padding: 22px 20px;
    }
}

.gallery_area--about {
    padding-top: 20px;
    scroll-margin-top: 110px;
}

/* --------------------------------------------------------------------------
   Bradcam (sayfa başlık alanı)
   -------------------------------------------------------------------------- */
.bradcam_area.overlay::before {
    background: linear-gradient(120deg, rgba(15, 40, 24, 0.78) 0%, rgba(78, 20, 33, 0.55) 100%) !important;
}

.bradcam_area h3 {
    font-family: "Playfair Display", "Times New Roman", serif !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    color: var(--brand-bordo);
    -webkit-text-fill-color: var(--brand-bordo);
    -webkit-text-stroke: 1.2px var(--brand-gold-light);
    text-shadow:
        0 0 2px rgba(244, 220, 157, 0.9),
        0 6px 24px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

@media (max-width: 767.98px) {
    .bradcam_area h3 {
        font-size: 52px !important;
    }
}

@media (max-width: 575.98px) {
    .bradcam_area h3 {
        font-size: 48px !important;
    }
}

/* --------------------------------------------------------------------------
   Şubeler / İletişim
   -------------------------------------------------------------------------- */
.contact-info__icon i {
    color: var(--brand-green);
}

.contact-title,
.contact-section h2 {
    color: var(--brand-green-dark);
    font-weight: 700;
}

.form-control:focus {
    border-color: var(--brand-green-light);
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.18);
}

.single_branch h3 {
    color: var(--brand-green-dark);
}

/* --------------------------------------------------------------------------
   İletişim sayfası (profesyonel)
   -------------------------------------------------------------------------- */
.contact_modern {
    padding-top: 90px;
    background: linear-gradient(180deg, var(--brand-cream) 0%, var(--brand-cream-soft) 100%);
}

.contact_card {
    height: 100%;
    background: var(--brand-card);
    border: 1px solid #ecf1ed;
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(20, 69, 39, 0.08);
}

.contact_card__title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-green-dark);
    margin: 0 0 8px;
}

.contact_card__sub {
    color: var(--brand-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 26px;
}

.contact_label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-green-dark);
    margin-bottom: 6px;
}

.contact_card .form-control {
    border: 1.5px solid #e7ddc9;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    background: var(--brand-input);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.contact_card .form-control:focus {
    border-color: var(--brand-green-light);
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.15);
    background: #fffdf7;
}

.contact_card .btn-success {
    padding: 13px 34px;
    font-size: 15px;
}

/* İletişim bilgi kartları */
.contact_info_grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.contact_info_item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--brand-card);
    border: 1px solid #ecf1ed;
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 6px 16px rgba(20, 69, 39, 0.05);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    flex: 1;
}

.contact_info_item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 107, 58, 0.2);
}

.contact_info_item__icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--grad-green);
    color: var(--brand-cream);
    font-size: 22px;
    box-shadow: 0 8px 18px rgba(31, 107, 58, 0.25);
}

.contact_info_item__label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--brand-gold);
    margin-bottom: 3px;
}

.contact_info_item__value {
    margin: 0;
    color: var(--brand-ink);
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.45;
}

.contact_info_item--wa .contact_info_item__icon {
    background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
    box-shadow: 0 8px 18px rgba(18, 140, 74, 0.3);
}

.contact_info_item--wa .contact_info_item__label {
    color: #128c4a;
}

/* Harita — tam genişlik, en altta */
.contact_map {
    margin-top: 80px;
    line-height: 0;
    position: relative;
    box-shadow: inset 0 8px 24px rgba(20, 69, 39, 0.08);
}

.contact_map iframe {
    display: block;
    width: 100%;
    filter: saturate(1.05);
}

@media (max-width: 767.98px) {
    .contact_modern {
        padding-top: 60px;
    }
    .contact_card {
        padding: 26px 22px;
    }
    .contact_map {
        margin-top: 50px;
    }
    .contact_map iframe {
        height: 340px;
    }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--grad-green) !important;
    background-image: var(--grad-green) !important;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(200, 162, 74, 0.12), transparent 42%),
        radial-gradient(circle at 95% 100%, rgba(110, 31, 46, 0.18), transparent 45%);
    pointer-events: none;
}

.footer .footer_top {
    padding-top: 72px !important;
    padding-bottom: 56px !important;
    position: relative;
    z-index: 1;
}

/* Marka sütunu */
.footer_brand .socail_links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.footer_brand__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer_brand__logo img {
    height: 96px;
    width: auto;
}

.footer_brand__text {
    color: var(--brand-white-82) !important;
    font-size: 14.5px;
    line-height: 1.8;
    max-width: 340px;
    margin-bottom: 22px;
}

/* Hızlı menü linkleri */
.footer_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_links li {
    margin-bottom: 12px;
}

.footer_links li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-white-82) !important;
    font-size: 15px;
    transition: color .25s ease, transform .25s ease;
}

.footer_links li a i {
    font-size: 11px;
    color: var(--brand-gold);
    transition: transform .25s ease;
}

.footer_links li a:hover {
    color: var(--brand-gold) !important;
    transform: translateX(4px);
}

/* İletişim listesi */
.footer_contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--brand-white-82);
    font-size: 14.5px;
    line-height: 1.6;
}

.footer_contact li i {
    flex: 0 0 auto;
    margin-top: 3px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-gold) !important;
    font-size: 13px;
}

.footer_contact li a {
    color: var(--brand-white-82) !important;
    transition: color .25s ease;
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: break-word;
}

/* Mobilde Hızlı Menü + İletişim yan yana 2 sütun; e-posta tek satıra sığsın */
@media (max-width: 767.98px) {
    .footer_contact li {
        gap: 8px;
        font-size: 13px;
    }
    .footer_contact li i {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    .footer_contact li a[href^="mailto:"] {
        font-size: 12px;
        letter-spacing: -0.3px;
    }
}

@media (max-width: 360px) {
    .footer_contact li a[href^="mailto:"] {
        font-size: 11px;
        letter-spacing: -0.4px;
    }
}

.footer_contact li a:hover {
    color: var(--brand-gold) !important;
}

/* CTA butonları */
.footer_cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.footer_cta i {
    font-size: 17px;
}

.footer_cta--google {
    background: var(--brand-cream);
    color: var(--brand-bordo);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.footer_cta--google:hover {
    color: var(--brand-bordo);
    transform: translateY(-2px);
    filter: brightness(.97);
}

.footer_cta--whatsapp {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.footer_cta--whatsapp:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-bordo-dark);
    transform: translateY(-2px);
}

.footer .footer_top .footer_widget h4 {
    color: var(--brand-white);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.footer .footer_top .footer_widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    background: var(--brand-gold);
}

.footer .footer_top .footer_widget ul li a,
.footer .footer_top .footer_widget p,
.footer .footer_top .footer_widget p a,
.footer .footer_top .footer_widget li {
    color: var(--brand-white-85) !important;
}

.footer .footer_top .footer_widget ul li a:hover,
.footer .footer_top .footer_widget p a:hover {
    color: var(--brand-gold) !important;
}

.footer .footer_top .footer_widget i {
    color: var(--brand-gold);
}

.footer .socail_links ul li a {
    color: var(--brand-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 6px;
    transition: all .3s ease;
}

.footer .socail_links ul li a:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-bordo-dark);
    transform: translateY(-3px);
}

.footer .copy-right_text {
    position: relative;
    z-index: 1;
    color: var(--brand-white-80);
    padding: 0;
    background: rgba(0, 0, 0, 0.14);
}

.footer .copy-right_text a {
    color: var(--brand-gold);
}

.footer_bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 20px 12px;
}

.footer_bottom p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--brand-white-90) !important;
}

.footer_bottom strong {
    color: var(--brand-white) !important;
}

.footer_bottom a {
    color: var(--brand-gold) !important;
}

.footer_bottom__sep {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 6px;
}

@media (max-width: 767.98px) {
    .footer_brand,
    .footer_brand__text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .footer_brand .socail_links ul {
        justify-content: center;
        display: flex;
    }
    .footer_bottom {
        padding-bottom: 120px;
    }
    .footer_bottom__sep {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Yüzen butonlar & geri yukarı
   -------------------------------------------------------------------------- */
#backToTop {
    background: var(--grad-green) !important;
    border: none !important;
    box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   Ürün detay modalı
   -------------------------------------------------------------------------- */
/* Modal her zaman en üstte; backdrop modalın hemen altında kalsın */
#productModal,
#branchModal {
    z-index: 20000 !important;
}

.modal-backdrop {
    z-index: 19990 !important;
}

#productModal .modal-dialog,
#branchModal .modal-dialog {
    pointer-events: none;
}

#productModal .modal-content,
#branchModal .modal-content {
    pointer-events: auto;
}

#productModal .modal-dialog,
#branchModal .modal-dialog {
    max-width: 600px;
    margin: 1.25rem;
}

@media (min-width: 576px) {
    #productModal .modal-dialog,
    #branchModal .modal-dialog {
        margin: 1.75rem auto;
    }
}

.product-modal {
    position: relative;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 70px rgba(20, 69, 39, 0.3);
    max-height: 92vh;
}

/* Kapatma butonu — her zaman üstte ve tıklanabilir */
.product-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-bordo);
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.product-modal__close:hover {
    background: var(--brand-bordo);
    color: #fff;
    transform: rotate(90deg);
}

/* Yerleşim: mobilde dikey, masaüstünde yatay */
.product-modal__grid {
    display: flex;
    flex-direction: column;
    max-height: 92vh;
}

.product-modal__media {
    position: relative;
    flex: 0 0 auto;
    background: var(--brand-green-soft);
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.product-modal__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal__media .product-card__badge {
    top: 14px;
    left: 14px;
    z-index: 2;
}

.product-modal__content {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    padding: 24px 22px 26px;
}

.product-modal__title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--brand-green-dark);
    margin: 0 0 10px;
    padding-right: 40px;
}

.product-modal__price {
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-bordo);
}

.product-modal__price small {
    font-size: 15px;
    font-weight: 600;
}

.product-modal__divider {
    height: 1px;
    background: repeating-linear-gradient(90deg, #e6ece7 0 8px, transparent 8px 14px);
    margin: 18px 0;
}

.product-modal__desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--brand-muted);
    margin: 0 0 24px;
    flex: 1;
}

.product-modal__order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 14px 22px;
    border-radius: 30px;
    background: var(--grad-green);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 10px 22px rgba(31, 107, 58, 0.28);
    transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}

.product-modal__order i {
    font-size: 18px;
}

.product-modal__order:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.07);
    box-shadow: 0 14px 28px rgba(31, 107, 58, 0.36);
}

/* Masaüstü: tek sütun düzeni korunur (her foto oranında düzgün durur) */
@media (min-width: 768px) {
    .product-modal__content {
        padding: 30px 32px 32px;
    }
    .product-modal__title {
        font-size: 24px;
    }
    .product-modal__price {
        font-size: 28px;
    }
}

/* --------------------------------------------------------------------------
   SweetAlert markalı vurgu
   -------------------------------------------------------------------------- */
.swal2-styled.swal2-confirm {
    background: var(--brand-green) !important;
}

/* --------------------------------------------------------------------------
   Galeri sayfası
   -------------------------------------------------------------------------- */
.bradcam_area--gallery {
    background: var(--grad-brand);
    background-size: cover;
    background-position: center;
}

.gallery_page {
    padding: 80px 0 90px;
}

@media (max-width: 575.98px) {
    .gallery_page {
        padding: 50px 0 60px;
    }
}

/* --------------------------------------------------------------------------
   Magnific Popup — profesyonel lightbox
   -------------------------------------------------------------------------- */
/* Yüzen iletişim butonları (z-index:1050) lightbox'ın altında kalsın */
.mfp-wrap.mfp-zoom-pro {
    z-index: 21000;
}

.mfp-bg.mfp-zoom-pro {
    z-index: 20990;
    background: rgba(18, 26, 20, 0.92);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .3s ease;
}

.mfp-zoom-pro.mfp-bg.mfp-ready {
    opacity: 1;
}

.mfp-zoom-pro.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-zoom-pro .mfp-container {
    padding: 0 44px;
}

.mfp-zoom-pro .mfp-figure {
    transition: transform .3s ease, opacity .3s ease;
}

.mfp-zoom-pro .mfp-figure:after {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    border-radius: 14px;
    background: #fff;
    top: 0;
    bottom: 0;
}

.mfp-zoom-pro .mfp-figure img.mfp-img {
    border-radius: 14px;
    padding: 0;
    width: auto !important;
    max-width: 100% !important;
    max-height: 78vh !important;
    margin: 0 auto;
    display: block;
}

/* Açılış/kapanış zoom animasyonu */
.mfp-zoom-pro.mfp-removing .mfp-figure {
    transform: scale(0.92);
    opacity: 0;
}

/* Başlık (caption) */
.mfp-zoom-pro .mfp-title {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .3px;
    text-align: center;
    padding: 14px 12px 6px;
    line-height: 1.5;
}

.mfp-zoom-pro .mfp-counter {
    color: var(--brand-gold);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    top: 6px;
    right: 8px;
}

/* Kapatma butonu */
.mfp-zoom-pro .mfp-close,
.mfp-zoom-pro .mfp-close:active {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    line-height: 1;
    padding: 0;
    right: 6px;
    top: 6px;
    opacity: 1;
    color: transparent;
    background: var(--brand-bordo);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    font-size: 0;
    text-align: center;
    transition: background .25s ease, transform .25s ease;
}

.mfp-zoom-pro .mfp-close:after {
    content: "\00d7";
    font-size: 30px;
    line-height: 1;
    color: #fff;
}

.mfp-zoom-pro .mfp-close:hover {
    background: var(--brand-green);
    transform: rotate(90deg);
}

/* Oklar */
.mfp-zoom-pro .mfp-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-top: -28px;
    background: var(--brand-bordo);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    opacity: 1;
    transition: background .25s ease, transform .25s ease;
}

.mfp-zoom-pro .mfp-arrow:hover {
    background: var(--brand-green);
}

.mfp-zoom-pro .mfp-arrow:before,
.mfp-zoom-pro .mfp-arrow:after {
    display: none;
}

.mfp-zoom-pro .mfp-arrow-left {
    left: 8px;
}

.mfp-zoom-pro .mfp-arrow-right {
    right: 8px;
}

.mfp-zoom-pro .mfp-arrow-left:before {
    content: "\F284";
    font-family: "bootstrap-icons" !important;
    display: block !important;
    border: none;
    margin: 0;
    width: auto;
    height: auto;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    opacity: 1;
    position: static;
}

.mfp-zoom-pro .mfp-arrow-right:after {
    content: "\F285";
    font-family: "bootstrap-icons" !important;
    display: block !important;
    border: none;
    margin: 0;
    width: auto;
    height: auto;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    opacity: 1;
    position: static;
}

@media (max-width: 575.98px) {
    .mfp-zoom-pro .mfp-container {
        padding: 0 8px;
    }
    .mfp-zoom-pro .mfp-arrow {
        width: 42px;
        height: 42px;
        margin-top: -21px;
    }
    .mfp-zoom-pro .mfp-arrow-left:before,
    .mfp-zoom-pro .mfp-arrow-right:after {
        font-size: 20px;
        line-height: 1;
    }
}
