/*
 * zbsoft.css — Bosfor Makina Özel Stiller
 * Şablonun orijinal stillerine dokunmadan ek/düzeltme stilleri buraya yazılır.

/* ── Ürün Etiketleri (NEW / VİDEO) ── */
.zb-badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    box-shadow: 0 3px 12px rgba(239,68,68,.4);
    animation: zbBadgeShine 2.5s infinite;
}
.zb-badge-new::before {
    content: '✦';
    font-size: .6rem;
}
@keyframes zbBadgeShine {
    0%,100% { box-shadow: 0 3px 12px rgba(239,68,68,.4); }
    50%      { box-shadow: 0 3px 20px rgba(239,68,68,.7); }
}

.zb-badge-video {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #c0272d 0%, #8b0000 100%);
    box-shadow: 0 3px 12px rgba(192,39,45,.4);
}
.zb-badge-video .fa-play {
    font-size: .55rem;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    width: 13px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1px;
}

/* YENİ ile birlikte varsa aşağı kayar */
.zb-badge-new + .zb-badge-video,
.zb-badge-video.zb-badge--offset { top: 42px; }

/* ── Anasayfa Öne Çıkan Ürünler ── */
.zb-home-products {
    padding: 80px 0 60px;
    background: #f7f9fb;
}
.zb-home-products .product-block {
    margin-bottom: 30px;
}
.zb-home-products .product-block .inner-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}
.zb-home-products .product-block .inner-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}
.zb-home-products .product-block .image {
    overflow: hidden;
    height: 220px;
}
.zb-home-products .product-block .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.zb-home-products .product-block .inner-box:hover .image img {
    transform: scale(1.05);
}
.zb-home-products .product-block .content {
    padding: 16px 18px 14px;
}
.zb-home-products .product-block .content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
}
.zb-home-products .product-block .content h4 a {
    color: #1b3a5c;
    text-decoration: none;
}
.zb-home-products .product-block .content h4 a:hover {
    color: #c0272d;
}
.zb-home-products .product-block .content .price {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.zb-home-products .product-block .icon-box {
    position: absolute;
    bottom: 70px;
    right: 16px;
}
.zb-home-products .product-block .ui-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #c0272d;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    text-decoration: none;
    opacity: 0;
    transform: scale(.8);
    transition: all .3s ease;
}
.zb-home-products .product-block .inner-box:hover .ui-btn {
    opacity: 1;
    transform: scale(1);
}
@media (max-width: 575px) {
    .zb-home-products .product-block .image { height: 170px; }
}
 */

/* --------------------------------------------------------
   ÜRÜNLER SAYFASI — Page Title & Arama Çubuğu
   -------------------------------------------------------- */

/* Page-title banner — başlık biraz aşağı çekildi */
.zb-page-title {
    padding-top: 100px !important;
    padding-bottom: 30px !important;
}
.zb-page-title .title-outer {
    padding-top: 60px;
}

/* Ürün arama çubuğu — filtreler üstünde, tam genişlik ortalı */
.zb-product-search-bar,
.zb-search-form {
    margin: 20px 0 10px;
}
.zb-product-search-bar .form-group,
.zb-search-form .form-group {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #e8ecf0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(34,36,41,.08);
    transition: border-color .25s ease, box-shadow .25s ease;
}
.zb-product-search-bar .form-group:focus-within,
.zb-search-form .form-group:focus-within {
    border-color: #00c2e7;
    box-shadow: 0 4px 24px rgba(0,194,231,.15);
}
.zb-search-icon {
    position: absolute;
    left: 20px;
    color: #00c2e7;
    font-size: 15px;
    pointer-events: none;
}
.zb-product-search-bar input[type="search"],
.zb-search-form input[type="search"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px 14px 46px;
    font-size: 15px;
    color: #333;
    background: transparent;
    -webkit-appearance: none;
}
.zb-product-search-bar button[type="submit"],
.zb-search-form button[type="submit"] {
    background: #00c2e7;
    color: #fff;
    border: none;
    padding: 0 28px;
    height: 52px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background .2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.zb-product-search-bar button[type="submit"]:hover,
.zb-search-form button[type="submit"]:hover {
    background: #009ab8;
}

@media (max-width: 767px) {
    /* Mobilde page-title alt boşluğu küçült */
    .zb-page-title {
        padding-top: 80px !important;
        padding-bottom: 20px !important;
    }
    .zb-page-title .title-outer {
        padding-top: 10px;
    }
    /* Ürünler section üst padding'i sıkıştır */
    .featured-products {
        padding-top: 20px !important;
    }
    /* Arama çubuğu üst boşluğu azalt */
    .zb-product-search-bar {
        margin: 10px 0 8px;
    }
    .zb-product-search-bar .form-group,
    .zb-search-form .form-group { max-width: 100%; border-radius: 10px; }
    .zb-product-search-bar button[type="submit"],
    .zb-search-form button[type="submit"] { padding: 0 18px; font-size: 13px; }
}

/* --------------------------------------------------------
   FUAR & ETKİNLİK TAKVİMİ
   Tema: #222429 koyu + #00c2e7 cyan  (site theme renkleri)
   -------------------------------------------------------- */

/* Arka plan: açık renk + ince nokta grid efekti */
.zb-events-section {
    position: relative;
    background-color: #f5f5f5;
    background-image:
        radial-gradient(circle, rgba(0, 0, 0, 0.12) 1.2px, transparent 1.2px);
    background-size: 26px 26px;
    overflow: hidden;
}

/* Köşelerde hafif ışıma — açık temaya göre */
.zb-events-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 40% at 0% 50%, rgba(0, 194, 231, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 55% 40% at 100% 50%, rgba(0, 194, 231, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Şablonun project-section::before pseudo-element'i kartları kaplıyor — devre dışı bırak */
.zb-events-section.project-section::before,
.zb-events-section.project-section.alternate::before {
    display: none !important;
}

/* İçerik nokta efektinin üstünde kalsın */
.zb-events-section .auto-container {
    position: relative;
    z-index: 1;
}
.zb-events-section .zb-event-card {
    position: relative;
    z-index: 2;
}

/* Başlık renkleri — açık arka plana göre */
.zb-events-section .sec-title .sub-title {
    color: #00a8cc;
}
.zb-events-section .sec-title h2 {
    color: #222429 !important;
}

.zb-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 28px;
}

@media (max-width: 1199px) { .zb-events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .zb-events-grid { grid-template-columns: 1fr; } }

/* --- Kart genel --- */
.zb-event-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(34,36,41,.07);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}
.zb-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(34,36,41,.14);
}

/* Öne çıkan kart (Yaklaşan) */
.zb-event--featured {
    border: 2px solid #00c2e7;
}

