/* Products Hero */
.products-hero {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.products-hero .lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Product Categories Section */
.products-section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    position: relative;
    color: #2c3e50;
    padding-top: 20px;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #3498db;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Modern Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.category-card {
    border-radius: 12px;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.15);
    border-color: #d0e6f7;
}

.category-content {
    text-align: center;
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 15px 0 12px;
    color: #2c3e50;
    line-height: 1.3;
    transition: color 0.3s ease;
    text-decoration: none;
    border-bottom: none;
}

.category-count {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-icon {
    color: #3498db;
    stroke: #3498db;
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.category-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #3498db;
    transition: height 0.3s ease;
}

.category-card:hover::before {
    height: 8px;
}

/* Category Card Hover Enhancement */
.category-card:hover .category-icon,
.category-card.hover .category-icon {
    transform: scale(1.15);
    color: #2980b9;
    stroke: #2980b9;
}

.category-card:hover .category-title {
    color: #3498db;
}

.category-card:hover .category-count {
    background: rgba(52, 152, 219, 0.2);
    transform: scale(1.05);
}

.category-card:hover .category-content,
.category-card.hover .category-content {
    transform: translateY(-5px);
}

/* Create a nice background overlay effect */
.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::after {
    opacity: 1;
}

/* Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-item {
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.product-image-container {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    border-bottom: 1px solid #f0f0f0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 10px;
}

.product-item:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.4;
}

.product-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.product-category {
    padding: 6px 12px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 20px;
    color: #3498db;
    font-weight: 500;
    font-size: 0.85rem;
}

.product-package {
    color: #777;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    flex-wrap: wrap;
    padding: 0;
    background: transparent;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #bbb;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5f7fa;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #34495e;
    margin-bottom: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-button:hover {
    background: #eaeff5;
    color: #2c3e50;
}

.back-button i {
    transition: transform 0.3s ease;
}

.back-button:hover i {
    transform: translateX(-4px);
}

/* Product Detail Page */
.product-detail {
    padding: 40px 0;
}

.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    border: 1px solid #f0f0f0;
}

.product-detail-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 20px;
    border: 1px solid #f0f0f0;
}

.product-detail-info {
    flex: 1.5;
    min-width: 300px;
}

.product-detail-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 25px;
    font-weight: 500;
}

.product-detail-description {
    color: #444;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-detail-meta {
    margin-top: 30px;
    padding: 25px;
    border-radius: 12px;
    background: #f7f9fc;
    border: 1px solid #edf0f7;
}

.meta-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-label {
    font-weight: 600;
    width: 140px;
    color: #34495e;
    padding-right: 20px;
}

/* Specifications Section */
.product-specifications {
    margin-top: 40px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.spec-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #f7f9fc;
    border-radius: 8px;
    border: 1px solid #edf0f7;
}

.spec-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #34495e;
    font-size: 0.95rem;
}

.spec-value {
    color: #3498db;
    font-weight: 500;
}

/* Product Tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.product-tag {
    padding: 5px 12px;
    background: #ecf0f1;
    color: #7f8c8d;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Action Buttons */
.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.action-button {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.action-button.whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.action-button.whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.action-button.inquire {
    background: #3498db;
    color: white;
    border: none;
}

.action-button.inquire:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

/* Related Products */
.related-products {
    margin-top: 60px;
}

.related-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.related-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3498db;
}

/* Technical Information Section */
.technical-info {
    background: #f7f9fc;
    padding: 70px 0;
    margin-top: 70px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.resource-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.resource-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.resource-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    z-index: 100;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Popup */
.confirm-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.confirm-popup.show {
    opacity: 1;
    visibility: visible;
}

.confirm-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.confirm-popup.show .confirm-content {
    transform: translateY(0);
}

.confirm-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.confirm-text {
    color: #505050;
    margin-bottom: 20px;
    line-height: 1.6;
}

.confirm-buttons {
    display: flex;
    gap: 15px;
}

.confirm-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    flex: 1;
}

