/* GENEL VE KART STİLLERİ */
.bw-card-visual {
    position: relative;
    width: 100%;
    height: 385px;
    background: #fff;
    overflow: hidden;
}

.bw-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bw-card-content {
    padding-top: 10px;
    background: #fff;
}

body,
main,
.products-grid-area,
.full-container,
.d229-listing-wrapper,
.products-grid-area *,
.full-container *,
.d229-listing-wrapper * {
    background: transparent !important;
    background-color: transparent !important;
}

/* ---------- SADECE HERO BÖLÜMÜNE ÖZEL STİLLER ---------- */
.category-hero {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #0a0c10;
    font-family: inherit;
}

.category-hero .hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.category-hero .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.02);
    transition: transform 0.7s ease;
}

.category-hero:hover .hero-media img {
    transform: scale(1.05);
}

.category-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.category-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0;
    padding: 2rem 3rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: inherit;
}

.category-hero .inner {
    max-width: 680px;
    animation: heroFadeInUp 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
    margin-top: 128px;
}

.category-hero h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
    color: inherit;
}

.category-hero h1 span {
    color: #ed1c24;
    display: block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.category-hero .hero-description {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 540px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

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

/* Responsive */
@media (max-width: 768px) {
    .category-hero {
        min-height: 407px;
    }
    .category-hero .hero-content {
        padding: 1.5rem;
        justify-content: flex-end;
    }
    .category-hero .inner {
        margin-top: 0;
        margin-bottom: 0rem;
    }
    .category-hero h1 {
        font-size: 2.4rem;
    }
    .category-hero .hero-description {
        font-size: 1rem;
    }
    .category-hero nav ol {
        font-size: 0.8rem;
        gap: 0.4rem;
    }
}

@media (max-width: 480px) {
    .category-hero h1 {
        font-size: 2rem;
    }
    .category-hero .hero-description {
        font-size: 0.95rem;
    }
}