/* === assets/frontend/css/header/header_4_base.css === */
/* --- HEADER 4 BASE CSS (editable:false) --- */
/* Sticky footer: içerik az olsa bile footer her zaman en altta kalsın
   (footer'da margin-top:auto var, body'nin flex column olması gerekiyor) */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.h16-navbar.navbar {
    /* Panelden yönetilir: --h16-nav-background (renk), --h16-glass (0/1 cam görünüm).
       Cam açıkken color-mix rengi %65 opaklığa düşürür, blur buzlu cam etkisi verir.
       !important şart: nav üzerindeki Bootstrap bg-white sınıfının !important'ını ezmek için. */
    background-color: color-mix(in srgb, var(--h16-nav-background, #ffffff) calc(100% - var(--h16-glass, 0) * 35%), transparent) !important;
    -webkit-backdrop-filter: blur(calc(var(--h16-glass, 0) * 12px));
    backdrop-filter: blur(calc(var(--h16-glass, 0) * 12px));
}
.navbar-brand img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}
.navbar-brand {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -1px;
    color: #000 !important;
    /* Sabit height yerine min-height: dikey/kare logolar (52-60px kutu) taşmadan sığsın */
    min-height: 40px;
    display: flex;
    align-items: center;
}
.navbar-toggler:focus {
    outline: 0;
    box-shadow: none;
}
.h16-header-icons .btn {
    border: none;
    font-size: 1.2rem;
    position: relative;
}
.h16-header-icons .btn i {
    /* Tema (theme_custom) genel "button i" kuralını ezer: ikon rengi paneldeki
       "Üst Sağ Menü İkonları → Renk" ayarından (.btn'den miras) gelsin */
    color: inherit;
}
.h16-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h16-top-bar {
    color: white;
    font-size: 13px;
}
.h16-top-bar a {
    text-decoration: underline;
}
.h16-announcement-wrapper {
    height: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.h16-announcement-item {
    display: none;
    width: 100%;
    text-align: center;
}
.h16-announcement-item.active {
    display: block;
}
.search-logo span img {
    height:40px;
}
.mobile-menu-logo {
    /* Sabit height yerine min-height: dikey/kare logolar taşmadan sığsın */
    min-height: 30px;
    display: flex;
    align-items: center;
}

.mobile-menu-logo img {
    height: 100%;
    width: auto;
    display: block;
}

@media (min-width: 992px) {
    .h16-nav-grid {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    .h16-nav-left {
        /* Sol menü grubu logoya yaslanır; logo ile arasında 30px boşluk kalır */
        justify-content: flex-end;
        padding-right: 30px;
    }
    .h16-nav-center {
        justify-self: center;
        margin: 0;
    }
    .h16-nav-right {
        justify-content: flex-end;
        margin: 0;
    }
    .h16-nav-right-menu {
        /* Sağ menü grubu logonun hemen sağında durur (30px boşluk),
           margin-right:auto ikonları hücrenin sağ kenarına iter */
        padding-left: 30px;
        margin-right: auto;
    }
    .h16-navbar .nav-item {
        position: static;
    }
    .h16-navbar .nav-item:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .h16-navbar .dropdown-menu {
        width: 100%;
        left: 0;
        right: 0;
        border: none;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        border-radius: 0;
        padding: 30px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        margin-top: 0;
    }
    .navbar-nav .nav-link {
        font-size: 0.85rem;
        text-transform: uppercase;
        padding: 1.5rem 1rem !important;
    }
    .firsat-link {
        color: #8B0000 !important;
    }
    .h16-mega-menu-title {
        margin-bottom: 15px;
        display: block;
        font-size: 0.9rem;
    }
    .h16-mega-menu-list {
        list-style: none;
        padding: 0;
    }
    .h16-mega-menu-list li a {
        text-decoration: none;
        font-size: 0.9rem;
        display: block;
        padding: 5px 0;
        transition: color 0.2s;
    }
    .h16-mega-menu-list li a:hover {
        text-decoration: underline;
    }
    .h16-navbar .h16-dropdown-classic {
        position: relative;
    }
    .h16-navbar .h16-submenu {
        width: 220px;
        left: 0;
        right: auto;
        border: 1px solid #eee;
        border-radius: 6px;
        padding: 8px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .h16-navbar .h16-submenu .dropdown-item {
        font-size: 0.85rem;
        padding: 8px 16px;
        transition: background-color 0.15s, color 0.15s;
    }
    .h16-submenu-parent {
        position: relative;
    }
    .h16-submenu-parent:hover > .h16-submenu-child {
        display: block;
    }
    .h16-submenu-child {
        display: none;
        position: absolute;
        top: 0;
        left: 100%;
        min-width: 200px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 6px;
        padding: 8px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        list-style: none;
        margin: 0;
    }
    .h16-submenu-child .dropdown-item {
        font-size: 0.85rem;
        padding: 8px 18px;
        color: #333;
    }
    .h16-submenu-child .dropdown-item:hover {
        background-color: #f5f5f5;
        color: #000;
    }
}
.offcanvas-start {
    width: 85%;
}
#h16-mobileMenu .collapsing {
    transition-duration: 0.2s;
}
.h16-mobile-nav-link {
    font-size: 1rem;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}
.h16-mobile-nav-link.firsat {
    color: #8B0000;
}
.h16-mobile-sub-menu {
    list-style: none;
    padding-left: 0;
}
.h16-mobile-sub-menu li a {
    display: block;
    padding: 10px 0 10px 15px;
    text-decoration: none;
    font-size: 0.95rem;
}
.offcanvas-header .btn-close {
    opacity: 1;
}
#h16-searchOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2000;
    border-bottom: 1px solid #ddd;
    display: none;
}
.h16-search-input {
    border: none;
    border-bottom: 1px solid #000;
    width: 100%;
    padding: 10px;
    font-size: 1.2rem;
    outline: none;
}
.h16-search-close {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.5rem;
}
.section-title {
    padding: 10px 20px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}
.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}
.result-item:last-child {
    border-bottom: none;
}
.product-name {
    font-size: 14px;
}
.product-price {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.original-price {
    text-decoration: line-through;
    font-size: 12px;
}
.special-price {
    font-weight: 700;
}
.no-results {
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .product-price {
        font-size: 13px;
    }
    .search-logo span img {
        height:30px;
    }
}

/* === assets/frontend/css/header/header_4.css === */
/* --- HEADER GENEL --- */
.h16-navbar.navbar {
    --h16-nav-background: #ffffff;
    --h16-glass: 1;
}
.h16-top-bar {
    background-color: #1a2421;
}
.h16-announcement-item.active {
    color: #fff;
}
.h16-announcement-item.active a {
    color: #fff;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link {
        color: #000000;
        font-weight: 500;
    }
    .navbar-nav .nav-link:hover {
        color: #555454;
    }
    .h16-mega-menu-title {
        font-weight: 700;
    }
    .h16-mega-menu-list li a {
        color: #444;
    }
    .h16-mega-menu-list li a:hover {
        color: #000;
    }
    .h16-navbar .h16-submenu .dropdown-item {
        color: #333;
    }
    .h16-navbar .h16-submenu .dropdown-item:hover {
        background-color: #f5f5f5;
        color: #000;
    }
}
.wsv-menu-ic {
    color: #000000 !important;
}
.h16-header-icons .btn {
    background: transparent;
    color: #000000;
}
.h16-header-icons .btn:hover, .h16-header-icons .btn:focus {
    background: transparent;
    color: #000000;
}
.h16-cart-badge {
    background-color: #333;
    color: #fff;
}
.h16-mobile-nav-link {
    font-weight: 500;
    color: #000;
}
.h16-mobile-sub-menu {
    background-color: #fff;
}
.h16-mobile-sub-menu li a {
    color: #555;
}
#h16-searchOverlay {
    background: #fff;
}
.section-title {
    font-weight: 600;
    color: #666;
    background: #f8f9fa;
}
.result-item:hover {
    background: #f8f9fa;
}
.product-name {
    color: #333;
    font-weight: 500;
}
.product-price {
    color: #3e77ac;
    font-weight: 600;
}
.original-price {
    color: #999;
    font-weight: 400;
}
.special-price {
    color: #dc3545;
}
.no-results {
    color: #999;
}