/* --- Header --- */
.zb-event-header {
    background: #222429;
    padding: 22px 22px 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.zb-event--featured .zb-event-header {
    background: linear-gradient(135deg, #1a2030 0%, #222429 100%);
    background: #1b2d3e; /* IE fallback */
}

/* Tarih */
.zb-event-date {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.zb-event-month {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00c2e7;
    font-weight: 500;
}
.zb-event-day {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

/* Badge */
.zb-event-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.zb-badge--past     { background: rgba(255,255,255,.10); color: #8a9bb5; }
.zb-badge--upcoming { background: #00c2e7;               color: #0a1a22; }
.zb-badge--planned  { background: rgba(0,194,231,.15);   color: #00c2e7; }

/* --- Body --- */
.zb-event-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.zb-event-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f0fbfd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.zb-event-icon i {
    font-size: 17px;
    color: #00c2e7;
}
.zb-event-name {
    font-size: 16px;
    font-weight: 700;
    color: #222429;
    margin: 0 0 8px;
    line-height: 1.3;
}
.zb-event-desc {
    font-size: 13px;
    color: #6b7585;
    line-height: 1.55;
    margin: 0 0 16px;
    flex: 1;
}
.zb-event-location {
    font-size: 12px;
    color: #8a9bb5;
    display: flex;
    align-items: center;
    gap: 6px;
}
.zb-event-location i { color: #00c2e7; font-size: 12px; }

/* Geçmiş kart — soluk */
.zb-event--past .zb-event-header { background: #2c2f36; }
.zb-event--past .zb-event-day   { color: #8a9bb5; }
.zb-event--past .zb-event-month { color: #5a6475; }
.zb-event--past .zb-event-icon  { background: #f5f5f5; }
.zb-event--past .zb-event-icon i{ color: #aab0bb; }
.zb-event--past .zb-event-name  { color: #6b7585; }

/* --- Alt bilgi çubuğu --- */
.zb-events-footer {
   /*  background: #f8f9fb;
    border-radius: 10px;
    border: 1px solid #eaecf0; */
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.zb-events-footer-text {
    font-size: 14px;
    color: #6b7585;
    display: flex;
    align-items: center;
    gap: 10px;
}
.zb-events-footer-text i { color: #00c2e7; font-size: 16px; }
.zb-events-footer-text a { color: #00c2e7; font-weight: 600; text-decoration: none; }
.zb-events-footer-text a:hover { text-decoration: underline; }

.zb-events-legend {
    display: flex;
    align-items: center;
    gap: 16px;
}
.zb-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8a9bb5;
}
.zb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.zb-dot--past     { background: #c4cad4; }
.zb-dot--upcoming { background: #00c2e7; }
.zb-dot--planned  { background: rgba(0,194,231,.4); border: 1px solid #00c2e7; }

/* --------------------------------------------------------
   Testimonial — Baş harf avatar
   -------------------------------------------------------- */
.zb-avatar {
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    overflow: hidden;
}
.zb-avatar-initials {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    user-select: none;
}

/* --------------------------------------------------------
   0. WhatsApp Sabit Butonu
   -------------------------------------------------------- */

@keyframes zbWaPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(2.6); opacity: 0;   }
}

/* Ana buton */
.zb-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zb-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}

/* WhatsApp ikonu */
.zb-whatsapp-btn .fab.fa-whatsapp {
    font-size: 30px;
    color: #ffffff;
    line-height: 1;
    position: relative;
    z-index: 2;
}

/* Pulse halkaları */
.zb-wa-pulse {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.55);
    animation: zbWaPulse 2s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}

.zb-wa-pulse--2 {
    background-color: rgba(37, 211, 102, 0.35);
    animation-delay: 0.75s;
}

/* --------------------------------------------------------
   DİL SEÇİCİ DROPDOWN
   -------------------------------------------------------- */

/* Telefon + Dil dikey grup */
.zb-contact-lang {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin-right: 4px;
}
.zb-contact-lang .info-btn {
    margin-right: 0 !important;
}

/* Wrapper */
.zb-lang-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 0;
    vertical-align: middle;
    z-index: 999;
}

/* Aktif dili gösteren buton */
.zb-lang-current {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    color: #be222a;
    background: transparent;
    border: 1.5px solid #d0d5dd;
    cursor: pointer;
    transition: border-color .2s, color .2s;
    white-space: nowrap;
    line-height: 1;
}
.zb-lang-current i {
    font-size: 10px;
    margin-left: 1px;
    transition: transform .25s;
}
.zb-lang-dropdown:hover .zb-lang-current,
.zb-lang-dropdown.open .zb-lang-current {
    border-color: #00c2e7;
    color: #00c2e7;
}
.zb-lang-dropdown.open .zb-lang-current i {
    transform: rotate(180deg);
}

/* Dropdown listesi */
.zb-lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: #fff;
    border: 1px solid #e0e5ec;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    padding: 6px 0;
    list-style: none;
    margin: 0;
    z-index: 9999;
    animation: zbLangFadeIn .18s ease;
}
@keyframes zbLangFadeIn {
    from { opacity:0; transform: translateY(-6px); }
    to   { opacity:1; transform: translateY(0); }
}
.zb-lang-dropdown.open .zb-lang-menu { display: block; }

.zb-lang-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.zb-lang-menu li a:hover {
    background: #f0fbfd;
    color: #00c2e7;
    text-decoration: none;
}
.zb-lang-menu li.active a {
    color: #00c2e7;
    font-weight: 700;
    background: #f0fbfd;
}
.zb-lang-menu li.active a::after {
    content: '✓';
    margin-left: auto;
    font-size: 11px;
    color: #00c2e7;
}

/* Mobil menü içi dil listesi */
.zb-lang-mobile-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 20px;
    border-top: 1px solid #eee;
}
.zb-lang-mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    border: 1.5px solid #ddd;
    text-decoration: none;
    transition: all .2s;
}
.zb-lang-mobile-btn:hover,
.zb-lang-mobile-btn.active {
    background: #00c2e7;
    border-color: #00c2e7;
    color: #fff;
    text-decoration: none;
}

/* Küçük ekranda yazıyı gizle, sadece bayrak+kod göster */
@media (max-width: 991px) {
    .zb-lang-current span { display: none; }
    .zb-lang-current { padding: 5px 8px; }
}
@media (max-width: 767px) {
    .zb-lang-dropdown { display: none; }
}

/* --------------------------------------------------------
   1. E-Katalog — outer-box pill buton
   -------------------------------------------------------- */

.zb-nav-katalog-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 50px;
    background: #e8393a;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    text-decoration: none !important;
    white-space: nowrap;
    position: relative;
    transition: background .2s, transform .2s, box-shadow .2s;
    border: 1.5px solid rgba(255,255,255,.15);
    flex-shrink: 0;
}
.zb-nav-katalog-btn i {
    font-size: 13px;
}
.zb-nav-katalog-btn:hover {
    background: #c0272d;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(232,57,58,.45);
    text-decoration: none !important;
}
/* Parlak üst şerit */
.zb-nav-katalog-btn::after {
    content: '';
    position: absolute;
    top: 0; left: 12%; right: 12%;
    height: 1px;
    border-radius: 50px;
    background: rgba(255,255,255,.3);
    pointer-events: none;
}

/* outer-box flex hizalaması */
.header-lower .outer-box {
    display: flex !important;
    align-items: center;
    gap: 14px;
}

/* Mobil: gizle (mobil menü dropdown'unda var) */
@media (max-width: 991px) {
    .zb-nav-katalog-btn { display: none !important; }
}
/* Desktop: dropdown içindeki mobil-only öğeyi gizle */
@media (min-width: 992px) {
    .zb-katalog-mob-only { display: none !important; }
}

/* --------------------------------------------------------
   2. Mobil menü — youtube & linkedin ikonları için renk
   -------------------------------------------------------- */
.mobile-menu .social-links li a .fab.fa-youtube { color: #ff0000; }
.mobile-menu .social-links li a .fab.fa-linkedin { color: #0a66c2; }

/* --------------------------------------------------------
   ÜRÜN DETAY SAYFASI (urun-detay.php)
   -------------------------------------------------------- */

/* Ürün başlık alanı — fiyat etiketi kaldırıldı, kategori rozeti */
.product-details__title {
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1.3;
}
.zb-product-category {
    display: inline-block;
    background: #f0fbfd;
    color: #00c2e7;
    border: 1px solid #cdf0f8;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 4px 14px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

/* Öne çıkan özellikler listesi */
.zb-product-features {
    margin: 18px 0 24px;
}
.zb-product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.zb-product-features ul li {
    font-size: 14px;
    color: #444;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.zb-product-features ul li i {
    color: #00c2e7;
    font-size: 15px;
    flex-shrink: 0;
}

/* WhatsApp butonu — yeşil vurgulu */
.zb-btn-whatsapp {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
}
.zb-btn-whatsapp:hover {
    background-color: #1da851 !important;
    border-color: #1da851 !important;
}
.zb-btn-whatsapp .btn-title i {
    margin-right: 6px;
}

/* bxslider — resim galerisi küçük dokunuşlar */
.bxslider .image-box img {
    width: 100%;
    border-radius: 8px;
}
.bxslider .thumb-box {
    display: flex;
    gap: 8px;
    padding: 10px 0 0;
    list-style: none;
    flex-wrap: wrap;
}
.bxslider .thumb-box li a {
    display: block;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color .2s ease;
}
.bxslider .thumb-box li a.active,
.bxslider .thumb-box li a:hover {
    border-color: #00c2e7;
}
.bxslider .thumb-box li figure img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    display: block;
}

/* Teknik özellikler tablosu */
.zb-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    font-size: 14px;
}
.zb-specs-table tr:nth-child(even) {
    background: #f8fbfd;
}
.zb-specs-table th,
.zb-specs-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eaecf0;
    text-align: left;
    vertical-align: middle;
}
.zb-specs-table th {
    width: 38%;
    color: #222429;
    font-weight: 600;
    background: #f0fbfd;
    white-space: nowrap;
}
.zb-specs-table td {
    color: #555;
}

/* İlgili ürünler başlığı */
.zb-related-title {
    font-size: 22px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eaecf0;
}

/* Mobil: ürün detay sıralama */
@media (max-width: 767px) {
    .product-details__title { font-size: 22px; }
    .product-details .col-lg-6:first-child { margin-bottom: 24px; }
    .bxslider .thumb-box li figure img { width: 56px; height: 44px; }
    .zb-specs-table th { width: 45%; }
}

/* --------------------------------------------------------
   YETKİLİ SERVİSLER SAYFASI (servisler.php)
   -------------------------------------------------------- */

/* Üst bilgi şeridi */
.zb-servis-section {
    padding-top: 50px;
    padding-bottom: 70px;
}
.zb-servis-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: #f8fbfd;
    border: 1px solid #e0f4fb;
    border-left: 4px solid #00c2e7;
    border-radius: 10px;
    padding: 20px 28px;
    margin-bottom: 28px;
}
.zb-servis-intro__text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}
.zb-servis-intro__text > i {
    font-size: 26px;
    color: #00c2e7;
    margin-top: 2px;
    flex-shrink: 0;
}
.zb-servis-intro__text strong {
    display: block;
    font-size: 16px;
    color: #222429;
    margin-bottom: 4px;
}
.zb-servis-intro__text p {
    margin: 0;
    font-size: 13px;
    color: #6b7585;
    line-height: 1.5;
}
.zb-servis-intro__stats {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.zb-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #00c2e7;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 20px;
}
.zb-stat-badge i { font-size: 12px; }

/* Servis Merkezi Ara Butonu */
.zb-servis-call-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #00c2e7;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 10px;
    line-height: 1.2;
    transition: background .2s, transform .15s;
}
.zb-servis-call-btn:hover {
    background: #00afd0;
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}
.zb-servis-call-btn__label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    opacity: .85;
}
.zb-servis-call-btn__num {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .5px;
    white-space: nowrap;
}
.zb-servis-call-btn__num i { font-size: 14px; margin-right: 4px; }

/* Arama çubuğu */
.zb-servis-searchbar {
    margin-bottom: 30px;
}
.zb-servis-search-inner {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 560px;
    background: #fff;
    border: 2px solid #e8ecf0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(34,36,41,.07);
    transition: border-color .25s, box-shadow .25s;
}
.zb-servis-search-inner:focus-within {
    border-color: #00c2e7;
    box-shadow: 0 4px 24px rgba(0,194,231,.14);
}
.zb-servis-search-inner .zb-search-icon {
    position: absolute;
    left: 18px;
    color: #00c2e7;
    font-size: 14px;
    pointer-events: none;
}
.zb-servis-search-inner input[type="search"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 13px 16px 13px 44px;
    font-size: 14px;
    color: #333;
    background: transparent;
    -webkit-appearance: none;
}
.zb-servis-count {
    font-size: 12px;
    color: #9aa5b5;
    padding-right: 18px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Servis grid aralığı */
.zb-servis-grid {
    row-gap: 18px;
}

/* Servis kartı */
.zb-servis-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eaecf1;
    padding: 18px 16px 16px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(34,36,41,.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    overflow: hidden;
}
.zb-servis-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #00c2e7;
    border-radius: 10px 10px 0 0;
    transition: height .22s ease;
}
.zb-servis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(34,36,41,.12);
    border-color: #b8eef9;
}
.zb-servis-card:hover::before {
    height: 4px;
}

/* Merkez kartı — özel vurgu */
.zb-servis-card--merkez {
    border-color: #00c2e7;
    background: linear-gradient(135deg, #f0fbfd 0%, #fff 100%);
}
.zb-servis-card--merkez::before {
    background: linear-gradient(90deg, #00c2e7, #0090aa);
    height: 4px;
}
.zb-merkez-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #00c2e7;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.zb-merkez-badge i { font-size: 9px; }

/* Şehir adı */
.zb-servis-city {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #00c2e7;
    margin-bottom: 6px;
}
.zb-servis-city i { font-size: 11px; }

/* Firma adı */
.zb-servis-company {
    font-size: 13px;
    font-weight: 600;
    color: #222429;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 36px;
}

/* Telefon linki */
.zb-servis-tel {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    background: #f4f8fa;
    border-radius: 6px;
    padding: 6px 10px;
    transition: background .2s, color .2s;
    width: 100%;
}
.zb-servis-tel i {
    color: #00c2e7;
    font-size: 13px;
    flex-shrink: 0;
}
.zb-servis-tel:hover {
    background: #00c2e7;
    color: #fff;
}
.zb-servis-tel:hover i { color: #fff; }

/* Sonuç yok mesajı */
.zb-servis-empty {
    text-align: center;
    padding: 60px 20px;
    color: #9aa5b5;
}
.zb-servis-empty i { font-size: 40px; margin-bottom: 14px; display: block; }
.zb-servis-empty p { font-size: 16px; margin: 0; }

/* Mobil */
@media (max-width: 767px) {
    .zb-servis-intro { flex-direction: column; align-items: flex-start; padding: 16px 18px; }
    .zb-servis-intro__stats { width: 100%; flex-wrap: wrap; }
    .zb-servis-search-inner { max-width: 100%; border-radius: 10px; }
    .zb-servis-company { font-size: 12px; min-height: auto; }
    .zb-servis-tel { font-size: 12px; }
    .zb-servis-city { font-size: 10px; }
}

/* --------------------------------------------------------
   İLETİŞİM SAYFASI (iletisim.php)
   -------------------------------------------------------- */

.zb-contact-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Form grup — label + input + hata mesajı */
.zb-form-group {
    margin-bottom: 20px;
}
.zb-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.zb-required {
    color: #e8393a;
    margin-left: 2px;
}

/* Geçerli / geçersiz input stilleri */
.zb-form-group .form-control.zb-input-error {
    border-color: #e8393a !important;
    background: #fff8f8;
    box-shadow: 0 0 0 3px rgba(232,57,58,.1);
}
.zb-form-group .form-control.zb-input-valid {
    border-color: #28a745 !important;
    background: #f8fff9;
    box-shadow: 0 0 0 3px rgba(40,167,69,.08);
}

/* Hata mesajı metni */
.zb-field-error {
    display: block;
    font-size: 12px;
    color: #e8393a;
    margin-top: 5px;
    min-height: 16px;
    line-height: 1.4;
}
.zb-field-error:empty {
    display: none;
}

/* KVKK onay checkbox */
.zb-kvkk-group {
    margin-bottom: 20px;
}
.zb-kvkk-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}
.zb-kvkk-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.zb-kvkk-check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border: 2px solid #cdd0d8;
    border-radius: 4px;
    background: #fff;
    transition: border-color .2s, background .2s;
}
.zb-kvkk-label input[type="checkbox"]:checked + .zb-kvkk-check {
    background: #00c2e7;
    border-color: #00c2e7;
}
.zb-kvkk-label input[type="checkbox"]:checked + .zb-kvkk-check::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}
.zb-kvkk-label:hover .zb-kvkk-check {
    border-color: #00c2e7;
}
.zb-kvkk-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}
.zb-kvkk-text a {
    color: #00c2e7;
    text-decoration: underline;
    font-weight: 600;
}
.zb-kvkk-text a:hover {
    color: #009ab8;
}

/* Form butonları satırı */
.zb-form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Disabled submit */
.theme-btn.zb-btn-disabled,
.theme-btn.zb-btn-disabled:hover {
    opacity: .45;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(30%);
}

/* Reset butonu — outline varyant */
.theme-btn.zb-btn-reset {
    background: transparent !important;
    color: #555 !important;
    border: 2px solid #d0d5de !important;
}
.theme-btn.zb-btn-reset:hover {
    background: #f2f4f7 !important;
    border-color: #adb5bd !important;
}
.theme-btn.zb-btn-reset .btn-title {
    color: #555;
}

/* Hata mesajı */
.zb-form-error-msg {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff5f5;
    border: 1px solid #fca5a5;
    color: #b91c1c;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    margin-top: 16px;
}
.zb-form-error-msg i { font-size: 16px; margin-top: 1px; flex-shrink: 0; }

/* Başarı kartı */
.zb-success-card {
    text-align: center;
    padding: 48px 32px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,194,231,.12);
    border: 1px solid #e0f7fd;
    animation: zbSuccessFadeIn .45s ease;
}
@keyframes zbSuccessFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.zb-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00c2e7 0%, #00a0c0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(0,194,231,.35);
}
.zb-success-icon i {
    font-size: 36px;
    color: #fff;
}
.zb-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
}
.zb-success-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}
.zb-success-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Gönderim sonuç kutusu (eski) */
#form-result {
    border-radius: 8px;
    font-size: 14px;
}

