
.category-wrap {
    margin: 80px auto;
}


.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    letter-spacing: 1px;
}


.category-box {
    position: relative;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: transform 0.4s ease;
}


.category-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit; /* inherit the inline background-image */
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
    z-index: 0;
}


.category-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.77) 100%);
    z-index: 1;
}


.category-box span {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    z-index: 2;
    color: white;
}


.category-box:hover::before {
    transform: scale(1.1);
}