@media (max-width: 768px) {
    .product-price {
        color: #3e77ac;
    }
}

/* === assets/frontend/css/footer/footer_3_base.css === */
/* ============================================================
   footer_3 — Görsel/Builder footer temel stilleri
   Dinamik değerler (renk, sütun) footer_3.php'de CSS değişkeniyle gelir.
   ============================================================ */

.ft3 { display: block; width: 100%; }
.ft3 * { box-sizing: border-box; }

.ft3-body {
    color: var(--ft3-fg, #fff);
    padding: 28px 20px 20px;
    background-size: cover;
    background-position: center;
}
/* Üst kenar şekli maske ile gövdeye işlendiği için içeriği dalganın altına it */
.ft3-body.has-edge { padding-top: 60px; }

.ft3-grid {
    display: grid;
    grid-template-columns: repeat(var(--ft3-cols, 3), 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}
/* Responsive: mobil tek, tablet iki sütun */
@media (max-width: 600px) { .ft3-grid { grid-template-columns: 1fr; } }
@media (min-width: 601px) and (max-width: 900px) { .ft3-grid { grid-template-columns: repeat(2, 1fr); } }

.ft3-col { min-width: 0; }
.ft3 .blk { margin-bottom: 18px; }
.ft3 .blk:last-child { margin-bottom: 0; }

/* Baslik hiyerarsisi (a11y) icin blok basliklari h4 -> h2 tasindi; gorunum ayni */
.ft3 h2 { font-size: 15px; margin: 0 0 10px; font-weight: 700; color: var(--ft3-heading, inherit); }
.ft3 a { color: inherit; }

/* Logo */
.ft3 .blk-logo img { max-width: 170px; max-height: 64px; display: block; }
.ft3 .blk-logo .logo-text { font-size: 22px; font-weight: 800; letter-spacing: .5px; }

/* Menü / linkler */
.ft3 .blk-menu a { display: block; text-decoration: none; font-size: 14px; margin-bottom: 7px; color: var(--ft3-link, inherit); }
.ft3 .blk-menu a:hover { text-decoration: underline; }

/* Metin */
.ft3 .blk-text p { font-size: 14px; margin: 0; }

/* Sosyal */
.ft3 .blk-social .icons { display: flex; gap: 10px; flex-wrap: wrap; }
/* Sosyal ikonlar: içi beyaz, currentColor kenarlık, siyah icon → her arka planda görünür */
.ft3 .blk-social .icons a {
    width: 38px; height: 38px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    background: #fff; border: 1px solid currentColor; color: #000;
    font-size: 16px; text-decoration: none;
}
.ft3 .blk-social .icons a:hover { opacity: .75; }

/* Bülten */
.ft3 .blk-news .nl-desc { font-size: 13px; margin: 0 0 10px; }
/* Bülten: input + buton tek birim (buton içeride). Beyaz input, siyah metin/icon;
   currentColor kenarlık → arka plan rengi ne olursa olsun bölüm kaybolmaz. */
.ft3 .blk-news .nl-form { display: flex; align-items: stretch; background: #fff; border: 1px solid currentColor; border-radius: 8px; overflow: hidden; max-width: 340px; }
.ft3 .blk-news .nl-form input { flex: 1; min-width: 0; border: none; background: transparent; padding: 10px 12px; font-size: 14px; color: #000; }
.ft3 .blk-news .nl-form input::placeholder { color: #000; opacity: 1; }
.ft3 .blk-news .nl-form input:focus { outline: none; }
.ft3 .blk-news .nl-form button { border: none; background: transparent; color: #000; padding: 0 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.ft3 .blk-news .nl-form button:hover { opacity: .7; }

/* İletişim */
.ft3 .blk-contact p { font-size: 14px; margin: 0 0 6px; display: flex; gap: 8px; }

/* Çalışma saatleri */
.ft3 .blk-hours p { font-size: 14px; margin: 0 0 5px; display: flex; justify-content: space-between; gap: 14px; }
.ft3 .blk-hours p b { font-weight: 600; }

/* Ödeme */
.ft3 .blk-pay .pay-icons { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.ft3 .blk-pay .pay-svg { background: #fff; border-radius: 6px; padding: 4px 6px; }

/* Alt bilgi */
.ft3-bottom {
    max-width: 1100px; margin: 22px auto 0; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.18);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px;
    font-size: 13px; text-align: center;
}
.ft3-bottom .ft3-switch select {
    padding: 4px 8px; border: 1px solid currentColor; border-radius: 4px;
    font-size: 12px; cursor: pointer; background: #fff; color: #000;
}
/* Açılır menüdeki seçenekler her zaman okunur (beyaz zemin/siyah metin) */
.ft3-bottom .ft3-switch select option { background: #fff; color: #000; }

/* === assets/frontend/css/footer/footer_3.css === */
/* --- FOOTER GENEL --- */