/* İletişim bilgileri sağ kolon */
.contact-details__right .contact-details__info {
    margin-top: 10px;
}
.contact-details__info li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f2f5;
}
.contact-details__info li:last-child {
    border-bottom: none;
}
.contact-details__info .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0fbfd;
    border: 1px solid #cdf0f8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-details__info .icon span {
    font-size: 18px;
    color: #00c2e7;
}
.zb-icon-whatsapp {
    background: #e8fdf0 !important;
    border-color: #b8f0ce !important;
}
.zb-icon-whatsapp span {
    color: #25D366 !important;
}
.contact-details__info .text h6 {
    font-size: 13px;
    font-weight: 700;
    color: #222429;
    margin: 0 0 3px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.contact-details__info .text a,
.contact-details__info .text span {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    line-height: 1.5;
}
.contact-details__info .text a:hover {
    color: #00c2e7;
}

/* Google Maps butonu */
.zb-maps-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}
.zb-maps-btn .btn-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobil */
@media (max-width: 767px) {
    .zb-contact-section { padding-top: 36px; padding-bottom: 50px; }
    .contact-details__right { margin-top: 36px; }
    .zb-form-actions { flex-direction: column; }
    .zb-form-actions .theme-btn { width: 100%; text-align: center; }
}

/* --------------------------------------------------------
   KVKK / YASAL SAYFA (aydinlatma_metni.php)
   -------------------------------------------------------- */
