/* Fix for underlines in product categories */

/* Target all links */
a {
    text-decoration: none !important;
}

/* Target category cards specifically */
a.category-card, 
a.category-card:link,
a.category-card:visited,
a.category-card:hover,
a.category-card:active {
    text-decoration: none !important;
    border-bottom: none !important;
    color: inherit !important;
}

/* Target category titles */
h3.category-title,
a h3.category-title,
a:link h3.category-title,
a:visited h3.category-title,
a:hover h3.category-title,
a:active h3.category-title {
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
    color: #2c3e50 !important;
}

/* Remove all text-decoration from anything inside category cards */
.category-card * {
    text-decoration: none !important;
    border-bottom: none !important;
} 