                .plants-pagination .page-numbers {
                    display: flex;
                    list-style: none;
                    padding: 0;
                    margin: 0;
                    gap: 8px;
                    flex-wrap: wrap;
                    justify-content: center;
                }
                .plants-pagination .page-numbers li {
                    margin: 0;
                }
                .plants-pagination .page-numbers a,
                .plants-pagination .page-numbers span {
                    display: inline-block;
                    padding: 10px 16px;
                    background: white;
                    border: 2px solid #E8E8E8;
                    border-radius: 8px;
                    color: #2C3E50;
                    text-decoration: none;
                    font-weight: 500;
                    transition: all 0.3s;
                }
                .plants-pagination .page-numbers a:hover {
                    background: #27AE60;
                    border-color: #27AE60;
                    color: white;
                }
                .plants-pagination .page-numbers .current {
                    background: #27AE60;
                    border-color: #27AE60;
                    color: white;
                }

/* Additional styles from archive-plants.php */
/* Clickable Card Effects */
.clickable-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.clickable-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.15) !important;
}

.clickable-card:hover .card-hover-overlay {
    opacity: 1 !important;
}

.clickable-card:hover img {
    transform: scale(1.1) !important;
}

.clickable-card:hover .plant-emoji {
    transform: scale(1.2) rotate(10deg) !important;
}

/* Active state for mobile */
.clickable-card:active {
    transform: scale(0.98) !important;
}

/* HIDE DUPLICATE ELEMENTS */
/* Hide Quick Links if they show from Theme */
.quick-link-filter,
a[href="#beginner"],
a[href="#indoor"],  
a[href="#edible"],
a[href="#lowwater"],
a[href="#medicinal"],
div:has(.quick-link-filter) {
    display: none !important;
}

/* Hide duplicate Footer Search */
.footer-search-section:nth-of-type(2),
.footer-search-section:last-child {
    display: none !important;
}

/* Hide debug buttons */
button:contains("Debug"),
#quick-debug {
    display: none !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .card-hover-overlay {
        display: none !important;
    }
    
    .clickable-card:active {
        background: #f0f0f0 !important;
    }
}

/* Hide View Mode Toggle (not needed - only grid) */
.view-mode-toggle {
    display: none !important;
}

/* Smooth transitions for all plant cards */
.plant-card {
    transition: all 0.3s ease !important;
}

.plant-card * {
    transition: all 0.3s ease;
}

/* Additional Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0) rotate(-5deg); }
    75% { transform: translateY(20px) rotate(5deg); }
}

/* Quick Links Hover */
a[href^="#"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

/* Search Tags */
.search-tag:hover {
    background: #27AE60 !important;
    color: white !important;
}

/* View Mode Toggle */
.view-mode-toggle button:hover {
    transform: translateY(-2px);
}

/* Popular Plants Cards */
.popular-plant:hover {
    transform: scale(1.05);
}