.zb-legal-section {
    padding: 60px 0 80px;
}
.zb-legal-box {
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    padding: 40px 48px;
    line-height: 1.8;
    font-size: 15px;
    color: #444;
    box-shadow: 0 4px 24px rgba(34,36,41,.06);
}
.zb-legal-box h2 {
    font-size: 22px;
    color: #222429;
    margin: 28px 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0fbfd;
}
.zb-legal-box h2:first-child { margin-top: 0; }
.zb-legal-box h3 {
    font-size: 16px;
    color: #222429;
    margin: 20px 0 8px;
}
.zb-legal-box p  { margin-bottom: 14px; }
.zb-legal-box ul { padding-left: 20px; margin-bottom: 14px; }
.zb-legal-box ul li { margin-bottom: 6px; }
.zb-legal-box strong { color: #222429; }
.zb-legal-box .zb-legal-date {
    font-size: 13px;
    color: #9aa5b5;
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #eaecf0;
}

@media (max-width: 767px) {
    .zb-legal-box { padding: 24px 20px; font-size: 14px; }
}

/* --------------------------------------------------------
   KULLANIM KILAVUZLARI (kilavuzlar.php) — 3D Kitap Efekti
   -------------------------------------------------------- */

.zb-manual-section {
    padding: 70px 0 100px;
    background: #f0f2f5;
}

/* Hero Banner */
.zb-manual-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, #1a1f36 0%, #222429 60%, #00c2e7 200%);
    border-radius: 16px;
    padding: 36px 44px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}
.zb-manual-hero::before {
    content: '\f518';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 200px;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    line-height: 1;
}
.zb-manual-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,194,231,.2);
    border: 1px solid rgba(0,194,231,.4);
    color: #00c2e7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.zb-manual-hero__left h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.zb-manual-hero__left p {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    margin: 0;
}
.zb-manual-hero__stats {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.zb-mh-stat {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 14px 20px;
    text-align: center;
    min-width: 80px;
}
.zb-mh-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #00c2e7;
    line-height: 1;
}
.zb-mh-stat span {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}

