/* ========================================
   MODERN BREADCRUMB STYLES - Genper Theme
   Tüm sayfalardaki breadcrumb'lar için
   ======================================== */

/* Page Hero Section */
.page-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    padding-top: 100px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.6);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Modern Breadcrumb */
.breadcrumb-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.breadcrumb-product a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-product a:hover {
    color: var(--secondary);
}

.breadcrumb-product svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.breadcrumb-product .current {
    color: var(--secondary);
    font-weight: 500;
}

/* Alternatif breadcrumb stilleri */
.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.breadcrumb-modern a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-modern a:hover {
    color: var(--secondary);
}

.breadcrumb-modern .current {
    color: var(--secondary);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        min-height: 35vh;
        padding-top: 80px;
    }
    
    .page-hero-content h1 {
        font-size: 1.75rem;
    }
    
    .breadcrumb-product,
    .breadcrumb-modern {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .breadcrumb-product svg,
    .breadcrumb-modern svg {
        width: 14px;
        height: 14px;
    }
}
