.category-icon .fas {
    font-size: 2rem;
    color: #333;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon .fas {
    transform: scale(1.1);
}

.fas.fa-seedling,
.fas.fa-pepper-hot,
.fas.fa-leaf,
.fas.fa-grain,
.fas.fa-wheat-awn {
    color: #2c3e50;
}

.category-card:hover .fas {
    color: #e67e22;
}

/* Description margins and spacing */
.product-info {
    padding: 1.5rem !important;
}

.product-info p {
    margin: 1rem 0 !important;
    line-height: 1.6 !important;
}

.product-specs {
    margin-top: 1.2rem !important;
}

.product-specs div {
    margin-bottom: 0.5rem !important;
}

.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-card p {
    margin: 1rem 0 !important;
    line-height: 1.6 !important;
}

.category-icon {
    padding: 5px;
}