/* Filtre */
.zb-manual-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.zb-mf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid #e0e4ea;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .25s;
}
.zb-mf-btn i { font-size: 13px; }
.zb-mf-btn:hover { border-color: #00c2e7; color: #00c2e7; }
.zb-mf-btn.active { background: #00c2e7; border-color: #00c2e7; color: #fff; }
.zb-mf-count {
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.1); min-width: 22px; height: 22px;
    border-radius: 50%; font-size: 11px; font-weight: 700; padding: 0 4px;
}
.zb-mf-btn.active .zb-mf-count { background: rgba(255,255,255,.3); }

/* Grid */
.zb-manual-item { margin-bottom: 40px; }

/* ── KİTAP KARTI (3D Spine Efekti) ── */
.zb-book-card {
    display: flex;
    height: 380px;
    perspective: 1200px;
    cursor: pointer;
}

/* Kitap Sırtı */
.zb-book-spine {
    width: 36px;
    min-width: 36px;
    background: var(--book-color, #c0272d);
    border-radius: 6px 0 0 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    box-shadow: -4px 4px 14px rgba(0,0,0,.25), inset -3px 0 8px rgba(0,0,0,.2);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.zb-spine-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,.85);
    letter-spacing: .5px;
    text-transform: uppercase;
    max-height: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 2px;
}
.zb-spine-logo {
    writing-mode: vertical-rl;
    font-size: 8px;
    font-weight: 800;
    color: rgba(255,255,255,.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Kitap Kapağı */
.zb-book-cover {
    flex: 1;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 4px 6px 20px rgba(0,0,0,.15), 8px 10px 40px rgba(0,0,0,.08);
    position: relative;
    transform-origin: left center;
    transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s;
}
.zb-book-card:hover .zb-book-cover {
    transform: perspective(800px) rotateY(-8deg) translateX(4px);
    box-shadow: 8px 10px 30px rgba(0,0,0,.22), 16px 20px 60px rgba(0,0,0,.1);
}

/* Kapak üst şerit */
.zb-book-cover__top {
    background: var(--book-color, #c0272d);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.zb-book-logo {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .9;
}
.zb-book-cover__icon {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zb-book-cover__icon i {
    font-size: 15px;
    color: #fff;
}

/* Kapak görsel */
.zb-book-cover__img {
    flex: 1;
    overflow: hidden;
    background: #f0f2f5;
}
.zb-book-cover__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.zb-book-card:hover .zb-book-cover__img img {
    transform: scale(1.06);
}

/* Kapak alt şerit */
.zb-book-cover__bottom {
    background: #fff;
    padding: 12px 16px 14px;
    border-top: 3px solid var(--book-color, #c0272d);
    flex-shrink: 0;
}
.zb-book-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--book-color, #c0272d);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 3px;
}
.zb-book-title {
    font-size: 13px;
    font-weight: 800;
    color: #222429;
    margin: 0 0 6px;
    line-height: 1.3;
}
.zb-book-meta {
    display: flex;
    gap: 12px;
}
.zb-book-meta span {
    font-size: 10px;
    color: #9aa5b5;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.zb-book-meta span i { font-size: 9px; color: var(--book-color, #c0272d); }

/* Hover Overlay */
.zb-book-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s;
    border-radius: 0 10px 10px 0;
}
.zb-book-card:hover .zb-book-overlay { opacity: 1; }

.zb-book-overlay__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    text-align: center;
    transform: translateY(10px);
    transition: transform .35s;
}
.zb-book-card:hover .zb-book-overlay__inner { transform: translateY(0); }

.zb-book-overlay__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}
.zb-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .2s, background .2s;
    width: 160px;
    justify-content: center;
}
.zb-book-btn:hover { transform: translateY(-2px); text-decoration: none; }
.zb-book-btn--view {
    background: #fff;
    color: #222429;
}
.zb-book-btn--view:hover { background: #f0f2f5; color: #222429; }
.zb-book-btn--dl {
    background: var(--book-color, #c0272d);
    color: #fff;
    border: 2px solid rgba(255,255,255,.2);
}
.zb-book-btn--dl:hover { color: #fff; }

/* --------------------------------------------------------
   ÜRÜN DETAY — YouTube Video Play Butonu
   -------------------------------------------------------- */

.zb-prod-video-wrap {
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.zb-prod-play-btn {
    display: block;
    position: relative;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}
.zb-prod-play-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s, opacity .4s;
    opacity: .85;
}
.zb-prod-play-btn:hover img {
    transform: scale(1.04);
    opacity: .7;
}

/* Koyu overlay */
.zb-prod-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.18);
    transition: background .3s;
}
.zb-prod-play-btn:hover .zb-prod-play-overlay {
    background: rgba(0,0,0,.35);
}

/* Kırmızı play butonu */
.zb-prod-play-icon {
    width: 68px;
    height: 68px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 24px rgba(255,0,0,.55);
    transition: transform .25s, box-shadow .25s;
}
.zb-prod-play-btn:hover .zb-prod-play-icon {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(255,0,0,.7);
}
.zb-prod-play-icon i {
    color: #fff;
    font-size: 24px;
    margin-left: 4px;
}

/* Pulse halkaları */
.zb-prod-play-pulse {
    position: absolute;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255,0,0,.35);
    animation: zbProdPulse 2s ease-out infinite;
}
.zb-prod-play-pulse--2 {
    animation-delay: .7s;
    background: rgba(255,0,0,.2);
}
@keyframes zbProdPulse {
    0%   { transform: scale(1);   opacity: .8; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Alt etiket */
.zb-prod-video-label {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,0,0,.9);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .3px;
}
.zb-prod-video-label i { font-size: 13px; }

/* --------------------------------------------------------
   ÜRÜN DETAY — Video thumbnail (thumb-box'ın son elemanı)
   -------------------------------------------------------- */
.zb-yt-thumb-li figure { position: relative; overflow: hidden; }
.zb-yt-thumb-li figure img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Play dairesi */
.zb-yt-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(220, 38, 38, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    padding-left: 2px;
    pointer-events: none;
    z-index: 2;
}
.zb-yt-thumb-play .fa-play { position: relative; z-index: 3; }

/* Pulse halkalar */
.zb-yt-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.5);
    animation: zbYtPulse 2s ease-out infinite;
    z-index: 1;
}
.zb-yt-pulse--2 {
    background: rgba(220, 38, 38, 0.3);
    animation-delay: .7s;
}

@keyframes zbYtPulse {
    0%   { transform: translate(-50%,-50%) scale(1);   opacity: .7; }
    100% { transform: translate(-50%,-50%) scale(2.2); opacity: 0;  }
}

/* Hover efekti */
.zb-yt-thumb-link:hover .zb-yt-thumb-play {
    background: rgba(185, 28, 28, 1);
    transform: translate(-50%, -50%) scale(1.1);
    transition: transform .2s, background .2s;
}
.zb-yt-thumb-link:hover .zb-yt-pulse { animation-play-state: running; }

/* --------------------------------------------------------
   Ürün kart resim alanı — position:relative gerekli
   -------------------------------------------------------- */
.product-block .image { position: relative; overflow: hidden; }

/* --------------------------------------------------------
   KATEGORİ SHOWCASE — urunler.php üst kart grid
   -------------------------------------------------------- */
.zb-cat-showcase {
    padding: 40px 0 10px;
    background: #f8fafc;
    border-bottom: 1px solid #eaecf0;
}

.zb-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.zb-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 2px solid #eaecf0;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    cursor: pointer;
}
.zb-cat-card:hover {
    border-color: #00c2e7;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,194,231,.18);
    text-decoration: none;
}
.zb-cat-card.active {
    border-color: #00c2e7;
    box-shadow: 0 0 0 3px rgba(0,194,231,.25);
}

/* Görsel kutu */
.zb-cat-card__img {
    width: 100%;
    height: 110px;
    position: relative;
    overflow: hidden;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zb-cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s, filter .35s;
    filter: grayscale(1);
}
.zb-cat-card:hover .zb-cat-card__img img,
.zb-cat-card.active .zb-cat-card__img img {
    transform: scale(1.07);
    filter: grayscale(0);
}

/* Görsel yoksa emoji/ikon */
.zb-cat-card__icon,
.zb-cat-card__icon-fb {
    font-size: 2.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00c2e7;
}
.zb-cat-card__icon-fb {
    position: absolute;
    inset: 0;
    background: #f0f4f8;
    display: none; /* JS ile gösterilir, fallback */
}

/* Hover overlay */
.zb-cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,194,231,.35) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .25s;
}
.zb-cat-card:hover .zb-cat-card__overlay { opacity: 1; }

