/* ===========================================
   AKB Kategori Banner - Frontend
   =========================================== */

.akb-cat-banner {
    position: relative;
    width: 100%;
    margin-left: 0;
    height: 180px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
}

.akb-cat-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.akb-cat-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 30px;
    max-width: 800px;
}

.akb-cat-banner-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: inherit !important;
}

.akb-cat-banner-desc {
    font-size: 15px;
    margin: 0 0 10px 0;
    line-height: 1.5;
    opacity: 0.92;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    color: inherit !important;
}

.akb-cat-banner-count {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: inherit !important;
}

/* Görsel yoksa gradient banner */
.akb-cat-banner:not([style*="background-image"]) {
    background: linear-gradient(145deg, #0e4a3e, #1a6b5a);
}

/* Animasyon */
.akb-cat-banner-content {
    animation: akbBannerFadeIn 0.6s ease;
}

@keyframes akbBannerFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .akb-cat-banner {
        height: 150px;
        margin-bottom: 20px;
    }

    .akb-cat-banner-title {
        font-size: 24px;
    }

    .akb-cat-banner-desc {
        font-size: 13px;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .akb-cat-banner {
        height: 130px;
        margin-bottom: 16px;
    }

    .akb-cat-banner-title {
        font-size: 20px;
    }

    .akb-cat-banner-desc {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .akb-cat-banner-content {
        padding: 16px 20px;
    }
}

/* WooCommerce varsayılan başlığı gizle (çift başlık olmasın) */
.term-description,
.woocommerce-products-header__title.page-title {
    display: none !important;
}
