/* Ana sayfa kategori kutuları — eğimli renk bandı */
.hp-category-grid {
    --hp-cat-accent: #181818;
    --hp-cat-accent-mid: rgba(24, 24, 24, 0.45);
    --hp-cat-accent-fade: rgba(24, 24, 24, 0);
    --hp-cat-slope: 14px;
}

.hp-category-grid .hp-cat-box-media {
    position: relative;
}

.hp-category-grid .hp-cat-box-media img,
.hp-category-grid .hp-cat-box-placeholder {
    position: relative;
    z-index: 0;
}

.hp-category-grid .hp-cat-box-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.hp-category-grid .hp-cat-box-title {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 1rem 1rem 0.8rem;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.35;
    color: #fff;
}

/* Eğimli üst kenar — sadece ad bandı, fotoğrafa hafif dilim */
.hp-category-grid .hp-cat-box-title::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: calc(-1 * var(--hp-cat-slope));
    z-index: -1;
    background: linear-gradient(
        155deg,
        var(--hp-cat-accent-mid) 0%,
        var(--hp-cat-accent) 42%,
        var(--hp-cat-accent) 100%
    );
    clip-path: polygon(0 24%, 100% 0, 100% 100%, 0 100%);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.1);
    transition: filter 0.35s ease, clip-path 0.35s ease;
}

.hp-category-grid .hp-cat-box:hover .hp-cat-box-title::before {
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
    filter: brightness(1.07);
}

.hp-category-grid .hp-cat-box-media img {
    transition: transform 0.4s ease;
}

.hp-category-grid .hp-cat-box:hover .hp-cat-box-media img {
    transform: scale(1.06);
}

@media (max-width: 767px) {
    .hp-category-grid {
        --hp-cat-slope: 11px;
    }

    .hp-category-grid .hp-cat-box-title {
        padding: 0.85rem 0.75rem 0.65rem;
        font-size: 14px;
    }
}
