.home-categories{
    padding:80px 0;
    background:#050505;
}

.home-categories .container{
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

.section-title{
    font-size:2rem;
    font-weight:700;
    color:#fff;
    margin-bottom:40px;
}

.categories-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
    gap:20px;
}

.category-card{
    background:#111;
    border:1px solid #1f1f1f;
    border-radius:18px;
    padding:22px;
    transition:.3s;
}

.category-card:hover{
    transform:translateY(-6px);
    border-color:#00e676;
    box-shadow:0 0 25px rgba(0,230,118,.25);
}

.category-card h3{
    color:#fff;
    margin-bottom:10px;
}

.category-card p{
    color:#bfbfbf;
    margin-bottom:20px;
}

.category-card a{
    color:#00e676;
    text-decoration:none;
    font-weight:600;
}
.category-image{
    width:180px;
    max-width:100%;
    height:180px;
    object-fit:cover;
    border-radius:14px;
    margin:0 auto 18px;
    transition:transform .35s ease;
    display:block;
}

.category-card:hover .category-image{
    transform:scale(1.05);
}

.category-card{
    overflow:hidden;
    cursor:pointer;
}

.category-card a{
    display:inline-block;
    margin-top:10px;
}

.category-image--cosvin-icon{
    background:#070907;
    object-fit:contain;
}

@media(max-width:600px){
    .home-categories{padding:48px 0}
    .home-categories .container{padding:0 14px}
    .categories-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
    .category-card{padding:14px;border-radius:14px}
    .category-image{width:128px;height:128px;margin-bottom:12px;border-radius:11px}
    .category-card h3{font-size:18px}
    .category-card p{font-size:13px;margin-bottom:10px}
}

.category-card{
    display:block;
    color:inherit;
    text-decoration:none;
}

.category-card__cta{
    display:inline-block;
    margin-top:10px;
    color:#00e676;
    font-weight:600;
}
