.filters-box {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 600;
}

.filter-group select {
    padding: 7px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.bundle-card {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.bundle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    border-color: #c7c5ff;
}

.bundle-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bundle-info {
    font-size: 14px;
    color: #555;
    margin: 6px 0;
}

.bundle-price {
    font-size: 18px;
    font-weight: 800;
    color: #4f46e5;
    margin-top: 10px;
}
.badge {
    display: inline-block;
    background: #eef2ff;
    color: #4338ca;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    margin: 3px 4px 3px 0;
}
.bundle-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 16px;
    background: #4f46e5;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s ease;
}

.bundle-btn:hover {
    background: #3f3acd;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    color: #4f46e5;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
}

.page-link:hover {
    background: #eef2ff;
    border-color: #c7c5ff;
}

.page-item.active .page-link {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}