/* Etiket */
.zb-cat-card__label {
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #222429;
    text-align: center;
    line-height: 1.35;
    transition: color .25s;
    width: 100%;
}
.zb-cat-card:hover .zb-cat-card__label { color: #00a8cc; }
.zb-cat-card.active .zb-cat-card__label { color: #00a8cc; }

/* Mobil */
@media (max-width: 767px) {
    .zb-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .zb-cat-card__img { height: 80px; }
    .zb-cat-card__label { font-size: 11px; padding: 8px 8px; }
    .zb-cat-showcase { padding: 24px 0 6px; }
}
@media (max-width: 480px) {
    .zb-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Boş mesaj */
.zb-manual-empty {
    text-align: center; padding: 80px 20px; color: #9aa5b5;
}
.zb-manual-empty i { font-size: 52px; opacity: .3; display: block; margin-bottom: 16px; }
.zb-manual-empty p { font-size: 16px; margin: 0; }

/* Mobil */
@media (max-width: 767px) {
    .zb-manual-hero { padding: 24px 20px; }
    .zb-manual-hero__left h2 { font-size: 22px; }
    .zb-book-card { height: 320px; }
    .zb-book-spine { width: 28px; min-width: 28px; }
    .zb-spine-text { font-size: 9px; }
    .zb-book-btn { width: 140px; font-size: 12px; padding: 9px 18px; }
}
@media (max-width: 575px) {
    .zb-mh-stat { padding: 10px 14px; min-width: 60px; }
    .zb-mh-stat strong { font-size: 22px; }
}

/* --------------------------------------------------------
   BELGELER SAYFASI (belgeler.php)
   -------------------------------------------------------- */

.zb-docs-section {
    padding: 70px 0 90px;
    background: #f7f9fb;
}

/* Başlık + sayaçlar */
.zb-docs-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.zb-docs-header__text h2 {
    font-size: 30px;
    font-weight: 700;
    color: #222429;
    margin: 0 0 6px;
}
.zb-docs-header__text p {
    font-size: 15px;
    color: #777;
    margin: 0;
}
.zb-docs-counts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.zb-docs-count-item {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    padding: 12px 20px;
    text-align: center;
    min-width: 90px;
    box-shadow: 0 2px 10px rgba(34,36,41,.05);
}
.zb-docs-count-num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #00c2e7;
    line-height: 1;
}
.zb-docs-count-lbl {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #9aa5b5;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 4px;
}

/* Filtre bar */
.zb-doc-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.zb-df-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid #e8ecf0;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s;
    line-height: 1;
}
.zb-df-btn i { font-size: 12px; }
.zb-df-btn:hover {
    border-color: #00c2e7;
    color: #00c2e7;
}
.zb-df-btn.active {
    background: #00c2e7;
    border-color: #00c2e7;
    color: #fff;
}
.zb-df-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.1);
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    padding: 0 4px;
}
.zb-df-btn.active .zb-df-count { background: rgba(255,255,255,.3); }

/* Belge kartı */
.zb-doc-item { margin-bottom: 28px; }
.zb-doc-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(34,36,41,.07);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-top: 4px solid #e8ecf0;
}
.zb-doc-card--ce       { border-top-color: #1565c0; }
.zb-doc-card--iso      { border-top-color: #c8971a; }
.zb-doc-card--pdf      { border-top-color: #e53935; }

.zb-doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(34,36,41,.13);
}

/* Kart başlık şeridi */
.zb-doc-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 0;
}
.zb-doc-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: .8px;
    color: #fff;
}
.zb-doc-badge--ce      { background: #1565c0; }
.zb-doc-badge--iso     { background: #c8971a; }
.zb-doc-badge--pdf     { background: #e53935; }

.zb-doc-cat-label {
    font-size: 10px;
    color: #9aa5b5;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}

/* Belge görseli */
.zb-doc-thumb {
    position: relative;
    overflow: hidden;
    margin: 14px 16px 0;
    border-radius: 8px;
    background: #f0f2f5;
    aspect-ratio: 3/4;
    border: 1px solid #e8ecf0;
}
.zb-doc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .4s;
    display: block;
}
.zb-doc-card:hover .zb-doc-thumb img {
    transform: scale(1.04);
}

/* Hover overlay */
.zb-doc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    border-radius: 8px;
}
.zb-doc-card:hover .zb-doc-overlay { opacity: 1; }

.zb-doc-view-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    transition: transform .2s;
}
.zb-doc-view-btn i {
    font-size: 32px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}
.zb-doc-view-btn span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.4);
    padding: 4px 14px;
    border-radius: 20px;
}
.zb-doc-view-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: scale(1.08);
}

/* Alt bilgi */
.zb-doc-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.zb-doc-title {
    font-size: 13px;
    font-weight: 700;
    color: #222429;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}
.zb-doc-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.zb-doc-meta span {
    font-size: 11px;
    color: #9aa5b5;
    display: flex;
    align-items: center;
    gap: 5px;
}
.zb-doc-meta span i { color: #00c2e7; font-size: 11px; }
.zb-doc-valid i { color: #28a745 !important; }
.zb-doc-valid { color: #28a745 !important; }

.zb-doc-open-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #00c2e7;
    text-decoration: none;
    margin-top: 4px;
    transition: gap .2s, color .2s;
}
.zb-doc-open-link i { font-size: 12px; }
.zb-doc-open-link:hover {
    color: #0099b8;
    gap: 9px;
    text-decoration: none;
}

/* Boş mesaj */
.zb-docs-empty {
    text-align: center;
    padding: 80px 20px;
    color: #9aa5b5;
}
.zb-docs-empty i {
    font-size: 52px;
    opacity: .3;
    display: block;
    margin-bottom: 16px;
}
.zb-docs-empty p { font-size: 16px; margin: 0; }

/* Mobil */
@media (max-width: 991px) {
    .zb-docs-header { flex-direction: column; }
}
@media (max-width: 767px) {
    .zb-df-btn { font-size: 12px; padding: 7px 14px; }
    .zb-doc-thumb { aspect-ratio: 4/3; }
    .zb-doc-thumb img { object-position: center; }
}

/* --------------------------------------------------------
   VİDEOLAR SAYFASI (videolar.php)
   -------------------------------------------------------- */

/* Sayfa genel */
.zb-videos-section {
    padding: 70px 0 90px;
    background: #f7f9fb;
}

/* Başlık + kanal butonu */
.zb-videos-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.zb-videos-header__text h2 {
    font-size: 30px;
    font-weight: 700;
    color: #222429;
    margin: 0 0 6px;
}
.zb-videos-header__text p {
    font-size: 15px;
    color: #777;
    margin: 0;
}
.zb-yt-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff0000;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
}
.zb-yt-channel-btn i { font-size: 16px; }
.zb-yt-channel-btn:hover {
    background: #cc0000;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Kategori filtre bar */
.zb-video-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.zb-vf-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 2px solid #e8ecf0;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s;
    line-height: 1;
}
.zb-vf-btn:hover {
    border-color: #00c2e7;
    color: #00c2e7;
}
.zb-vf-btn.active {
    background: #00c2e7;
    border-color: #00c2e7;
    color: #fff;
}
.zb-vf-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}
.zb-vf-btn.active .zb-vf-count { background: rgba(255,255,255,.3); }

/* Video kartı */
.zb-video-item { margin-bottom: 30px; }
.zb-video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(34,36,41,.07);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.zb-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(34,36,41,.14);
}

/* Thumbnail */
.zb-video-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #1a1a2e;
}
.zb-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
    display: block;
}
.zb-video-card:hover .zb-video-thumb img {
    transform: scale(1.05);
}