.confirm-yes {
    background: #25D366;
    color: white;
}

.confirm-yes:hover {
    background: #20bd5a;
}

.confirm-no {
    background: #f1f1f1;
    color: #505050;
}

.confirm-no:hover {
    background: #e5e5e5;
}

/* Product List Page */
.product-list-header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 40px 0;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.product-list-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #3498db;
}

.product-list-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-list-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-button {
    padding: 10px 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #555;
}

.filter-button:hover, .filter-button.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.empty-state-icon {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.empty-state-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.empty-state-text {
    color: #7f8c8d;
    max-width: 500px;
    margin: 0 auto 25px;
}

.empty-state-button {
    display: inline-block;
    padding: 12px 25px;
    background: #3498db;
    color: white;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.empty-state-button:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .product-grid,
    .category-grid,
    .resources-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-grid,
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-detail-container {
        flex-direction: column;
        padding: 25px;
        gap: 30px;
    }
    
    .product-detail-title {
        font-size: 2rem;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .products-hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .category-card {
        height: 160px;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 1.3rem;
        margin: 10px 0 8px;
    }
    
    .category-count {
        font-size: 0.85rem;
        padding: 5px 12px;
    }
}

@media (max-width: 480px) {
    .product-grid,
    .category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .category-card {
        height: 140px;
    }
    
    .product-detail-container {
        padding: 20px;
    }
    
    .product-detail-title {
        font-size: 1.8rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
}

/* Filter Buttons */
.category-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filter-btn i {
    margin-right: 8px;
    color: #3498db;
    font-size: 1.1rem;
}

.filter-btn:hover {
    background: #f5f9ff;
    border-color: #3498db;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.15);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.25);
}

.filter-btn.active i {
    color: white;
}

/* Package Filters */
.package-filters {
    margin: 25px 0 30px;
    padding: 20px;
    background: #f7f9fc;
    border-radius: 12px;
    border: 1px solid #edf0f7;
}

.package-filters h4 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.package-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
}

.filter-button i {
    margin-right: 6px;
    color: #3498db;
}

.filter-button:hover, .filter-button.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.filter-button:hover i, .filter-button.active i {
    color: white;
}

/* Products Section Enhancement */
.products-section {
    padding: 50px 0;
    min-height: 400px;
}

/* Industry Applications Section */
.industry-applications {
    margin: 30px 0 60px;
    background-color: #f8fbff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.industry-applications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.lead-text {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.application-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.application-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #3498db;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.application-item:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.application-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.15);
}

.application-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.application-item:hover .application-icon {
    background: rgba(52, 152, 219, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.application-item i {
    font-size: 2.2rem;
    color: #3498db;
    transition: all 0.3s ease;
}

.application-item:hover i {
    color: #2980b9;
}

.application-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.application-item:hover h4 {
    color: #3498db;
}

.application-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.application-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #3498db;
    color: #3498db;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.application-item:hover .application-btn {
    background: #3498db;
    color: white;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .application-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .industry-applications {
        padding: 30px 20px;
    }
    
    .application-item {
        padding: 25px 20px;
    }
    
    .application-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .application-item i {
        font-size: 1.8rem;
    }
    
    .application-item h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .lead-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .application-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-applications {
        padding: 25px 15px;
        margin: 20px 0 40px;
    }
    
    .application-item {
        max-width: 100%;
        margin: 0;
    }
    
    .application-icon {
        width: 60px;
        height: 60px;
    }
    
    .application-item i {
        font-size: 1.6rem;
    }
    
    .application-btn {
        width: 100%;
        padding: 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Remove purple underlines */
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;
}

a.category-card h3, 
a.category-card:link h3,
a.category-card:visited h3,
a.category-card:hover h3,
a.category-card:active h3 {
    text-decoration: none !important;
    border-bottom: none !important;
    color: #2c3e50 !important;
} 