@charset "utf-8";
/* CSS Document */

/* Category title links with animation and distinct styling */
.category-title {
    margin: 0 0 15px 0;
}

.category-title a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.category-title a:hover {
    color: #e74c3c;
    transform: translateX(8px);
    border-bottom: 2px solid #e74c3c;
}

.category-title a::after {
    content: '→';
    margin-left: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-title a:hover::after {
    opacity: 1;
}

/* Product category block styling */
.product-category-block {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.product-category-block:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
    .category-title a {
        font-size: 1.2em;
    }
    
    .category-title a:hover {
        transform: translateX(5px);
    }
    
    .product-category-block {
        padding: 15px;
        margin-bottom: 20px;
    }
}