/* Overlay */
.zb-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}
.zb-video-card:hover .zb-video-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.65) 100%);
}

/* Play butonu */
.zb-play-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.zb-play-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.zb-play-icon i {
    font-size: 20px;
    color: #00c2e7;
    margin-left: 4px;
    transition: color .2s;
}
.zb-video-card:hover .zb-play-icon {
    background: #00c2e7;
    transform: scale(1.1);
}
.zb-video-card:hover .zb-play-icon i { color: #fff; }

/* Pulse animasyonu */
.zb-play-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    animation: zbPlayPulse 2s ease-out infinite;
    z-index: 1;
}
.zb-play-pulse--2 { animation-delay: .8s; }
@keyframes zbPlayPulse {
    0%   { transform: scale(1);   opacity: .7; }
    100% { transform: scale(2.2); opacity: 0;  }
}

/* Süre rozeti */
.zb-video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,.75);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: .3px;
}
.zb-video-duration i { margin-right: 3px; font-size: 10px; }

/* Kategori rozeti */
.zb-video-cat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #00c2e7;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Card alt kısım */
.zb-video-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.zb-video-title {
    font-size: 14px;
    font-weight: 700;
    color: #222429;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}
.zb-video-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}
.zb-video-title a:hover { color: #00c2e7; }

/* İzle butonu */
.zb-video-watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: #00c2e7;
    text-decoration: none;
    letter-spacing: .3px;
    transition: gap .2s, color .2s;
}
.zb-video-watch-btn i { font-size: 15px; }
.zb-video-watch-btn:hover {
    color: #0099b8;
    gap: 10px;
    text-decoration: none;
}

/* Boş mesaj */
.zb-videos-empty {
    text-align: center;
    padding: 80px 20px;
    color: #9aa5b5;
}
.zb-videos-empty i {
    font-size: 52px;
    color: #ff0000;
    opacity: .4;
    display: block;
    margin-bottom: 16px;
}
.zb-videos-empty p { font-size: 16px; margin: 0; }

/* Mobil */
@media (max-width: 767px) {
    .zb-videos-header { flex-direction: column; align-items: flex-start; }
    .zb-video-filter { gap: 8px; }
    .zb-vf-btn { font-size: 12px; padding: 7px 14px; }
    .zb-video-body { padding: 14px 16px 16px; }
}

/* --------------------------------------------------------
   404 SAYFASI (404.php)
   -------------------------------------------------------- */
.zb-404-section {
    padding: 80px 0 100px;
    text-align: center;
}
.error-page__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.error-page__title-box {
    margin-bottom: 24px;
}
.error-page__title-box img {
    max-width: 420px;
    width: 100%;
    height: auto;
}
.error-page__sub-title {
    font-size: 28px;
    font-weight: 700;
    color: #222429;
    margin: 20px 0 0;
}
.error-page__text {
    font-size: 16px;
    color: #777;
    max-width: 520px;
    margin: 12px auto 32px;
    line-height: 1.7;
}
.zb-404-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.zb-404-btns .theme-btn { margin: 0; }

@media (max-width: 575px) {
    .error-page__sub-title { font-size: 22px; }
    .error-page__text { font-size: 14px; }
    .zb-404-btns { flex-direction: column; align-items: center; }
}

/* --------------------------------------------------------
   3. Header telefon kutusu — Türkçe uyumu
   -------------------------------------------------------- */
.main-header .info-btn small {
    font-size: 11px;
    display: block;
    line-height: 1.2;
}

/* --------------------------------------------------------
   4. Footer — iletişim listesi satır aralığı
   -------------------------------------------------------- */
.main-footer .contact-info li {
    margin-bottom: 6px;
    line-height: 1.5;
}

/* --------------------------------------------------------
   5. Dropdown menü — 3. seviye (Et/Hamur/Sebze alt menüleri)
      Şablonun dropdown js'si 2 seviyeyi otomatik destekler;
      3. seviye için yeterli genişlik sağlıyoruz.
   -------------------------------------------------------- */
.main-menu .navigation li.dropdown ul li.dropdown > ul {
    min-width: 230px;
}

/* --------------------------------------------------------
   6. Harita — Location Dot Pulse / Ripple Animasyonu
      Şablonun soluk ripple'ını geçersiz kılarak 3 halkalı,
      belirgin bir pulse efekti ekliyoruz.
   -------------------------------------------------------- */

/* Ana pulse keyframe: scale(0) → scale(3) + opacity 0 */
@keyframes bfPulse {
    0%   { transform: scale(0.3); opacity: 0.7; }
    100% { transform: scale(3.2); opacity: 0;   }
}

/* Nokta rengi: harita üzerinde okunabilir koyu lacivert */
.locations-section .location-dot {
    background-color: #1a2e4a !important;
    box-shadow: 0 0 0 3px rgba(26, 46, 74, 0.25);
    position: relative;
    z-index: 3;
}

/* Şablonun ::after'ını daha güçlü ripple ile override et */
.locations-section .location-dot::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-left: -8px;
    margin-top: -8px;
    background-color: rgba(26, 46, 74, 0.55);
    border-radius: 50%;
    animation: bfPulse 2s ease-out infinite !important;
    z-index: 1;
}

/* 2. halka — ::before ile, biraz gecikmeli */
.locations-section .location-dot::before {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-left: -8px;
    margin-top: -8px;
    background-color: rgba(26, 46, 74, 0.35);
    border-radius: 50%;
    animation: bfPulse 2s ease-out 0.7s infinite;
    z-index: 1;
    pointer-events: none;
}

/* 3. halka — her location'ın ::before'u, daha fazla gecikme */
.locations-section .location::before {
    position: absolute;
    content: '';
    /* dot merkeziyle çakışması için offset ayarı —
       dot top:0 left:0 olarak konumlandırılmış */
    top: 8px;
    left: 8px;
    width: 16px;
    height: 16px;
    margin-left: -8px;
    margin-top: -8px;
    background-color: rgba(26, 46, 74, 0.2);
    border-radius: 50%;
    animation: bfPulse 2s ease-out 1.4s infinite;
    z-index: 0;
    pointer-events: none;
}

/* Türkiye pini — kırmızı özel renk */
.locations-section .location.location-6 .location-dot {
    background-color: #e8393a !important;
    box-shadow: 0 0 0 3px rgba(232, 57, 58, 0.25) !important;
}
.locations-section .location.location-6 .location-dot::after,
.locations-section .location.location-6 .location-dot::before {
    background-color: rgba(232, 57, 58, 0.5) !important;
}
.locations-section .location.location-6::before {
    background-color: rgba(232, 57, 58, 0.25) !important;
}

/* Her dot farklı başlasın → dalgalı görüntü */
.locations-section .location:nth-child(2) .location-dot::after { animation-delay: 0.3s  !important; }
.locations-section .location:nth-child(2) .location-dot::before{ animation-delay: 1.0s; }
.locations-section .location:nth-child(3) .location-dot::after { animation-delay: 0.6s  !important; }
.locations-section .location:nth-child(3) .location-dot::before{ animation-delay: 1.3s; }
.locations-section .location:nth-child(4) .location-dot::after { animation-delay: 0.9s  !important; }
.locations-section .location:nth-child(4) .location-dot::before{ animation-delay: 1.6s; }
.locations-section .location:nth-child(5) .location-dot::after { animation-delay: 1.2s  !important; }
.locations-section .location:nth-child(5) .location-dot::before{ animation-delay: 1.9s; }

/* ============================================================
   BLOG DETAY SAYFASI — zbsoft.css
   -------------------------------------------------------- */
