/* Category Collections Styling */

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-link {
    display: flex;
    align-items: center;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.category-link:hover {
    text-decoration: none;
    color: inherit;
}

.category-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.category-icon i {
    font-size: 24px;
    color: white;
}

.category-content {
    flex: 1;
}

.category-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.category-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.category-arrow {
    flex-shrink: 0;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.category-arrow i {
    font-size: 16px;
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-link {
        padding: 20px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .category-icon i {
        font-size: 20px;
    }
    
    .category-content h3 {
        font-size: 16px;
    }
    
    .category-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .category-link {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }
    
    .category-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .category-arrow {
        margin-top: 15px;
    }
}