.categories-section {
    padding: 70px 0;
    background-color: #0c0c0c;
}

.categories-header {
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.categories-main-title {
    font-size: 2.85rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 layout as requested */
    gap: 20px;
}

.category-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    cursor: pointer;
}

/* Shine Effect Base */
.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    z-index: 3;
}

.category-card:hover::after {
    left: 150%;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Gradient removed as requested */
    z-index: 1;
}

.category-content {
    position: relative;
    z-index: 2;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.category-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-section {
        padding: 50px 0;
    }
    
    .category-card {
        height: 300px;
    }

    .categories-main-title {
        font-size: 2rem;
        line-height: 1;
    }

    .categories-header {
        margin-bottom: 1.5rem;
    }
}