.zb-blog-detail-section {
    padding: 70px 0 90px;
    background: #f7f9fb;
}

/* Makale kutu */
.zb-blog-article {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    overflow: hidden;
    margin-bottom: 40px;
}

/* Kapak görsel */
.zb-blog-cover {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
}
.zb-blog-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Meta bar */
.zb-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 18px 30px 0;
    font-size: 13px;
    color: #888;
}
.zb-blog-meta span i { margin-right: 4px; color: var(--theme-color, #00c2e7); }

/* Başlık */
.zb-blog-article__title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    padding: 16px 30px 8px;
    line-height: 1.35;
}

/* Özet */
.zb-blog-article__ozet {
    font-size: 16px;
    color: #555;
    padding: 0 30px 12px;
    font-style: italic;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 12px;
}

/* İçerik */
.zb-blog-article__content {
    padding: 12px 30px 30px;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}
.zb-blog-article__content p { margin-bottom: 14px; }

/* Etiketler */
.zb-blog-tags {
    padding: 0 30px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #888;
}
.zb-blog-tag {
    background: #f0f8ff;
    color: var(--theme-color, #00c2e7);
    border: 1px solid var(--theme-color, #00c2e7);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 12px;
}

/* Sosyal paylaşım */
.zb-blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px 24px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: #888;
}
.zb-blog-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: opacity .2s;
}
.zb-blog-share a:hover { opacity: .8; }
.zb-share-fb { background: #1877f2; }
.zb-share-tw { background: #1da1f2; }
.zb-share-wa { background: #25d366; }
.zb-share-li { background: #0a66c2; }

/* ── Sidebar ── */
.zb-blog-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.zb-sidebar-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    overflow: hidden;
}

.zb-sidebar-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    background: #f7f9fb;
    padding: 14px 20px;
    border-bottom: 2px solid var(--theme-color, #00c2e7);
    margin: 0;
}
.zb-sidebar-card__title i { color: var(--theme-color, #00c2e7); margin-right: 6px; }

/* Son yazılar listesi */
.zb-sidebar-posts {
    list-style: none;
    margin: 0;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.zb-sidebar-post {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.zb-sidebar-post__thumb {
    flex-shrink: 0;
    width: 70px;
    height: 55px;
    border-radius: 6px;
    overflow: hidden;
    display: block;
}
.zb-sidebar-post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.zb-sidebar-post__info {
    flex: 1;
    min-width: 0;
}
.zb-sidebar-post__title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color .2s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.zb-sidebar-post__title:hover { color: var(--theme-color, #00c2e7); }
.zb-sidebar-post__date { font-size: 11px; color: #aaa; }
.zb-sidebar-post__date i { margin-right: 3px; }

/* CTA Sidebar */
.zb-sidebar-cta {
    padding: 0 0 20px;
    text-align: center;
}
.zb-sidebar-cta p {
    padding: 14px 20px 10px;
    font-size: 14px;
    color: #666;
    margin: 0;
}
.zb-sidebar-cta .theme-btn {
    display: inline-block;
    width: calc(100% - 40px);
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .zb-blog-sidebar { position: static; margin-top: 30px; }
    .zb-blog-article__title { font-size: 21px; }
}
@media (max-width: 575px) {
    .zb-blog-article__title { font-size: 18px; }
    .zb-blog-meta { padding: 14px 18px 0; gap: 10px; }
    .zb-blog-article__content { padding: 10px 18px 20px; }
    .zb-blog-article__ozet { padding: 0 18px 10px; }
    .zb-blog-share { padding: 14px 18px 18px; }
    .zb-blog-tags { padding: 0 18px 16px; }
}

/* --------------------------------------------------------
   Sticky Header — slider/content'in üzerinde kalmalı
   -------------------------------------------------------- */
.sticky-header {
    z-index: 9999 !important;
}
/* bxSlider wrapper'ının sticky menüyü ezmemesi için */
.bx-wrapper {
    z-index: 1 !important;
}
.product-details .col-lg-6:first-child {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------
   SCROLL TO TOP — Sola taşı (style.css'teki right:20px override)
   -------------------------------------------------------- */
.scroll-to-top {
    right: auto !important;
    left: 20px !important;
}

/* --------------------------------------------------------
   BANNER SLIDER — Sağ/sol mavi dekoratif şekli kaldır (shape-2.png)
   -------------------------------------------------------- */
.banner-section-three::before {
    display: none !important;
}

/* --------------------------------------------------------
   ABOUT SECTION SIX — pt-0 override: üstten 40px boşluk
   -------------------------------------------------------- */
.about-section-six.pt-0 {
    padding-top: 40px !important;
}

/* ============================================================
   SERVICES SECTION FOUR — Dark Premium Theme Override
   (style.css'e dokunmadan zbsoft.css'ten override)
   ============================================================ */

/* Section arka plan: koyu renk + nokta grid */
.services-section-four {
    position: relative;
    background-color: #13161c;
    background-image: radial-gradient(circle, rgba(0, 194, 231, 0.13) 1.2px, transparent 1.2px);
    background-size: 26px 26px;
    overflow: hidden;
}

/* Köşe ışıma */
.services-section-four::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 0% 0%,   rgba(0,194,231,0.07) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 100% 100%, rgba(192,39,45,0.06)   0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* İçerik en üstte kalsın */
.services-section-four .auto-container {
    position: relative;
    z-index: 1;
}

/* Başlıklar */
.services-section-four .sec-title .sub-title {
    color: #00c2e7;
}
.services-section-four .sec-title h2 {
    color: #ffffff;
}
.services-section-four .sec-title .text {
    color: #8c9aac;
}

/* ── Kart ── */
.services-section-four .service-block-four .inner-box {
    background-color: #1c2028 !important;
    background-image: none !important;   /* shape-1.jpg kapat */
    border-radius: 16px !important;
    border: 1px solid rgba(0, 194, 231, 0.12) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35) !important;
    padding: 36px 32px 32px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

/* :before overlay'i tamamen kapat (style.css'teki beyaz overlay) */
.services-section-four .service-block-four .inner-box::before {
    display: none !important;
}

/* ── İkon çemberi ── */
.services-section-four .service-block-four .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(0, 194, 231, 0.1);
    border: 1px solid rgba(0, 194, 231, 0.25);
    margin-bottom: 24px;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.services-section-four .service-block-four .icon {
    font-size: 28px !important;
    width: auto !important;
    height: auto !important;
    color: #00c2e7 !important;
    background: transparent !important;
    border-radius: 0 !important;
    line-height: 1 !important;
}

/* ── Başlık & metin ── */
.services-section-four .service-block-four .title,
.services-section-four .service-block-four .title a {
    color: #e8edf2 !important;
    transition: color 0.2s ease;
}
.services-section-four .service-block-four .text {
    color: #7d8fa3 !important;
    font-size: 14px;
    line-height: 1.7;
}

/* ── Hover ── */
.services-section-four .service-block-four .inner-box:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(0, 194, 231, 0.45) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0,194,231,0.2) !important;
}
.services-section-four .service-block-four .inner-box:hover .icon-box {
    background: rgba(0, 194, 231, 0.2);
    border-color: rgba(0, 194, 231, 0.5);
}
.services-section-four .service-block-four .inner-box:hover .icon {
    color: #00d9ff !important;
}
.services-section-four .service-block-four .inner-box:hover .title,
.services-section-four .service-block-four .inner-box:hover .title a {
    color: #ffffff !important;
}
.services-section-four .service-block-four .inner-box:hover .text {
    color: #9aafc4 !important;
}
