.category-archive-header {
    background: linear-gradient(135deg, #2ECC40, #27AE60);
    color: white;
    padding: 80px 0;
    margin-bottom: 40px;
}

.category-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.category-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.subcategories {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.subcategory-item {
    background: #F8F9FA;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #2C3E50;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subcategory-item:hover {
    background: #2ECC40;
    color: white;
}

.filter-bar {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-btn {
    padding: 8px 12px;
    background: #F0F0F0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn.active {
    background: #2ECC40;
    color: white;
}

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

.plants-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.plant-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.plant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.plant-card-list {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.plant-card-list:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.plant-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.plant-image-list {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
}

.plant-info {
    padding: 20px;
}

.plant-info-list {
    flex: 1;
}

.plant-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2C3E50;
}

.scientific-name {
    color: #7F8C8D;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.plant-badges {
    display: flex;
    gap: 8px;
    margin: 10px 0;
}

.badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-easy {
    background: #D4EDDA;
    color: #155724;
}

.badge-moderate {
    background: #FFF3CD;
    color: #856404;
}

.badge-difficult {
    background: #F8D7DA;
    color: #721C24;
}

.category-stats {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    background: #F8F9FA;
    border-radius: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2ECC40;
}

.stat-label {
    color: #7F8C8D;
    margin-top: 5px;
}
