/* Category Grid Styles */
.category-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.category-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.category-media {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-box:hover .category-media img {
    transform: scale(1.1);
}

.category-info {
    padding: 30px 25px;
    text-align: center;
}

.category-title {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.category-title a {
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-title a:hover {
    color: #ff6b35;
}

.category-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-box .site-button {
    background: #ff6b35;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-box .site-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .category-media {
        height: 200px;
    }
    
    .category-info {
        padding: 20px 15px;
    }
    
    .category-title {
        font-size: 20px;
    }
}

