/**
 * Page Title ve Breadcrumb Özelleştirmeleri
 */

/* Page Title Koyu Desenli Arkaplan */
.page-title {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 8s ease infinite;
}

/* Desenli Overlay - Daha Belirgin */
.page-title::before {
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.2) 10px,
            rgba(0, 0, 0, 0.2) 20px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.15) 10px,
            rgba(0, 0, 0, 0.15) 20px
        ) !important;
    z-index: 1;
}

/* Nokta Deseni - Daha Belirgin */
.page-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    pointer-events: none;
    z-index: 1;
}

/* Gradient Animasyonu */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Breadcrumb Özelleştirme */
.breadkcum {
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    border: none !important;
    padding: 0 !important;
    z-index: 2;
    gap: 12px !important;
}

.breadkcum a,
.breadkcum span.caption-1 {
    color: rgba(255, 255, 255, 0.95) !important;
    position: relative;
    font-size: 16px !important;
    font-weight: 500 !important;
}

/* Sadece Home (Anasayfa) ikonu */
.breadkcum a.home {
    padding-left: 28px !important;
}

.breadkcum a.home::before {
    content: '\f015';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.breadkcum a:hover {
    color: #fff !important;
}

.breadkcum a.home:hover::before {
    color: #fff;
}

/* Page Title Boşluk Düzeltmesi */
.page-title.style-1 {
    padding: 30px 0 !important;
}

.page-title.style-1 .breadkcum {
    padding-bottom: 0 !important;
}

/* Başlık ve Alt Başlığı Gizle */
.page-title .title-page-title,
.page-title .sub-title {
    display: none !important;
}

/* Page Title İçeriği */
.page-title-content {
    z-index: 2;
}


/* Resim Yok Placeholder */
.no-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
}

.no-image-placeholder:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.no-image-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    color: #ccc;
}

.no-image-placeholder span {
    font-size: 14px;
    font-weight: 500;
    color: #999;
}

/* Ürün kartları için */
.product-item .no-image-placeholder,
.service-block .no-image-placeholder {
    min-height: 250px;
}

.product-item .no-image-placeholder i,
.service-block .no-image-placeholder i {
    font-size: 64px;
}

/* Liste öğeleri için */
.related-products .no-image-placeholder {
    min-height: 200px;
}

/* Detay sayfaları için */
.gallery-main .no-image-placeholder {
    min-height: 400px;
}
