.tag-archive-header {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

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

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

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

.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    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-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.plant-info {
    padding: 20px;
}

.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-meta {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E0E0E0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #7F8C8D;
}

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

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag-link {
    display: inline-block;
    padding: 6px 16px;
    background: #F0F0F0;
    color: #5A6C7D;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s;
}

.tag-link:hover {
    background: #3498DB;
    color: white;
}

.tag-link.current {
    background: #2ECC40;
    color: white;
}
